This Jupyter Notebook provides code to retrieve and process meteorological datasets.
The notebook currently focuses on accessing and handling two main datasets:
- NOAA's AORC (Analysis of Record for Calibration) dataset
- NASA's NEX-GDDP-CMIP6 downscaled climate projections via the Microsoft Planetary Computer
data_retrival/
├── AORC/ # Scripts and utilities to access AORC historical climate data
├── NEX_GDDP_CMIP6/ # Scripts to retrieve CMIP6 climate projections
├── LICENSE # MIT License
└── README.md # This file
- Source: NOAA National Water Model archive
- Access Method: Public AWS S3 via
fsspecandxarray - Format: Zarr / NetCDF
- Temporal Resolution: Hourly
- Spatial Resolution: ~1 km
- Time Period: 1979–Present
- Variables:
- Precipitation (APCP_surface)
- Source: NASA / Microsoft Planetary Computer
- Access Method: STAC API with
pystac-client,xarray, andplanetary_computer - Format: NetCDF / Zarr
- Temporal Resolution: Daily
- Spatial Resolution: ~25 km (0.25°)
- Time Period: Historical (1970–2014), Projections (2015–2100)
- Variables:
pr: Precipitationtas: Near-surface air temperaturetasmax: Maximum daily temperaturetasmin: Minimum daily temperaturehurs: Relative humidityhuss: Specific humidityrlds: Downward longwave radiationrsds: Downward shortwave radiationsfcWind: Near-surface wind speed
This project is licensed under the MIT License – see the LICENSE file for details.