GEOS5

default_vars(product_name, req_vars)

Given a product_name and a list of requested variables, returns a dictionary with metadata on which exact layers need to be requested from the server, how they should be renamed, and how their dimensions are defined.

Parameters
  • product_name (str) – Name of the product.

  • req_vars (list) – List of variables to be collected.

Returns

Metadata on which exact layers need to be requested from the server.

Return type

dict

default_post_processors(product_name, req_vars)

Given a product_name and a list of requested variables, returns a dictionary with a list of functions per variable that should be applied after having collected the data from a server.

Parameters
  • product_name (str) – Name of the product.

  • req_vars (list) – List of variables to be collected.

Returns

Functions per variable that should be applied to the variable.

Return type

dict

download(folder, latlim, lonlim, timelim, product_name, req_vars, variables=None, post_processors=None)

Download GEOS5 data and store it in a single netCDF file. Product docs are here https://gmao.gsfc.nasa.gov/pubs/docs/Lucchesi1202.pdf

Parameters
  • folder (str) – Path to folder in which to store results.

  • latlim (list) – Latitude limits of area of interest.

  • lonlim (list) – Longitude limits of area of interest.

  • timelim (list) – Period for which to prepare data.

  • product_name (str) – Name of the product to download.

  • req_vars (list) – Which variables to download for the selected product.

  • variables (dict, optional) – Metadata on which exact layers need to be requested from the server, by default None.

  • post_processors (dict, optional) – Functions per variable that should be applied to the variable, by default None.

Returns

Downloaded data.

Return type

xr.Dataset