samapriya / awesome-gee-community-datasets

Community Datasets added by users and made available for use at large
https://gee-community-catalog.org/
Creative Commons Attribution 4.0 International
754 stars 120 forks source link

Applied Climate Information System (ACIS) NRCC NN #148

Closed EricRJensen closed 11 months ago

EricRJensen commented 1 year ago

Contact Details

ClimateEngine.org staff, climateengine@gmail.com

Dataset description

Description The ACIS Climate Maps are produced daily using data from the Applied Climate Information System (ACIS) at a 5-km (0.04-deg x 0.04-deg) spatial resolution from 1951-present, updated every 1-2 weeks. Station data in ACIS primarily come from the following networks: National Weather Service Cooperative Observer Program (NWS COOP) Weather-Bureau-Army-Navy/Automated Surface Observing System (WBAN/ASOS) Snow Telemetry (SNOTEL) Community Collaborative Rain, Hail, & Snow (CoCoRaHS) Network Remote Automatic Weather Stations (RAWS)

Note: All near-real-time data are considered preliminary and subject to change.

Spatial extent: Conterminous United States Spatial resolution: 5-km (0.04-deg x 0.04-deg) Temporal resolution: Daily Time span: 1951-01-01 to present Update frequency: 1-2 weeks

Variables Minimum temperature, 2m (‘tmax’)

Maximum temperature, 2m (‘tmin’)

Precipitation (‘precip’)

External link https://www.rcc-acis.org/examples.html

Link to documentation https://support.climateengine.org/article/47-acis-nrcc-nn

Earth Engine Snippet if dataset already in GEE

for example

// Read in Image Collection and get first image
var acis_nrcc_nn_ic = ee.ImageCollection('projects/climate-engine-pro/assets/noaa-nrcc-acis-nn/daily')
var acis_nrcc_nn_i = acis_nrcc_nn_ic.first()

// Print first image to see bands
print(acis_nrcc_nn_i)

// Visualize each band from first image
var prec_palette = ["#ffffcc", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#0c2c84"]
var temp_palette = ["#b2182b", "#ef8a62", "#fddbc7", "#f7f7f7", "#d1e5f0", "#67a9cf", "#2166ac"].reverse()
Map.addLayer(acis_nrcc_nn_i.select('precip'), {min: 0, max: 0.5, palette: prec_palette}, 'precip')
Map.addLayer(acis_nrcc_nn_i.select('tmin'), {min: -10, max: 50, palette: temp_palette}, 'tmin')
Map.addLayer(acis_nrcc_nn_i.select('tmax'), {min: -10, max: 50, palette: temp_palette}, 'tmax')

Enter license information

NOAA data, information, and products, regardless of the method of delivery, are not subject to copyright and carry no restrictions on their subsequent use by the public. Once obtained, they may be put to any lawful use. The forgoing data is in the public domain and is being provided without restriction on use and distribution. For more information visit the NWS disclaimer site.

Keywords

climate, precipitation, temperature, NOAA, reanalysis, CONUS, daily, near real-time

Code of Conduct

samapriya commented 11 months ago

This has been completed, will be added to changelog and next release soon