demographics
Demographics
Bases: DemographicsBase
This class is a container of data necessary to produce a EMOD-valid demographics input file.
Source code in emod_api/demographics/demographics.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 133 134 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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | |
__init__(nodes, idref=None, default_node=None, set_defaults=True)
Object representation of an EMOD Demographics input (json) file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nodes
|
list[Node]
|
list(Node) nodes to include in the Demographics object. |
required |
idref
|
str
|
(string, optional) an identifier for the Demographics file. Used to co-identify sets of Demographics/overlay files. No value will utilize a default (via inheritance). |
None
|
default_node
|
Node
|
(Node, optional) Represents default values for all nodes, unless overridden on a per-node basis. If not provided, one will be generated by the superclass. |
None
|
set_defaults
|
bool
|
(bool) Whether to set default node attributes on the default node. Defaults to True. Should always be True unless loading via Demographics.from_file() (to replicate in-file data fully). |
True
|
Source code in emod_api/demographics/demographics.py
from_csv(input_file, res=30 / 3600, id_ref='from_csv')
classmethod
Create an EMOD-compatible :py:class:Demographics instance from a csv population-by-node file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_file
|
str
|
the csv filepath to read from. |
required |
res
|
float
|
spatial resolution of the nodes in arc-seconds |
30 / 3600
|
id_ref
|
str
|
Description of the file source for co-identification of demographics objects/files. |
'from_csv'
|
Returns:
| Type | Description |
|---|---|
Demographics
|
A Demographics object |
Source code in emod_api/demographics/demographics.py
132 133 134 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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | |
from_file(path)
classmethod
Create a Demographics object from an EMOD-compatible demographics json file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
the file path to read from.: |
required |
Returns:
| Type | Description |
|---|---|
Demographics
|
a Demographics object |
Source code in emod_api/demographics/demographics.py
from_pop_raster_csv(pop_filename_in, res=1 / 120, id_ref='from_raster', pop_dirname_out='spatial_gridded_pop_dir', site='No_Site')
classmethod
Take a csv of a population-counts raster and build a grid for use with EMOD simulations. Grid size is specified by grid resolution in arcs or in kilometers. The population counts from the raster csv are then assigned to their nearest grid center and a new intermediate grid file is generated with latitude, longitude and population. This file is then fed to from_csv to generate a demographics object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pop_filename_in
|
str
|
The filepath 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_dirname_out
|
str
|
The output directory name to hold 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
|
A Demographics object based on the input grid file. |
Raises:
Source code in emod_api/demographics/demographics.py
from_template_node(lat=0, lon=0, pop=1000000, name='Erewhon', forced_id=1)
classmethod
Creates a basic, single-node Demographics object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
lat
|
float
|
(float, optional) latitude of node to be created. Default is 0. |
0
|
lon
|
float
|
(float, optional) longitude of node to be created. Default is 0. |
0
|
pop
|
int
|
(int, optional) number of people in the node to be created. Default is 1000000. |
1000000
|
name
|
str
|
(str, optional) name of node to be created. Default is Erewhon. |
'Erewhon'
|
forced_id
|
int
|
(int, optional) id of node to be created. Default is 1. |
1
|
Returns:
| Type | Description |
|---|---|
Demographics
|
A Demographics object |
Source code in emod_api/demographics/demographics.py
to_file(path='demographics.json', indent=4)
Write the Demographics object to an EMOD demograhpics json file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Union[str, Path]
|
(str) the filepath to write the file to. Default is "demographics.json". |
'demographics.json'
|
indent
|
int
|
(int, optional) The number of spaces to indent for nested JSON elements (Default is 4, None means no nesting (one line printing)). |
4
|
Returns: Nothing