openaq_aws
OpenAQ archive data on AWS.
https://openaq.org/ https://registry.opendata.aws/openaq/ https://docs.openaq.org/aws/about
OpenAQAWSReader
Bases: PointReader
Reader for OpenAQ archive data on AWS S3.
Source code in monetio/readers/openaq_aws.py
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 | |
harmonize(df)
Harmonize OpenAQ AWS data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
Union[DataFrame, DataFrame]
|
Input dataframe. |
required |
Returns:
| Type | Description |
|---|---|
Union[DataFrame, DataFrame]
|
Harmonized dataframe. |
Source code in monetio/readers/openaq_aws.py
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 | |
open_dataset(files=None, dates=None, siteid=None, country=None, provider=None, find_paths=True, wide_fmt=False, as_xarray=True, lazy=False, **kwargs)
Retrieves OpenAQ archive data from AWS Open Data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
files
|
Union[str, List[str]]
|
File path, list of paths, or glob pattern. |
None
|
dates
|
Union[DatetimeIndex, List[datetime], datetime, str]
|
Dates to retrieve if files are not provided. |
None
|
siteid
|
Union[str, List[str]]
|
Site ID(s) (location_id) to filter by. |
None
|
country
|
Union[str, List[str]]
|
Country code(s) to filter by. |
None
|
provider
|
Union[str, List[str]]
|
Provider name(s) to filter by. |
None
|
find_paths
|
bool
|
Whether to find paths via S3 listing (slow), by default True. |
True
|
wide_fmt
|
bool
|
Whether to return data in wide format, by default True. |
False
|
as_xarray
|
bool
|
Whether to return an xarray.Dataset, by default True. |
True
|
lazy
|
bool
|
Whether to return a dask-backed object, by default False. |
False
|
**kwargs
|
dict
|
Additional arguments passed to the reader and driver. |
{}
|
Returns:
| Type | Description |
|---|---|
Union[DataFrame, Dataset, DataFrame]
|
The loaded dataset. |
Examples:
>>> reader = OpenAQAWSReader()
>>> ds = reader.open_dataset(dates='2023-01-01', siteid='7073', wide_fmt=True)
Source code in monetio/readers/openaq_aws.py
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 | |
to_xarray(df, expand2d=True, **kwargs)
Convert to Xarray with consistent naming for OpenAQ variables.
Source code in monetio/readers/openaq_aws.py
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 | |
add_data(dates, *, siteid=None, country=None, provider=None, find_paths=True, wide_fmt=False, n_procs=1, **kwargs)
Helper for consistency.
Source code in monetio/readers/openaq_aws.py
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 | |
build_urls(dates, sites, *, protocol='s3')
Naively build URLs for OpenAQ archive data on AWS.
Source code in monetio/readers/openaq_aws.py
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | |
get_locations(*, provider=None, country=None)
Get location IDs corresponding to provider(s) and/or country(ies).
Source code in monetio/readers/openaq_aws.py
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 | |
get_paths(dates, *, siteid=None, country=None, provider=None)
Get site-day paths, searching independently by location ID, country, and provider.
Source code in monetio/readers/openaq_aws.py
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | |
get_provider_countries(provider)
Get countries for a given provider.
Source code in monetio/readers/openaq_aws.py
431 432 433 434 435 436 437 438 439 440 441 | |
get_providers()
Get OpenAQ data providers by searching the bucket paths.
Source code in monetio/readers/openaq_aws.py
419 420 421 422 423 424 425 426 427 428 | |
read(fp, **kwargs)
Legacy wrapper.
Source code in monetio/readers/openaq_aws.py
518 519 520 | |
read_openaq_aws_csv(fp, **kwargs)
Read OpenAQ archive data from a file-like object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fp
|
str
|
File path or URL. |
required |
**kwargs
|
dict
|
Additional arguments passed to pd.read_csv. |
{}
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
OpenAQ archive data. |
Source code in monetio/readers/openaq_aws.py
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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | |
read_openaq_aws_csv_robust(fp, **kwargs)
Try to read a file, returning empty DF if not found.
Source code in monetio/readers/openaq_aws.py
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | |