Demographics
Demographics
Bases: DemographicsBase
This class is a container of data necessary to produce a EMOD-valid demographics input file. It can be initialized from an existing valid demographics.joson type file or from an array of valid Nodes.
Source code in emod_api/demographics/Demographics.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
|
__init__(nodes, idref='Gridded world grump2.5arcmin', base_file=None, default_node=None)
A class to create demographics. :param nodes: list of Nodes :param idref: A name/reference :param base_file: A demographics file in json format :default_node: An optional node to use for default settings.
Source code in emod_api/demographics/Demographics.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
|
generate_file(name='demographics.json')
Write the contents of the instance to an EMOD-compatible (JSON) file.
Source code in emod_api/demographics/Demographics.py
307 308 309 310 311 312 313 |
|
from_csv(input_file, res=30 / 3600, id_ref='from_csv')
Create an EMOD-compatible :py:class:Demographics
instance from a csv population-by-node file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_file
|
str
|
Filename |
required |
res
|
float
|
Resolution of the nodes in arc-seconds |
30 / 3600
|
id_ref
|
str
|
Description of the source of the file. |
'from_csv'
|
Source code in emod_api/demographics/Demographics.py
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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
|
from_file(base_file)
Create a :py:class:Demographics
instance from an existing demographics file.
Source code in emod_api/demographics/Demographics.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
from_params(tot_pop=1000000, num_nodes=100, frac_rural=0.3, id_ref='from_params', random_2d_grid=False)
Create an EMOD-compatible :py:class:Demographics
object with the population and numbe of nodes specified.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tot_pop
|
int
|
The total population. |
1000000
|
num_nodes
|
int
|
Number of nodes. Can be defined as a two-dimensional grid of nodes [longitude, latitude]. The distance to the next neighbouring node is 1. |
100
|
frac_rural
|
float
|
Determines what fraction of the population gets put in the 'rural' nodes, which means all nodes besides node 1. Node 1 is the 'urban' node. |
0.3
|
id_ref
|
str
|
Facility name |
'from_params'
|
random_2d_grid
|
bool
|
Create a random distanced grid with num_nodes nodes. |
False
|
Returns:
Type | Description |
---|---|
Demographics
|
New Demographics object |
Source code in emod_api/demographics/Demographics.py
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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
|
from_pop_csv(pop_filename_in, res=1 / 120, id_ref='from_raster', pop_filename_out='spatial_gridded_pop_dir', site='No_Site')
Deprecated. Please use from_pop_raster_csv.
Source code in emod_api/demographics/Demographics.py
263 264 265 266 267 268 269 270 271 |
|
from_pop_raster_csv(pop_filename_in, res=1 / 120, id_ref='from_raster', pop_filename_out='spatial_gridded_pop_dir', site='No_Site')
1 2 3 4 5 |
|
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pop_filename_in
|
str
|
The filename of the population-counts raster in CSV format. |
required |
res
|
float
|
The grid resolution in arcs or kilometers. Default is 1/120. |
1 / 120
|
id_ref
|
str
|
Identifier reference for the grid. Default is "from_raster". |
'from_raster'
|
pop_filename_out
|
str
|
The output filename for the intermediate grid file. Default is "spatial_gridded_pop_dir". |
'spatial_gridded_pop_dir'
|
site
|
str
|
The site name or identifier. Default is "No_Site". |
'No_Site'
|
Returns:
Type | Description |
---|---|
Demographics
|
New Demographics object based on the grid file. |
Raises:
Source code in emod_api/demographics/Demographics.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
|
from_template_node(lat=0, lon=0, pop=1000000, name='Erewhon', forced_id=1)
Create a single-node :py:class:Demographics
instance from a few parameters.
Source code in emod_api/demographics/Demographics.py
27 28 29 30 31 32 33 34 35 36 |
|
get_node_ids_from_file(demographics_file)
Get a list of node ids from a demographics file.
Source code in emod_api/demographics/Demographics.py
58 59 60 61 62 63 |
|
get_node_pops_from_params(tot_pop, num_nodes, frac_rural)
Get a list of node populations from the params used to create a sparsely
parameterized multi-node :py:class:Demographics
instance. The first population
in the list is the "urban" population and remaning populations are roughly drawn from a
log-uniform distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tot_pop
|
int
|
Sum of all node populations (not guaranteed) |
required |
num_nodes
|
int
|
The total number of nodes. |
required |
frac_rural
|
float
|
The fraction of the total population that is to be distributed across the
|
required |
Returns:
Type | Description |
---|---|
list
|
A list containing the urban node population followed by the rural nodes. |
Source code in emod_api/demographics/Demographics.py
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 |
|