Build population gridcell map
build_gridded_population(prov_pop_path, pop_density_raster_path, cutout_path, province_shape_path, gridded_pop_out)
Build a gridded population DataFrame by matching population density to the cutout grid cells. This DataFrame is a sparse matrix of the population and shape BusesxCutout_gridcells where buses are the provinces
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prov_pop_path
|
PathLike
|
Path to the province population count file (hdf5). |
required |
pop_density_raster_path
|
PathLike
|
Path to the population density raster file. |
required |
cutout_path
|
PathLike
|
Path to the cutout file containing the grid. |
required |
province_shape_path
|
PathLike
|
Path to the province shape file. |
required |
gridded_pop_out
|
PathLike
|
output file path. |
required |
Source code in workflow/scripts/build_population_gridcell_map.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
build_population_map(prov_pop_path, pop_density_raster_path, cutout_path, province_shape_path, gridded_pop_out)
Build a gridded population DataFrame by matching population density to the cutout grid cells. This DataFrame is a sparse matrix of the population and shape BusesxCutout_gridcells where buses are the provinces
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prov_pop_path
|
PathLike
|
Path to the province population count file (hdf5). |
required |
pop_density_raster_path
|
PathLike
|
Path to the population density raster file. |
required |
cutout_path
|
PathLike
|
Path to the cutout file containing the grid. |
required |
province_shape_path
|
PathLike
|
Path to the province shape file. |
required |
gridded_pop_out
|
PathLike
|
output file path. |
required |
Source code in workflow/scripts/build_population_gridcell_map.py
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | |
load_cfrs_data(target)
load CFRS_grid.nc type files into a geodatafram
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
PathLike
|
the abs path |
required |
Returns:
| Type | Description |
|---|---|
GeoDataFrame
|
gpd.GeoDataFrame: the data in gdf |
Source code in workflow/scripts/build_population_gridcell_map.py
38 39 40 41 42 43 44 45 46 47 48 49 50 | |
xarr_to_gdf(xarr, var_name, x_var='x', y_var='y', crs=CRS)
convert an xarray to GDF
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xarr
|
DataArray
|
the input array |
required |
var_name
|
str
|
the array variable to be converted. |
required |
x_var
|
str
|
the x dimension. Defaults to "x". |
'x'
|
y_var
|
str
|
the y dimension. Defaults to "y". |
'y'
|
crs
|
_type_
|
the crs. Defaults to CRS. |
CRS
|
Returns:
| Type | Description |
|---|---|
GeoDataFrame
|
gpd.GeoDataFrame: geodata frame in chosen CRS |
Source code in workflow/scripts/build_population_gridcell_map.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |