|
68 | 68 | " model_level (str): Model levels:\n", |
69 | 69 | " - 'Simple' for total columns\n", |
70 | 70 | " - 'Multiple' for levels\n", |
71 | | - " CAMS_UID (str): ADS user ID\n", |
72 | | - " CAMS_key (str): ADS key\n", |
| 71 | + " CAMS_UID (str): User ID in ADS platform\n", |
| 72 | + " CAMS_key (str): User API key in ADS platform\n", |
73 | 73 | "\n", |
74 | 74 | " Returns:\n", |
75 | 75 | " CAMS_product_name (str): Product name of CAMS product\n", |
|
256 | 256 | " dates (arr): Query dates\n", |
257 | 257 | " \n", |
258 | 258 | " Returns:\n", |
259 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 259 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
260 | 260 | " \"\"\"\n", |
261 | 261 | "\n", |
262 | 262 | " # Read as xarray dataset object\n", |
|
331 | 331 | " \"\"\" Create table with information about the CAMS model levels\n", |
332 | 332 | "\n", |
333 | 333 | " Args:\n", |
334 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 334 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
335 | 335 | " CAMS_product_name (str): Product name of CAMS product\n", |
336 | 336 | " \n", |
337 | 337 | " Returns:\n", |
|
378 | 378 | " https://confluence.ecmwf.int/display/OIFS/4.4+OpenIFS%3A+Vertical+Resolution+and+Configurations\n", |
379 | 379 | "\n", |
380 | 380 | " Args:\n", |
381 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 381 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
382 | 382 | " CAMS_product_name (str): Product name of CAMS product\n", |
383 | 383 | " CAMS_levels_df (dataframe): Table with 137 CAMS levels data\n", |
384 | 384 | " start_date (str): Query start date\n", |
|
389 | 389 | " lon_min (int): Minimum longitude\n", |
390 | 390 | " lon_max (int): Maximum longitude\n", |
391 | 391 | " area_name (str): User defined area name\n", |
392 | | - " CAMS_UID (str): ADS user ID\n", |
393 | | - " CAMS_key (str): ADS key\n", |
| 392 | + " CAMS_UID (str): User ID in ADS platform\n", |
| 393 | + " CAMS_key (str): User API key in ADS platform\n", |
394 | 394 | " \n", |
395 | 395 | " Returns:\n", |
396 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 396 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
397 | 397 | " \"\"\"\n", |
398 | 398 | " \n", |
399 | 399 | " CAMS_pressure_product_name = ('_SURFACE_PRESSURE_' + start_date + '_' + end_date +\n", |
|
521 | 521 | " \"\"\" Get the tropospheric or column model data, depending on the nature of the sensor data\n", |
522 | 522 | "\n", |
523 | 523 | " Args:\n", |
524 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 524 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
525 | 525 | " CAMS_product_name (str): Product name of CAMS product\n", |
526 | 526 | " CAMS_levels_df (dataframe): Table with 137 CAMS levels data\n", |
527 | 527 | " column_type (str): Tropospheric or total column\n", |
|
531 | 531 | " lon_max (int): Maximum longitude\n", |
532 | 532 | " \n", |
533 | 533 | " Returns:\n", |
534 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 534 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
535 | 535 | " \"\"\"\n", |
536 | 536 | "\n", |
537 | 537 | " # Get units and calculate tropospheric columns if needed\n", |
|
581 | 581 | " calculate columns above each CAMS half level assuming it is 0 at the top of the atmosphere\n", |
582 | 582 | "\n", |
583 | 583 | " Args:\n", |
584 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 584 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
585 | 585 | " CAMS_levels_df (dataframe): Table with 137 CAMS levels data\n", |
586 | 586 | " sensor (str): Name of the sensor\n", |
587 | 587 | " start_date (str): Query start date\n", |
588 | 588 | " end_date (str): Query end date\n", |
589 | 589 | " component_nom (str): Component chemical nomenclature\n", |
590 | 590 | " apply_kernels (bool): Apply (True) or not (False) the averaging kernels\n", |
591 | | - " CAMS_UID (str): ADS user ID\n", |
592 | | - " CAMS_key (str): ADS key\n", |
| 591 | + " CAMS_UID (str): User ID in ADS platform\n", |
| 592 | + " CAMS_key (str): User API key in ADS platform\n", |
593 | 593 | " \n", |
594 | 594 | " Returns:\n", |
595 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 595 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
596 | 596 | " \"\"\"\n", |
597 | 597 | "\n", |
598 | 598 | " # Calculate columns above each CAMS half level \n", |
|
667 | 667 | " \"\"\" Convert the units of the CAMS dataset for any component from kg/m2 to molecules/cm2\n", |
668 | 668 | "\n", |
669 | 669 | " Args:\n", |
670 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 670 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
671 | 671 | " component_MW (float): Component molecular weight\n", |
672 | 672 | "\n", |
673 | 673 | " Returns:\n", |
674 | | - " CAMS_ds (xarray): CAMS levels dataset in xarray format\n", |
| 674 | + " CAMS_ds (xarray): Model dataset in xarray format (CAMS)\n", |
675 | 675 | " \"\"\"\n", |
676 | 676 | "\n", |
677 | 677 | " # Convert units from kg/m2 to molecules/cm2\n", |
|
0 commit comments