diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f860329..7a748969 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fix usage documentation of `ItemSearch` - Fix fields argument to CLI ([#797](https://github.com/stac-utils/pystac-client/pull/797)) +- Fix recursive search in `Client.get_items` ([#799](https://github.com/stac-utils/pystac-client/pull/799)) ## [v0.8.6] - 2025-02-11 diff --git a/pystac_client/client.py b/pystac_client/client.py index f7eb7c6c..f446a937 100644 --- a/pystac_client/client.py +++ b/pystac_client/client.py @@ -443,21 +443,26 @@ def get_collections(self) -> Iterator[Collection]: call_modifier(self.modifier, collection) yield collection - def get_items( - self, *ids: str, recursive: bool | None = None - ) -> Iterator["Item_Type"]: + def get_items(self, *ids: str, recursive: bool = False) -> Iterator["Item_Type"]: """Return all items of this catalog. Args: ids: Zero or more item ids to find. - recursive: unused in pystac-client, but needed for falling back to pystac + recursive : If True, search this catalog and all children for the + item; otherwise, only search the items of this catalog. Defaults + to False. Return: Iterator[Item]: Iterator of items whose parent is this catalog. """ if self.conforms_to(ConformanceClasses.ITEM_SEARCH): - search = self.search(ids=ids) + # Previously, recursive=None was treated the same as recursive=True. + # This if statement maintains this behaviour for backwards compatibility. + if recursive is not False: + search = self.search(ids=ids) + else: + search = self.search(ids=ids, collections=[self.id]) yield from search.items() else: self._warn_about_fallback("ITEM_SEARCH") @@ -476,7 +481,7 @@ def get_all_items(self) -> Iterator["Item_Type"]: catalogs or collections connected to this catalog through child links. """ - yield from self.get_items() + yield from self.get_items(recursive=True) def search( self, diff --git a/tests/cassettes/test_client/test_get_items_non_recursion.yaml b/tests/cassettes/test_client/test_get_items_non_recursion.yaml new file mode 100644 index 00000000..f3f020e9 --- /dev/null +++ b/tests/cassettes/test_client/test_get_items_non_recursion.yaml @@ -0,0 +1,232 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.3 + method: GET + uri: https://planetarycomputer.microsoft.com/api/stac/v1/ + response: + body: + string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary + Computer STAC API","description":"Searchable spatiotemporal metadata describing + Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC + conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC + search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC + search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet + Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet + Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest + Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"Sentinel + 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet + Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet + Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet + Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet + Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet + Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO + Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: + Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus + DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus + DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth + Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM + IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO + Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m + Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R + Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: + Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP + Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS + Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS + Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: + Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat + Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 + - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris + Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast + - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI + Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS + Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS + Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet + Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS + 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS + Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS + Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI + Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global + Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS + Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS + Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS + World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS + PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares + Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS + Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS + Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US + Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC + Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares + Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS + Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS + Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS + Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: + High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS + Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS + Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 + Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS + Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS + Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS + Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS + Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet + Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land + Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS + Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF + Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA + MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"Sentinel + 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NASADEM + HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri + 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat + Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver + Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake + Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake + Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake + Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA + MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA + MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly + NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA + Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban + Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA + Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA + Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS + National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS + LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS + LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA + US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA + US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R + Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"NOAA + US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER + L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL + Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: + National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m + Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity + Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea + Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global + Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL + Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL + Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea + Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea + Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS + Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P + Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global + Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized + Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized + Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft + Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 + 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA + WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI + service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI + service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Headers: + - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization + Access-Control-Allow-Methods: + - PUT, GET, POST, OPTIONS + Access-Control-Allow-Origin: + - '*' + Access-Control-Max-Age: + - '1728000' + Connection: + - keep-alive + Content-Length: + - '3361' + Content-Type: + - application/json + Date: + - Wed, 14 May 2025 18:18:56 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + content-encoding: + - gzip + vary: + - Accept-Encoding + x-azure-ref: + - 20250514T181856Z-r159ff9f48bhfp8mhC1YTO8gk00000000da0000000009414 + status: + code: 200 + message: OK +- request: + body: '{"collections": ["microsoft-pc"]}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '33' + Content-Type: + - application/json + User-Agent: + - python-requests/2.32.3 + method: POST + uri: https://planetarycomputer.microsoft.com/api/stac/v1/search + response: + body: + string: '{"type":"FeatureCollection","features":[],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Headers: + - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization + Access-Control-Allow-Methods: + - PUT, GET, POST, OPTIONS + Access-Control-Allow-Origin: + - '*' + Access-Control-Max-Age: + - '1728000' + Connection: + - keep-alive + Content-Length: + - '264' + Content-Type: + - application/geo+json + Date: + - Wed, 14 May 2025 18:18:57 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + x-azure-ref: + - 20250514T181856Z-r159ff9f48b424hkhC1YTOqggg000000033000000000gr5w + status: + code: 200 + message: OK +version: 1 diff --git a/tests/cassettes/test_client/test_get_items_recursion_collections_required_without_ids.yaml b/tests/cassettes/test_client/test_get_items_recursion_collections_required_without_ids.yaml new file mode 100644 index 00000000..d559fb84 --- /dev/null +++ b/tests/cassettes/test_client/test_get_items_recursion_collections_required_without_ids.yaml @@ -0,0 +1,655 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.3 + method: GET + uri: https://stac.sage.uvt.ro/ + response: + body: + string: "{\"type\":\"Catalog\",\"id\":\"stac-fastapi\",\"title\":\"stac-fastapi\",\"description\":\"stac-fastapi\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/collections\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search#fields\"],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://stac.sage.uvt.ro/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://stac.sage.uvt.ro/\"},{\"rel\":\"data\",\"type\":\"application/json\",\"href\":\"https://stac.sage.uvt.ro/collections\"},{\"rel\":\"conformance\",\"type\":\"application/json\",\"title\":\"STAC/OGC + conformance classes implemented by this server\",\"href\":\"https://stac.sage.uvt.ro/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC + search\",\"href\":\"https://stac.sage.uvt.ro/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC + search\",\"href\":\"https://stac.sage.uvt.ro/search\",\"method\":\"POST\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"title\":\"Queryables\",\"href\":\"https://stac.sage.uvt.ro/queryables\",\"method\":\"GET\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus + DEM 30m\",\"href\":\"https://stac.sage.uvt.ro/collections/copernicus-dem-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-2 + Level-1C - Rom\xE2nia\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-2-l1c\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-2 + Level-1C - Rom\xE2nia - Vegetation Index\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-2-l1c-ndvi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ANCPI + MNT - Rom\xE2nia County Level - Numerical Terrain Model\",\"href\":\"https://stac.sage.uvt.ro/collections/ancpi-judete-mnt\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel + 1 Level-1 Ground Range Detected (GRD)\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-1-grd\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Corine + Land Cover 2018 (Vectorial)\",\"href\":\"https://stac.sage.uvt.ro/collections/clc-2018-20-vector\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Corine + Land Cover 2018 (Raster)\",\"href\":\"https://stac.sage.uvt.ro/collections/clc-2018-20\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel + 1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MAJA + CAMS Products\",\"href\":\"https://stac.sage.uvt.ro/collections/maja-cams\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-2 + Level-2A MAJA - Rom\xE2nia\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-2-l2a-maja\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA + WorldCover 2020\",\"href\":\"https://stac.sage.uvt.ro/collections/esa-worldcover-2020\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA + WorldCover 2021\",\"href\":\"https://stac.sage.uvt.ro/collections/esa-worldcover-2021\"},{\"rel\":\"service-desc\",\"type\":\"application/vnd.oai.openapi+json;version=3.0\",\"title\":\"OpenAPI + service description\",\"href\":\"https://stac.sage.uvt.ro/api\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI + service documentation\",\"href\":\"https://stac.sage.uvt.ro/api.html\"}],\"stac_extensions\":[]}" + headers: + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Headers: + - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization + Access-Control-Allow-Methods: + - PUT, GET, POST, OPTIONS + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - '*, X-CustomResponseHeader' + Access-Control-Max-Age: + - '1728000' + Connection: + - keep-alive + Content-Length: + - '893' + Content-Type: + - application/json + Date: + - Tue, 20 May 2025 18:49:20 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + content-encoding: + - gzip + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + User-Agent: + - python-requests/2.32.3 + method: POST + uri: https://stac.sage.uvt.ro/search + response: + body: + string: '{"type":"FeatureCollection","context":{"limit":10,"returned":10},"features":[{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827","bbox":[30.230932062986902,48.63303181535822,31.77513103779051,49.64598096654525],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5500020.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5500020.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5500020.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/IMG_DATA/T36UUV_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[300000.0,5390220.0,409800.0,5500020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/QI_DATA/T36UUV_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/GRANULE/L1C_T36UUV_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUV/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[30.230932062986902,49.619596875011254],[31.75053740496535,49.64598096654525],[31.77513103779051,48.6585189163826],[30.285371051797206,48.63303181535822],[30.230932062986902,49.619596875011254]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32636,"instruments":["msi"],"s2:mgrs_tile":"T36UUV","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T36UUV_N05.11","eo:cloud_cover":99.96321180089,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T36UUV_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":57.748344077577,"s2:mean_solar_azimuth":162.03833101329,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827","bbox":[30.2806415047717,47.734155602346505,31.796401702235197,48.74648044472784],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/IMG_DATA/T36UUU_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[300000.0,5290200.0,409800.0,5400000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/QI_DATA/T36UUU_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/GRANULE/L1C_T36UUU_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36UUU/S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[30.2806415047717,48.7209148694678],[31.772994464211596,48.74648044472784],[31.796401702235197,47.75885537254857],[30.332457670261363,47.734155602346505],[30.2806415047717,48.7209148694678]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32636,"instruments":["msi"],"s2:mgrs_tile":"T36UUU","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T36UUU_N05.11","eo:cloud_cover":99.992863328257,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T36UUU_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":56.8735996006988,"s2:mean_solar_azimuth":161.969863139922,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827","bbox":[30.32792675946482,46.835643714163524,31.81664846691532,47.84737115234881],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5300040.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5300040.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5300040.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/IMG_DATA/T36TUT_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[300000.0,5190240.0,409800.0,5300040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/QI_DATA/T36TUT_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/GRANULE/L1C_T36TUT_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUT/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[30.32792675946482,47.82259512731069],[31.79435498889108,47.84737115234881],[31.81664846691532,46.859583083848264],[30.377280362167834,46.835643714163524],[30.32792675946482,47.82259512731069]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32636,"instruments":["msi"],"s2:mgrs_tile":"T36TUT","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T36TUT_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUT_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":55.9995156807602,"s2:mean_solar_azimuth":161.893640173329,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827","bbox":[30.415934879602823,45.037023116804335,31.539415847045472,46.042791306770816],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5100000.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5100000.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5100000.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5100000.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5100000.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5100000.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5100000.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5100000.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5100000.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5100000.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5100000.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5100000.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5100000.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5100000.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/IMG_DATA/T36TUR_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[300000.0,4990200.0,409800.0,5100000.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5100000.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/QI_DATA/T36TUR_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/GRANULE/L1C_T36TUR_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUR/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[31.539415847045472,46.042791306770816],[31.50364377586624,45.95864212696196],[31.44220058257345,45.81325383299961],[31.38104871094518,45.66786292012053],[31.35120203653689,45.59644740359384],[31.32158299008152,45.52569620945826],[31.29042640690215,45.45071919448068],[31.25972637323603,45.376945294221535],[31.19949093811268,45.23148744263545],[31.1396111074286,45.08604878768934],[31.123907714411764,45.04772500401447],[30.46078579300118,45.037023116804335],[30.415934879602823,46.02435339629007],[31.539415847045472,46.042791306770816]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32636,"instruments":["msi"],"s2:mgrs_tile":"T36TUR","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T36TUR_N05.11","eo:cloud_cover":99.463454756778,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUR_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":54.2508308065801,"s2:mean_solar_azimuth":161.717102478583,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.69491339065,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827","bbox":[30.456860516996773,44.137996748196564,31.160542309932637,45.13688737396813],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/IMG_DATA/T36TUQ_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/QI_DATA/T36TUQ_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/GRANULE/L1C_T36TUQ_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUQ/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[31.160542309932637,45.13688737396813],[31.1396111074286,45.08604878768934],[31.080014248105417,44.94060396936537],[31.02070213764096,44.79513294771156],[30.96154887278596,44.64959472704842],[30.90254624672854,44.504022103523006],[30.843743091250914,44.35838445171912],[30.785195896091697,44.21270727326928],[30.75694833982713,44.142084173467225],[30.499651613106888,44.137996748196564],[30.456860516996773,45.12551356202371],[31.160542309932637,45.13688737396813]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32636,"instruments":["msi"],"s2:mgrs_tile":"T36TUQ","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T36TUQ_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUQ_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":53.3773339796549,"s2:mean_solar_azimuth":161.616594724886,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827","bbox":[30.49592859290379,43.55322527317476,30.792419722633795,44.230681604326506],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4900020.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4900020.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4900020.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4900020.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4900020.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4900020.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4900020.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4900020.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4900020.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4900020.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4900020.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4900020.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4900020.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4900020.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/IMG_DATA/T36TUP_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[300000.0,4790220.0,409800.0,4900020.0],"proj:epsg":32636,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4900020.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/QI_DATA/T36TUP_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/GRANULE/L1C_T36TUP_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T36TUP/S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[30.792419722633795,44.230681604326506],[30.785195896091697,44.21270727326928],[30.753325672031377,44.13302696416768],[30.728209367643423,44.070275599840585],[30.720077212021287,44.04981585034276],[30.668933583373374,43.92131338204078],[30.61122255066762,43.77561306685664],[30.55383135565832,43.62985365984808],[30.523747891117765,43.55322527317476],[30.49592859290379,44.22596415476343],[30.792419722633795,44.230681604326506]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32636,"instruments":["msi"],"s2:mgrs_tile":"T36TUP","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T36TUP_N05.11","eo:cloud_cover":99.998761420733,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T36TUP_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":52.5035742956857,"s2:mean_solar_azimuth":161.507545125832,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827","bbox":[29.667009418148023,47.69085106573984,31.208284435787206,48.720927698149374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/IMG_DATA/T35UQP_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[699960.0,5290200.0,809760.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/QI_DATA/T35UQP_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/GRANULE/L1C_T35UQP_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UQP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[29.718815262801492,48.720927698149374],[31.208284435787206,48.676094448248996],[31.1282606560594,47.69085106573984],[29.667009418148023,47.73416799677996],[29.718815262801492,48.720927698149374]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32635,"instruments":["msi"],"s2:mgrs_tile":"T35UQP","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T35UQP_N05.11","eo:cloud_cover":99.966854788139,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T35UQP_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":56.9680942244871,"s2:mean_solar_azimuth":161.260898828393,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827","bbox":[28.536220584718528,48.62982157570405,29.90457276290215,49.63468026905789],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/IMG_DATA/T35UPQ_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/QI_DATA/T35UPQ_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/GRANULE/L1C_T35UPQ_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UPQ/S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[28.536220584718528,48.65377051150374],[28.55474663755335,48.702627456273966],[28.60994946561631,48.84892275958288],[28.665413244943043,48.995207766173],[28.721425518108685,49.14140136315],[28.77754872048732,49.28760269498135],[28.833936424346835,49.43373132099808],[28.8903396227332,49.57983694917164],[28.911535472763777,49.63468026905789],[29.90457276290215,49.61627372192671],[29.847478451946774,48.62982157570405],[28.536220584718528,48.65377051150374]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32635,"instruments":["msi"],"s2:mgrs_tile":"T35UPQ","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T35UPQ_N05.11","eo:cloud_cover":99.981530488585,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T35UPQ_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":58.1444627153011,"s2:mean_solar_azimuth":159.901716838775,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.011230402068,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827","bbox":[28.203213005621066,47.75581864580811,28.486927070885837,48.52344014475128],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/IMG_DATA/T35UNP_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/QI_DATA/T35UNP_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/GRANULE/L1C_T35UNP_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35UNP/S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[28.203213005621066,47.75748764377788],[28.227850917973505,47.82503820555585],[28.24099978835696,47.86090033358277],[28.282198954849367,47.97298069954193],[28.3359510015052,48.11928455301943],[28.36014956889788,48.18478374100828],[28.38953324280044,48.26390279457228],[28.444401183677417,48.41014603752042],[28.486927070885837,48.52344014475128],[28.46478686693989,47.75581864580811],[28.203213005621066,47.75748764377788]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32635,"instruments":["msi"],"s2:mgrs_tile":"T35UNP","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T35UNP_N05.11","eo:cloud_cover":99.985236286523,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T35UNP_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":57.6295835943066,"s2:mean_solar_azimuth":158.210655301412,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]},{"id":"S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827","bbox":[29.622195655512364,46.79367068819608,31.135258475277467,47.82260755999096],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"parent","type":"application/json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c"},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/geo+json","href":"https://stac.sage.uvt.ro/collections/sentinel-2-l1c/items/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827"}],"assets":{"B01":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B01.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band + 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5300040.0,0.0,0.0,1.0]},"B02":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B02.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B03":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B03.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B04":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B04.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B05":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B05.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band + 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B06":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B06.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band + 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B07":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B07.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band + 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B08":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B08.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band + 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"B09":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B09.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water + vapor","center_wavelength":0.945,"full_width_half_max":0.026}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5300040.0,0.0,0.0,1.0]},"B10":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B10.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 10 - Short Wave Infrared (SWIR)","eo:bands":[{"name":"B10","common_name":"cirrus","description":"Band + 11 - SWIR (1.3)","center_wavelength":1.375,"full_width_half_max":0.075}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5300040.0,0.0,0.0,1.0]},"B11":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B11.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band + 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B12":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B12.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band + 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"B8A":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_B8A.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band + 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band + 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"TCI":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_TCI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True + color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band + 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band + 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band + 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5300040.0,0.0,0.0,1.0]},"fmask":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/IMG_DATA/T35TQN_20250302T085921_CLDFMASK.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["data"],"title":"FMask + generated cloud mask","proj:bbox":[699960.0,5190240.0,809760.0,5300040.0],"proj:epsg":32635,"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5300040.0,0.0,0.0,1.0]},"preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/QI_DATA/T35TQN_20250302T085921_PVI.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE + manifest"},"granule-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/GRANULE/L1C_T35TQN_A002551_20250302T090611/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule + metadata"},"inspire-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE + metadata"},"product-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/MTD_MSIL1C.xml","type":"application/xml","roles":["metadata"],"title":"Product + metadata"},"rendered_preview":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827-ql.jpg","type":"image/jpeg","roles":["overview"],"title":"Rendered + preview"},"datastrip-metadata":{"href":"https://storage.info.uvt.ro/eodata/Sentinel-2/2025/3/2/T35TQN/S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE/DATASTRIP/DS_2CPS_20250302T110827_S20250302T090611/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip + metadata"}},"geometry":{"type":"Polygon","coordinates":[[[29.671539426399654,47.82260755999096],[31.135258475277467,47.779157072334634],[31.059029865045023,46.79367068819608],[29.622195655512364,46.835655727197015],[29.671539426399654,47.82260755999096]]]},"collection":"sentinel-2-l1c","properties":{"datetime":"2025-03-02T11:08:27Z","platform":"Sentinel-2C","proj:epsg":32635,"instruments":["msi"],"s2:mgrs_tile":"T35TQN","constellation":"Sentinel + 2","s2:granule_id":"S2C_OPER_MSI_L1C_TL_2CPS_20250302T110827_A002551_T35TQN_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2C_20250302T085921_002551_N05.11","s2:product_uri":"S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L1C_DS_2CPS_20250302T110827_S20250302T090611_N05.11","s2:product_type":"S2MSI1C","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-03-02T11:08:27+00:00","sat:relative_orbit":7,"s2:mean_solar_zenith":56.1177454355737,"s2:mean_solar_azimuth":161.07220892456,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:degraded_msi_data_percentage":0.0},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"]}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://stac.sage.uvt.ro/search","body":{"token":"next:sentinel-2-l1c:S2C_MSIL1C_20250302T085921_N0511_R007_T35TQN_20250302T110827"}},{"rel":"root","type":"application/json","href":"https://stac.sage.uvt.ro/"},{"rel":"self","type":"application/json","href":"https://stac.sage.uvt.ro/search"}]}' + headers: + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Headers: + - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization + Access-Control-Allow-Methods: + - PUT, GET, POST, OPTIONS + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - '*, X-CustomResponseHeader' + Access-Control-Max-Age: + - '1728000' + Connection: + - keep-alive + Content-Length: + - '6667' + Content-Type: + - application/geo+json + Date: + - Tue, 20 May 2025 18:49:22 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + content-encoding: + - gzip + vary: + - Accept-Encoding + status: + code: 200 + message: OK +version: 1 diff --git a/tests/cassettes/test_client/test_get_items_recursion_no_collections_without_ids.yaml b/tests/cassettes/test_client/test_get_items_recursion_no_collections_without_ids.yaml new file mode 100644 index 00000000..41ab2def --- /dev/null +++ b/tests/cassettes/test_client/test_get_items_recursion_no_collections_without_ids.yaml @@ -0,0 +1,516 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.3 + method: GET + uri: https://paituli.csc.fi/geoserver/ogc/stac/v1/ + response: + body: + string: '{"title":"Paituli STAC","description":"Paituli STAC with Finnish data. + More info: https://paituli.csc.fi/stac.html","links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fjson","rel":"self","type":"application/json","title":"This + document"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fx-yaml","rel":"alternate","type":"application/x-yaml","title":"This + document as application/x-yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml","rel":"alternate","type":"text/html","title":"This + document as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fvnd.oai.openapi%2Bjson%3Bversion%3D3.0","rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"API + definition for this endpoint as application/vnd.oai.openapi+json;version=3.0"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fx-yaml","rel":"service-desc","type":"application/x-yaml","title":"API + definition for this endpoint as application/x-yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=text%2Fhtml","rel":"service-doc","type":"text/html","title":"API + definition for this endpoint as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fjson","rel":"conformance","type":"application/json","title":"Conformance + declaration as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fx-yaml","rel":"conformance","type":"application/x-yaml","title":"Conformance + declaration as application/x-yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml","rel":"conformance","type":"text/html","title":"Conformance + declaration as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=application%2Fjson","rel":"data","type":"application/json","title":"Collections + Metadata as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=text%2Fhtml","rel":"data","type":"text/html","title":"Collections + Metadata as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_global_radiation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivukuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_land_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_8_modif_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_sea_level_pressure_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_10ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_1_mining_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_general_map_1milj_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kasvupaikka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_6_footprint_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_snow_damage_risk_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_5_road_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/daily_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ika_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_1_forest_loss_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_nir_b08_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_spruce_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivutukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantykuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_42k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/wind_velocity_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_fra_luokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulpkuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_13_livestock_mass_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_84k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusitukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_agricultural_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/landsat_annual_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sea_regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_satellite_image_mosaic_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_height_model_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_3_1_light_mcdm2_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/2m_digital_terrain_model_products_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_0_5ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantytukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/vegetation_height_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_10y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ppa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_stand_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_surface_model_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_global_backscatter_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_25m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_4ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_12_crop_perc_iiasa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_annual_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_main_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/land_parcels_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_background_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_pitajakartta_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_4_clim_velocity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_10m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_lehtip_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_2_forest_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_monthly_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_maaluokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/peatland_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_change_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskilapimitta_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_7_impact_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_print_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_tilavuus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_potential_erosion_of_agricultural_lands_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskipituus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_swir_b11_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_relative_humidity_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_2ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_11_crop_perc_uni_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_25k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_fertility_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_1_temp_trends_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_pine_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_wind_damage_sensitivity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_2_temp_signif_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_growing_stock_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_birch_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_3_clim_extreme_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_21k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_5_aridity_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_slope_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_50k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_other_deciduous_tree_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_topographical_wetness_index_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_paatyyppi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/building_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_1ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulptukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/superficial_deposits_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusikuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_basal_area_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_avg_temperature_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_land_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mista_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_400k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nasa_usgs_latuviitta_landsat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/ndvi_max_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_250k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_2_hazard_potential_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_10m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/orthophoto_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_aspect_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_3_human_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_50y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_manty_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_500k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_10_fire_occur_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_snow_depth_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_taloudellinen_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_4_built_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/corine_land_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_9_human_biomes_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_without_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulp_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items + as application/geo+json","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items + as text/html","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson","rel":"root","type":"application/json","title":"Root + Catalog as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items + as application/geo+json","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items + as text/html","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables + as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"text/html","title":"Queryables + as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"application/schema+json","title":"Sortables + as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"text/html","title":"Sortables + as text/html"}],"id":"GeoserverSTACLandingPage","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/html","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/req/features-filter","http://www.opengis.net/spec/ogcapi-features-3/1.0/req/filter","http://geoserver.org/spec/ecql/1.0/req/gs-ecql","http://geoserver.org/spec/ecql/1.0/req/ecql-text","http://www.opengis.net/spec/cql2/1.0/req/basic-cql2","http://www.opengis.net/spec/cql2/1.0/req/advanced-comparison-operators","http://www.opengis.net/spec/cql2/1.0/req/arithmetic","http://www.opengis.net/spec/cql2/1.0/req/property-property","http://www.opengis.net/spec/cql2/1.0/req/basic-spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/functions","http://www.opengis.net/spec/cql2/1.0/req/cql2-text"],"type":"Catalog","stac_version":"1.0.0"}' + headers: + API-Version: + - 1.0.0 + Access-Control-Allow-Headers: + - Origin, X-Requested-With, Content-Type, Accept, User-Agent, If-Modified-Since,Cache-Control, + Access-Control-Allow-Methods: + - GET, OPTIONS + Access-Control-Allow-Origin: + - '*' + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 14 May 2025 18:31:10 GMT + Link: + - ; + rel="self"; type="application/json"; title="This document" + - ; + rel="alternate"; type="application/x-yaml"; title="This document as application/x-yaml" + - ; + rel="alternate"; type="text/html"; title="This document as text/html" + - ; rel="self"; + type="application/json"; title="This document" + - ; rel="alternate"; + type="application/x-yaml"; title="This document as application/x-yaml" + - ; rel="alternate"; + type="text/html"; title="This document as text/html" + Server: + - nginx/1.24.0 + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.3 + method: GET + uri: https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson + response: + body: + string: '{"title":"Paituli STAC","description":"Paituli STAC with Finnish data. + More info: https://paituli.csc.fi/stac.html","links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fjson","rel":"self","type":"application/json","title":"This + document"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fx-yaml","rel":"alternate","type":"application/x-yaml","title":"This + document as application/x-yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml","rel":"alternate","type":"text/html","title":"This + document as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fvnd.oai.openapi%2Bjson%3Bversion%3D3.0","rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"API + definition for this endpoint as application/vnd.oai.openapi+json;version=3.0"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fx-yaml","rel":"service-desc","type":"application/x-yaml","title":"API + definition for this endpoint as application/x-yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=text%2Fhtml","rel":"service-doc","type":"text/html","title":"API + definition for this endpoint as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fjson","rel":"conformance","type":"application/json","title":"Conformance + declaration as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fx-yaml","rel":"conformance","type":"application/x-yaml","title":"Conformance + declaration as application/x-yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml","rel":"conformance","type":"text/html","title":"Conformance + declaration as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=application%2Fjson","rel":"data","type":"application/json","title":"Collections + Metadata as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=text%2Fhtml","rel":"data","type":"text/html","title":"Collections + Metadata as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_global_radiation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivukuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_land_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_8_modif_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_sea_level_pressure_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_10ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_1_mining_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_general_map_1milj_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kasvupaikka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_6_footprint_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_snow_damage_risk_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_5_road_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/daily_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ika_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_1_forest_loss_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_nir_b08_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_spruce_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivutukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantykuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_42k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/wind_velocity_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_fra_luokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulpkuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_13_livestock_mass_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_84k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusitukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_agricultural_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/landsat_annual_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sea_regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_satellite_image_mosaic_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_height_model_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_3_1_light_mcdm2_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/2m_digital_terrain_model_products_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_0_5ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantytukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/vegetation_height_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_10y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ppa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_stand_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_surface_model_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_global_backscatter_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_25m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_4ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_12_crop_perc_iiasa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_annual_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_main_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/land_parcels_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_background_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_pitajakartta_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_4_clim_velocity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_10m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_lehtip_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_2_forest_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_monthly_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_maaluokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/peatland_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_change_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskilapimitta_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_7_impact_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_print_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_tilavuus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_potential_erosion_of_agricultural_lands_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskipituus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_swir_b11_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_relative_humidity_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_2ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_11_crop_perc_uni_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_25k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_fertility_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_1_temp_trends_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_pine_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_wind_damage_sensitivity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_2_temp_signif_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_growing_stock_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_birch_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_3_clim_extreme_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_21k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_5_aridity_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_slope_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_50k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_other_deciduous_tree_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_topographical_wetness_index_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_paatyyppi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/building_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_1ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulptukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/superficial_deposits_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusikuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_basal_area_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_avg_temperature_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_land_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mista_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_400k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nasa_usgs_latuviitta_landsat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/ndvi_max_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_250k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_2_hazard_potential_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_10m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/orthophoto_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_aspect_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_3_human_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_50y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_manty_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_500k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_10_fire_occur_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_snow_depth_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_taloudellinen_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_4_built_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/corine_land_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_9_human_biomes_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_without_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulp_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items + as application/geo+json","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items + as text/html","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson","rel":"root","type":"application/json","title":"Root + Catalog as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items + as application/geo+json","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items + as text/html","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables + as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"text/html","title":"Queryables + as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"application/schema+json","title":"Sortables + as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"text/html","title":"Sortables + as text/html"}],"id":"GeoserverSTACLandingPage","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/html","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/req/features-filter","http://www.opengis.net/spec/ogcapi-features-3/1.0/req/filter","http://geoserver.org/spec/ecql/1.0/req/gs-ecql","http://geoserver.org/spec/ecql/1.0/req/ecql-text","http://www.opengis.net/spec/cql2/1.0/req/basic-cql2","http://www.opengis.net/spec/cql2/1.0/req/advanced-comparison-operators","http://www.opengis.net/spec/cql2/1.0/req/arithmetic","http://www.opengis.net/spec/cql2/1.0/req/property-property","http://www.opengis.net/spec/cql2/1.0/req/basic-spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/functions","http://www.opengis.net/spec/cql2/1.0/req/cql2-text"],"type":"Catalog","stac_version":"1.0.0"}' + headers: + API-Version: + - 1.0.0 + Access-Control-Allow-Headers: + - Origin, X-Requested-With, Content-Type, Accept, User-Agent, If-Modified-Since,Cache-Control, + Access-Control-Allow-Methods: + - GET, OPTIONS + Access-Control-Allow-Origin: + - '*' + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Wed, 14 May 2025 18:31:11 GMT + Link: + - ; + rel="self"; type="application/json"; title="This document" + - ; + rel="alternate"; type="application/x-yaml"; title="This document as application/x-yaml" + - ; + rel="alternate"; type="text/html"; title="This document as text/html" + - ; rel="self"; + type="application/json"; title="This document" + - ; rel="alternate"; + type="application/x-yaml"; title="This document as application/x-yaml" + - ; rel="alternate"; + type="text/html"; title="This document as text/html" + Server: + - nginx/1.24.0 + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + status: + code: 200 + message: '' +- request: + body: '{}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + User-Agent: + - python-requests/2.32.3 + method: POST + uri: https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson + response: + body: + string: '{"type":"FeatureCollection","features":[{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"fmi_snow_load_on_trees_100m_at_paituli_rcp4520702099_2070_2099","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[18.9952,59.238],[31.232,59.4158],[33.31,70.0339],[15.1323,69.7464],[18.9952,59.238]]]},"bbox":[15.1323,59.238,33.31,70.0339],"properties":{"start_datetime":"2070-01-01T00:00:00.000+00:00","end_datetime":"2099-12-31T00:00:00.000+00:00","datetime":"2070-01-01T00:00:00.000+00:00","gsd":100.0,"proj:epsg":3067,"proj:transform":[100,0,43995,0,-100,7782095,0,0,1]},"collection":"fmi_snow_load_on_trees_100m_at_paituli","assets":{"fmi_snow_load_on_trees_100m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/ilmatiede/snow_load/RCP4520702099.tif","type":"image/tiff; + application=geotiff","title":"fmi_snow_load_on_trees_100m_at_paituli_tiff","gsd":100.0,"proj:shape":[11881,6961],"proj:transform":[100.0,0.0,43995.000000477,0.0,-100.0,7782095.000000477,0.0,0.0,1.0],"roles":["data"]},"fmi_snow_load_on_trees_100m_at_puhti_tiff":{"href":"/appl/data/geo/ilmatiede/snow_load/RCP4520702099.tif","type":"image/tiff; + application=geotiff","title":"fmi_snow_load_on_trees_100m_at_puhti_tiff","gsd":100.0,"proj:shape":[11881,6961],"proj:transform":[100.0,0.0,43995.000000477,0.0,-100.0,7782095.000000477,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli/items/fmi_snow_load_on_trees_100m_at_paituli_rcp4520702099_2070_2099","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"fmi_snow_load_on_trees_100m_at_paituli_rcp8520702099_2070_2099","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.4402,59.6061],[31.1318,59.7593],[33.0852,69.9917],[15.9187,69.7477],[19.4402,59.6061]]]},"bbox":[15.9187,59.6061,33.0852,69.9917],"properties":{"start_datetime":"2070-01-01T00:00:00.000+00:00","end_datetime":"2099-12-31T00:00:00.000+00:00","datetime":"2070-01-01T00:00:00.000+00:00","gsd":100.0,"proj:epsg":3067,"proj:transform":[100,0,73937,0,-100,7776539,0,0,1]},"collection":"fmi_snow_load_on_trees_100m_at_paituli","assets":{"fmi_snow_load_on_trees_100m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/ilmatiede/snow_load/RCP8520702099.tif","type":"image/tiff; + application=geotiff","title":"fmi_snow_load_on_trees_100m_at_paituli_tiff","gsd":100.0,"proj:shape":[11447,6581],"proj:transform":[100.0,0.0,73937.55649726803,0.0,-100.0,7776539.113151425,0.0,0.0,1.0],"roles":["data"]},"fmi_snow_load_on_trees_100m_at_puhti_tiff":{"href":"/appl/data/geo/ilmatiede/snow_load/RCP8520702099.tif","type":"image/tiff; + application=geotiff","title":"fmi_snow_load_on_trees_100m_at_puhti_tiff","gsd":100.0,"proj:shape":[11447,6581],"proj:transform":[100.0,0.0,73937.55649726803,0.0,-100.0,7776539.113151425,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli/items/fmi_snow_load_on_trees_100m_at_paituli_rcp8520702099_2070_2099","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_163041","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.809247,61.423983],[19.495446,61.85898],[18.884763,64.13093],[12.764523,63.65204],[13.809247,61.423983]]]},"bbox":[12.764523,61.423983,19.495446,64.13093],"properties":{"start_datetime":"2025-03-24T16:30:41.000+00:00","end_datetime":"2025-03-24T16:31:06.000+00:00","datetime":"2025-03-24T16:30:41.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-200495,0,-10,7136785,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250324_163041_163106_058449_073AC7_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250324_163041_163106_058449_073AC7_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250324_163041_163106_058449_073AC7.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_163041","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_162926","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.544507,56.930513],[21.291347,57.423337],[20.304747,62.661292],[12.459205,62.05496],[14.544507,56.930513]]]},"bbox":[12.459205,56.930513,21.291347,62.661292],"properties":{"start_datetime":"2025-03-24T16:29:26.000+00:00","end_datetime":"2025-03-24T16:30:41.000+00:00","datetime":"2025-03-24T16:29:26.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-255602,0,-10,6965662,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250324_162926_163041_058449_073AC7_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250324_162926_163041_058449_073AC7_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250324_162926_163041_058449_073AC7.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_162926","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_051441","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.680372,59.216524],[20.950577,59.661624],[20.173306,63.401146],[13.14147,62.882537],[14.680372,59.216524]]]},"bbox":[13.14147,59.216524,20.950577,63.401146],"properties":{"start_datetime":"2025-03-24T05:14:41.000+00:00","end_datetime":"2025-03-24T05:15:31.000+00:00","datetime":"2025-03-24T05:14:41.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-200731,0,-10,7048456,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250324_051441_051531_058442_073A7E_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250324_051441_051531_058442_073A7E_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250324_051441_051531_058442_073A7E.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_051441","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_051211","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.359593,66.715073],[26.527005,67.00912],[26.397103,72.159395],[14.783105,71.77375],[17.359593,66.715073]]]},"bbox":[14.783105,66.715073,26.527005,72.159395],"properties":{"start_datetime":"2025-03-24T05:12:11.000+00:00","end_datetime":"2025-03-24T05:13:26.000+00:00","datetime":"2025-03-24T05:12:11.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,76124,0,-10,8006815,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250324_051211_051326_058442_073A7E_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250324_051211_051326_058442_073A7E_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250324_051211_051326_058442_073A7E.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-24_051211","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-24","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-24T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250324_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250324_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250324_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250324_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250324_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250324_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250324_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250324_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250324_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-24","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_155104","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.518032,67.049925],[27.130377,67.225436],[27.153371,70.790399],[18.217558,70.579377],[19.518032,67.049925]]]},"bbox":[18.217558,67.049925,27.153371,70.790399],"properties":{"start_datetime":"2025-03-23T15:51:04.000+00:00","end_datetime":"2025-03-23T15:51:54.000+00:00","datetime":"2025-03-23T15:51:04.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,175082,0,-10,7854027,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250323_155104_155154_058434_073A2B_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250323_155104_155154_058434_073A2B_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250323_155104_155154_058434_073A2B.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_155104","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_154949","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[21.725861,62.707175],[28.908448,62.793307],[29.303278,67.742101],[20.641828,67.634099],[21.725861,62.707175]]]},"bbox":[20.641828,62.707175,29.303278,67.742101],"properties":{"start_datetime":"2025-03-23T15:49:49.000+00:00","end_datetime":"2025-03-23T15:51:04.000+00:00","datetime":"2025-03-23T15:49:49.000+00:00","gsd":9.999999999999998,"proj:epsg":3067,"proj:transform":[9,0,230400,0,-9,7515922,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250323_154949_155104_058434_073A2B_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250323_154949_155104_058434_073A2B_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250323_154949_155104_058434_073A2B.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_154949","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_154834","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.312044,58.331449],[30.357573,58.315618],[30.91116,63.19989],[23.868402,63.219218],[24.312044,58.331449]]]},"bbox":[23.868402,58.315618,30.91116,63.219218],"properties":{"start_datetime":"2025-03-23T15:48:34.000+00:00","end_datetime":"2025-03-23T15:49:49.000+00:00","datetime":"2025-03-23T15:48:34.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,342613,0,-10,7013855,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250323_154834_154949_058434_073A2B_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250323_154834_154949_058434_073A2B_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250323_154834_154949_058434_073A2B.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_154834","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_043347","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.129346,57.304595],[30.138182,57.298199],[30.63426,62.193739],[23.675373,62.201518],[24.129346,57.304595]]]},"bbox":[23.675373,57.298199,30.63426,62.201518],"properties":{"start_datetime":"2025-03-23T04:33:47.000+00:00","end_datetime":"2025-03-23T04:35:02.000+00:00","datetime":"2025-03-23T04:33:47.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,327071,0,-10,6901069,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250323_043347_043502_058427_0739EA_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250323_043347_043502_058427_0739EA_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250323_043347_043502_058427_0739EA.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_043347","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_043232","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.522191,61.779562],[32.59851,61.673065],[33.698737,66.624813],[25.229497,66.757637],[25.522191,61.779562]]]},"bbox":[25.229497,61.673065,33.698737,66.757637],"properties":{"start_datetime":"2025-03-23T04:32:32.000+00:00","end_datetime":"2025-03-23T04:33:47.000+00:00","datetime":"2025-03-23T04:32:32.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,422042,0,-10,7405469,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250323_043232_043347_058427_0739EA_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250323_043232_043347_058427_0739EA_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250323_043232_043347_058427_0739EA.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_043232","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_043117","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.16411,66.211893],[35.860151,65.956807],[38.108538,70.995691],[27.206709,71.326982],[27.16411,66.211893]]]},"bbox":[27.16411,65.956807,38.108538,71.326982],"properties":{"start_datetime":"2025-03-23T04:31:17.000+00:00","end_datetime":"2025-03-23T04:32:32.000+00:00","datetime":"2025-03-23T04:31:17.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,507386,0,-10,7913878,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250323_043117_043232_058427_0739EA_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250323_043117_043232_058427_0739EA_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250323_043117_043232_058427_0739EA.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-23_043117","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-23","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-23T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250323_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250323_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250323_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250323_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250323_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250323_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250323_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250323_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250323_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-23","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-22_150941","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.853844,66.350744],[37.639244,65.994283],[40.3717,71.051873],[29.345375,71.516153],[28.853844,66.350744]]]},"bbox":[28.853844,65.994283,40.3717,71.516153],"properties":{"start_datetime":"2025-03-22T15:09:41.000+00:00","end_datetime":"2025-03-22T15:10:56.000+00:00","datetime":"2025-03-22T15:09:41.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,582972,0,-10,7936575,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250322_150941_151056_058419_07399D_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250322_150941_151056_058419_07399D_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250322_150941_151056_058419_07399D.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-22_150941","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-22_052858","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.961557,65.33553],[22.365166,65.918684],[21.11589,71.243413],[9.366494,70.482693],[12.961557,65.33553]]]},"bbox":[9.366494,65.33553,22.365166,71.243413],"properties":{"start_datetime":"2025-03-22T05:28:58.000+00:00","end_datetime":"2025-03-22T05:30:13.000+00:00","datetime":"2025-03-22T05:28:58.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-149395,0,-10,7914808,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250322_052858_053013_058413_073958_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250322_052858_053013_058413_073958_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250322_052858_053013_058413_073958.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-22_052858","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-22","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-22T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250322_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250322_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250322_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250322_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250322_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250322_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250322_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250322_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250322_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-22","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_160724","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.457776,66.299602],[24.031295,66.777413],[23.200174,72.05615],[11.097045,71.428066],[14.457776,66.299602]]]},"bbox":[11.097045,66.299602,24.031295,72.05615],"properties":{"start_datetime":"2025-03-21T16:07:24.000+00:00","end_datetime":"2025-03-21T16:08:39.000+00:00","datetime":"2025-03-21T16:07:24.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-59504,0,-10,7999316,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250321_160724_160839_058405_073913_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250321_160724_160839_058405_073913_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250321_160724_160839_058405_073913.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_160724","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_160609","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.80782,62.047758],[25.332892,62.343733],[24.979877,67.480979],[15.90413,67.108305],[17.80782,62.047758]]]},"bbox":[15.90413,62.047758,25.332892,67.480979],"properties":{"start_datetime":"2025-03-21T16:06:09.000+00:00","end_datetime":"2025-03-21T16:07:24.000+00:00","datetime":"2025-03-21T16:06:09.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,20453,0,-10,7486405,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250321_160609_160724_058405_073913_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250321_160609_160724_058405_073913_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250321_160609_160724_058405_073913.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_160609","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_160454","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.296428,57.716019],[26.504225,57.892612],[26.421205,62.924973],[19.186693,62.708688],[20.296428,57.716019]]]},"bbox":[19.186693,57.716019,26.504225,62.924973],"properties":{"start_datetime":"2025-03-21T16:04:54.000+00:00","end_datetime":"2025-03-21T16:06:09.000+00:00","datetime":"2025-03-21T16:04:54.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,101017,0,-10,6977362,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250321_160454_160609_058405_073913_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250321_160454_160609_058405_073913_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250321_160454_160609_058405_073913.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_160454","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_045011","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.10158,57.330035],[26.235963,57.516967],[26.109945,62.554878],[18.977388,62.326249],[20.10158,57.330035]]]},"bbox":[18.977388,57.330035,26.235963,62.554878],"properties":{"start_datetime":"2025-03-21T04:50:11.000+00:00","end_datetime":"2025-03-21T04:51:26.000+00:00","datetime":"2025-03-21T04:50:11.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,85072,0,-10,6936312,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250321_045011_045126_058398_0738C5_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250321_045011_045126_058398_0738C5_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250321_045011_045126_058398_0738C5.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_045011","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_044856","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[21.490026,61.855391],[28.613662,61.956336],[28.935804,66.930948],[20.398198,66.804923],[21.490026,61.855391]]]},"bbox":[20.398198,61.855391,28.935804,66.930948],"properties":{"start_datetime":"2025-03-21T04:48:56.000+00:00","end_datetime":"2025-03-21T04:50:11.000+00:00","datetime":"2025-03-21T04:48:56.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,210283,0,-10,7424997,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250321_044856_045011_058398_0738C5_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250321_044856_045011_058398_0738C5_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250321_044856_045011_058398_0738C5.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_044856","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_044741","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.173464,66.342359],[31.980527,66.309643],[33.230141,71.25423],[22.210589,71.296514],[23.173464,66.342359]]]},"bbox":[22.210589,66.309643,33.230141,71.296514],"properties":{"start_datetime":"2025-03-21T04:47:41.000+00:00","end_datetime":"2025-03-21T04:48:56.000+00:00","datetime":"2025-03-21T04:47:41.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,328744,0,-10,7917251,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250321_044741_044856_058398_0738C5_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250321_044741_044856_058398_0738C5_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250321_044741_044856_058398_0738C5.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-21_044741","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-21","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-21T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250321_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250321_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250321_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250321_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250321_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250321_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250321_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250321_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250321_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-21","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-20_152631","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.292165,67.655587],[33.063241,67.551226],[34.129447,71.038122],[24.989188,71.163675],[25.292165,67.655587]]]},"bbox":[24.989188,67.551226,34.129447,71.163675],"properties":{"start_datetime":"2025-03-20T15:26:31.000+00:00","end_datetime":"2025-03-20T15:27:21.000+00:00","datetime":"2025-03-20T15:26:31.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,427551,0,-10,7896854,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250320_152631_152721_058390_07386D_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250320_152631_152721_058390_07386D_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250320_152631_152721_058390_07386D.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-20_152631","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-20_152516","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.499205,63.248981],[34.855841,63.031803],[36.533557,68.027469],[27.607626,68.301724],[27.499205,63.248981]]]},"bbox":[27.499205,63.031803,36.533557,68.301724],"properties":{"start_datetime":"2025-03-20T15:25:16.000+00:00","end_datetime":"2025-03-20T15:26:31.000+00:00","datetime":"2025-03-20T15:25:16.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,525070,0,-10,7576627,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250320_152516_152631_058390_07386D_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250320_152516_152631_058390_07386D_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250320_152516_152631_058390_07386D.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-20_152516","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-20_152357","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.794428,58.665661],[36.360372,58.353354],[38.039135,63.541418],[30.306206,63.928701],[29.794428,58.665661]]]},"bbox":[29.794428,58.353354,38.039135,63.928701],"properties":{"start_datetime":"2025-03-20T15:23:57.000+00:00","end_datetime":"2025-03-20T15:25:16.000+00:00","datetime":"2025-03-20T15:23:57.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,662070,0,-10,7093270,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250320_152357_152516_058390_07386D_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250320_152357_152516_058390_07386D_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250320_152357_152516_058390_07386D.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-20_152357","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-20","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-20T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250320_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250320_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250320_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250320_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250320_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250320_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250320_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250320_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250320_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-20","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-19_162345","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.114337,65.935208],[19.920951,66.401736],[19.183677,68.732141],[11.716319,68.209977],[13.114337,65.935208]]]},"bbox":[11.716319,65.935208,19.920951,68.732141],"properties":{"start_datetime":"2025-03-19T16:23:45.000+00:00","end_datetime":"2025-03-19T16:24:10.000+00:00","datetime":"2025-03-19T16:23:45.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-127664,0,-10,7644600,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250319_162345_162410_058376_0737E3_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250319_162345_162410_058376_0737E3_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250319_162345_162410_058376_0737E3.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-19_162345","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-19_050515","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.625997,62.169813],[25.195783,62.475415],[24.81078,67.616776],[15.671274,67.231598],[17.625997,62.169813]]]},"bbox":[15.671274,62.169813,25.195783,67.616776],"properties":{"start_datetime":"2025-03-19T05:05:15.000+00:00","end_datetime":"2025-03-19T05:06:30.000+00:00","datetime":"2025-03-19T05:05:15.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,12984,0,-10,7501782,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250319_050515_050630_058369_07379A_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250319_050515_050630_058369_07379A_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250319_050515_050630_058369_07379A.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-19_050515","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-19_050400","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.321565,66.702799],[28.349037,66.884133],[28.708405,71.942831],[17.309854,71.706214],[19.321565,66.702799]]]},"bbox":[17.309854,66.702799,28.708405,71.942831],"properties":{"start_datetime":"2025-03-19T05:04:00.000+00:00","end_datetime":"2025-03-19T05:05:15.000+00:00","datetime":"2025-03-19T05:04:00.000+00:00","gsd":9.999999999999998,"proj:epsg":3067,"proj:transform":[9,0,161817,0,-9,7983393,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250319_050400_050515_058369_07379A_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250319_050400_050515_058369_07379A_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250319_050400_050515_058369_07379A.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-19_050400","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-19","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-19T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250319_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250319_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250319_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250319_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250319_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250319_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250319_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250319_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250319_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-19","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_154249","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.312275,67.022799],[29.215847,67.147852],[29.806431,72.14454],[18.550361,71.981362],[20.312275,67.022799]]]},"bbox":[18.550361,67.022799,29.806431,72.14454],"properties":{"start_datetime":"2025-03-18T15:42:49.000+00:00","end_datetime":"2025-03-18T15:44:04.000+00:00","datetime":"2025-03-18T15:42:49.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,209132,0,-10,8007293,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250318_154249_154404_058361_073743_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250318_154249_154404_058361_073743_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250318_154249_154404_058361_073743.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_154249","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_154134","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.826595,62.707928],[30.980351,62.687339],[31.790604,67.586163],[23.179601,67.611924],[23.826595,62.707928]]]},"bbox":[23.179601,62.687339,31.790604,67.611924],"properties":{"start_datetime":"2025-03-18T15:41:34.000+00:00","end_datetime":"2025-03-18T15:42:49.000+00:00","datetime":"2025-03-18T15:41:34.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,337703,0,-10,7504603,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250318_154134_154249_058361_073743_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250318_154134_154249_058361_073743_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250318_154134_154249_058361_073743.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_154134","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_154015","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[26.415872,58.145511],[32.463353,58.02957],[33.398031,63.11057],[26.315173,63.253248],[26.415872,58.145511]]]},"bbox":[26.315173,58.02957,33.398031,63.253248],"properties":{"start_datetime":"2025-03-18T15:40:15.000+00:00","end_datetime":"2025-03-18T15:41:34.000+00:00","datetime":"2025-03-18T15:40:15.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,465613,0,-10,7013989,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250318_154015_154134_058361_073743_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250318_154015_154134_058361_073743_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250318_154015_154134_058361_073743.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_154015","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_042532","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[26.19549,57.378519],[32.203414,57.27336],[33.036376,62.216365],[26.065834,62.344591],[26.19549,57.378519]]]},"bbox":[26.065834,57.27336,33.036376,62.344591],"properties":{"start_datetime":"2025-03-18T04:25:32.000+00:00","end_datetime":"2025-03-18T04:26:47.000+00:00","datetime":"2025-03-18T04:25:32.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,451625,0,-10,6912918,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250318_042532_042647_058354_073703_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250318_042532_042647_058354_073703_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250318_042532_042647_058354_073703.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_042532","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_042417","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.497007,61.831555],[34.653734,61.618229],[36.182175,66.631255],[27.597827,66.898273],[27.497007,61.831555]]]},"bbox":[27.497007,61.618229,36.182175,66.898273],"properties":{"start_datetime":"2025-03-18T04:24:17.000+00:00","end_datetime":"2025-03-18T04:25:32.000+00:00","datetime":"2025-03-18T04:24:17.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,526175,0,-10,7420165,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250318_042417_042532_058354_073703_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250318_042417_042532_058354_073703_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250318_042417_042532_058354_073703.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_042417","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_042302","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.828227,66.260714],[37.884126,65.885546],[40.688951,70.978441],[29.315391,71.467663],[28.828227,66.260714]]]},"bbox":[28.828227,65.885546,40.688951,71.467663],"properties":{"start_datetime":"2025-03-18T04:23:02.000+00:00","end_datetime":"2025-03-18T04:24:17.000+00:00","datetime":"2025-03-18T04:23:02.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,582119,0,-10,7931129,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250318_042302_042417_058354_073703_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250318_042302_042417_058354_073703_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250318_042302_042417_058354_073703.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-18_042302","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-18","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-18T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250318_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250318_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250318_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250318_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250318_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250318_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250318_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250318_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250318_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-18","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-17_052045","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.890394,65.382921],[23.974806,65.838286],[23.178326,71.093216],[11.826565,70.500937],[14.890394,65.382921]]]},"bbox":[11.826565,65.382921,23.974806,71.093216],"properties":{"start_datetime":"2025-03-17T05:20:45.000+00:00","end_datetime":"2025-03-17T05:22:00.000+00:00","datetime":"2025-03-17T05:20:45.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-60109,0,-10,7892153,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250317_052045_052200_058340_073676_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250317_052045_052200_058340_073676_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250317_052045_052200_058340_073676.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-17_052045","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-17","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-17T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250317_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250317_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250317_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250317_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250317_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250317_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250317_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250317_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250317_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-17","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_155905","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.921262,66.138721],[25.730095,66.461843],[25.3927,71.610174],[14.320143,71.189058],[16.921262,66.138721]]]},"bbox":[14.320143,66.138721,25.730095,71.610174],"properties":{"start_datetime":"2025-03-16T15:59:05.000+00:00","end_datetime":"2025-03-16T16:00:20.000+00:00","datetime":"2025-03-16T15:59:05.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,46630,0,-10,7946204,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250316_155905_160020_058332_073624_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250316_155905_160020_058332_073624_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250316_155905_160020_058332_073624.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_155905","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_155750","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.198688,61.865534],[27.123173,62.033654],[27.148069,67.044382],[18.841023,66.834156],[20.198688,61.865534]]]},"bbox":[18.841023,61.865534,27.148069,67.044382],"properties":{"start_datetime":"2025-03-16T15:57:50.000+00:00","end_datetime":"2025-03-16T15:59:05.000+00:00","datetime":"2025-03-16T15:57:50.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,142664,0,-10,7436335,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250316_155750_155905_058332_073624_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250316_155750_155905_058332_073624_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250316_155750_155905_058332_073624.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_155750","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_155635","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.650282,57.508478],[28.53469,57.574138],[28.781382,62.493075],[21.954036,62.413089],[22.650282,57.508478]]]},"bbox":[21.954036,57.508478,28.781382,62.493075],"properties":{"start_datetime":"2025-03-16T15:56:35.000+00:00","end_datetime":"2025-03-16T15:57:50.000+00:00","datetime":"2025-03-16T15:56:35.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,239484,0,-10,6930376,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250316_155635_155750_058332_073624_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250316_155635_155750_058332_073624_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250316_155635_155750_058332_073624.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_155635","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_044204","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.02266,57.031108],[27.982388,57.126209],[28.13866,62.0834],[21.235674,61.96759],[22.02266,57.031108]]]},"bbox":[21.235674,57.031108,28.13866,62.0834],"properties":{"start_datetime":"2025-03-16T04:42:04.000+00:00","end_datetime":"2025-03-16T04:43:19.000+00:00","datetime":"2025-03-16T04:42:04.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,198044,0,-10,6883993,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250316_044204_044319_058325_0735D9_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250316_044204_044319_058325_0735D9_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250316_044204_044319_058325_0735D9.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_044204","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_044049","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.397457,61.533342],[30.417936,61.538094],[31.076684,66.448413],[22.703367,66.442509],[23.397457,61.533342]]]},"bbox":[22.703367,61.533342,31.076684,66.448413],"properties":{"start_datetime":"2025-03-16T04:40:49.000+00:00","end_datetime":"2025-03-16T04:42:04.000+00:00","datetime":"2025-03-16T04:40:49.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,308497,0,-10,7375820,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250316_044049_044204_058325_0735D9_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250316_044049_044204_058325_0735D9_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250316_044049_044204_058325_0735D9.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_044049","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_043934","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.058123,65.995279],[33.671532,65.862412],[35.321516,70.84081],[24.572246,71.012334],[25.058123,65.995279]]]},"bbox":[24.572246,65.862412,35.321516,71.012334],"properties":{"start_datetime":"2025-03-16T04:39:34.000+00:00","end_datetime":"2025-03-16T04:40:49.000+00:00","datetime":"2025-03-16T04:39:34.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,411859,0,-10,7880538,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250316_043934_044049_058325_0735D9_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250316_043934_044049_058325_0735D9_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250316_043934_044049_058325_0735D9.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-16_043934","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-16","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-16T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250316_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250316_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250316_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250316_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250316_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250316_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250316_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250316_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250316_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-16","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-15_151817","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.274671,67.71351],[35.059441,67.513274],[36.506671,71.057461],[27.324839,71.299302],[27.274671,67.71351]]]},"bbox":[27.274671,67.513274,36.506671,71.299302],"properties":{"start_datetime":"2025-03-15T15:18:17.000+00:00","end_datetime":"2025-03-15T15:19:07.000+00:00","datetime":"2025-03-15T15:18:17.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,511624,0,-10,7910809,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250315_151817_151907_058317_07358F_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250315_151817_151907_058317_07358F_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250315_151817_151907_058317_07358F.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-15_151817","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-15_151702","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.186511,63.30544],[36.843986,62.979291],[38.977562,68.025865],[29.672598,68.439107],[29.186511,63.30544]]]},"bbox":[29.186511,62.979291,38.977562,68.439107],"properties":{"start_datetime":"2025-03-15T15:17:02.000+00:00","end_datetime":"2025-03-15T15:18:17.000+00:00","datetime":"2025-03-15T15:17:02.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,609577,0,-10,7594199,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250315_151702_151817_058317_07358F_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250315_151702_151817_058317_07358F_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250315_151702_151817_058317_07358F.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-15_151702","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-15_053656","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.765036,69.295465],[20.695584,69.767362],[19.886478,72.143155],[11.009585,71.60526],[12.765036,69.295465]]]},"bbox":[11.009585,69.295465,20.695584,72.143155],"properties":{"start_datetime":"2025-03-15T05:36:56.000+00:00","end_datetime":"2025-03-15T05:37:21.000+00:00","datetime":"2025-03-15T05:36:56.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-57314,0,-10,8019277,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250315_053656_053721_058311_073551_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250315_053656_053721_058311_073551_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250315_053656_053721_058311_073551.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-15_053656","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-15","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-15T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250315_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250315_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250315_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250315_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250315_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250315_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250315_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250315_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250315_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-15","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-14_161535","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.656482,66.05256],[22.436409,66.653014],[21.146786,71.993184],[8.819041,71.203545],[12.656482,66.05256]]]},"bbox":[8.819041,66.05256,22.436409,71.993184],"properties":{"start_datetime":"2025-03-14T16:15:35.000+00:00","end_datetime":"2025-03-14T16:16:50.000+00:00","datetime":"2025-03-14T16:15:35.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-145079,0,-10,7997978,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250314_161535_161650_058303_07350B_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250314_161535_161650_058303_07350B_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250314_161535_161650_058303_07350B.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-14_161535","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-14_045707","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.505128,61.882724],[26.689964,62.086533],[26.626396,67.14523],[17.991492,66.889786],[19.505128,61.882724]]]},"bbox":[17.991492,61.882724,26.689964,67.14523],"properties":{"start_datetime":"2025-03-14T04:57:07.000+00:00","end_datetime":"2025-03-14T04:58:22.000+00:00","datetime":"2025-03-14T04:57:07.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,106557,0,-10,7447618,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250314_045707_045822_058296_0734BF_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250314_045707_045822_058296_0734BF_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250314_045707_045822_058296_0734BF.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-14_045707","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-14_045552","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[21.181994,66.400408],[30.033808,66.479466],[30.808532,71.462729],[19.706777,71.360305],[21.181994,66.400408]]]},"bbox":[19.706777,66.400408,30.808532,71.462729],"properties":{"start_datetime":"2025-03-14T04:55:52.000+00:00","end_datetime":"2025-03-14T04:57:07.000+00:00","datetime":"2025-03-14T04:55:52.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,240391,0,-10,7933263,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250314_045552_045707_058296_0734BF_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250314_045552_045707_058296_0734BF_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250314_045552_045707_058296_0734BF.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-14_045552","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-14","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-14T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250314_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250314_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250314_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250314_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250314_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250314_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250314_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250314_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250314_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-14","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-13_153205","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.750341,60.005426],[33.872945,59.837528],[34.429306,62.292509],[28.89347,62.478311],[28.750341,60.005426]]]},"bbox":[28.750341,59.837528,34.429306,62.478311],"properties":{"start_datetime":"2025-03-13T15:32:05.000+00:00","end_datetime":"2025-03-13T15:33:08.000+00:00","datetime":"2025-03-13T15:32:05.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,597606,0,-10,6928896,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250313_153205_153308_058288_073472_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250313_153205_153308_058288_073472_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250313_153205_153308_058288_073472.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-13_153205","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-13","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-13T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250313_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250313_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250313_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250313_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250313_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250313_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250313_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250313_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250313_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-13","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_163041","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.809132,61.423932],[19.495697,61.858954],[18.885035,64.130906],[12.764401,63.651988],[13.809132,61.423932]]]},"bbox":[12.764401,61.423932,19.495697,64.130906],"properties":{"start_datetime":"2025-03-12T16:30:41.000+00:00","end_datetime":"2025-03-12T16:31:06.000+00:00","datetime":"2025-03-12T16:30:41.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-200502,0,-10,7136780,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250312_163041_163106_058274_0733DD_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250312_163041_163106_058274_0733DD_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250312_163041_163106_058274_0733DD.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_163041","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_162926","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.544349,56.93046],[21.291342,57.423299],[20.304743,62.661255],[12.459027,62.054903],[14.544349,56.93046]]]},"bbox":[12.459027,56.93046,21.291342,62.661255],"properties":{"start_datetime":"2025-03-12T16:29:26.000+00:00","end_datetime":"2025-03-12T16:30:41.000+00:00","datetime":"2025-03-12T16:29:26.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-255613,0,-10,6965658,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250312_162926_163041_058274_0733DD_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250312_162926_163041_058274_0733DD_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250312_162926_163041_058274_0733DD.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_162926","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_051441","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.679458,59.216523],[20.950004,59.661684],[20.172636,63.401291],[13.140403,62.882609],[14.679458,59.216523]]]},"bbox":[13.140403,59.216523,20.950004,63.401291],"properties":{"start_datetime":"2025-03-12T05:14:41.000+00:00","end_datetime":"2025-03-12T05:15:31.000+00:00","datetime":"2025-03-12T05:14:41.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-200783,0,-10,7048475,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250312_051441_051531_058267_073394_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250312_051441_051531_058267_073394_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250312_051441_051531_058267_073394.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_051441","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_051211","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.358296,66.715101],[26.526401,67.009225],[26.396333,72.1595],[14.781462,71.773754],[17.358296,66.715101]]]},"bbox":[14.781462,66.715101,26.526401,72.1595],"properties":{"start_datetime":"2025-03-12T05:12:11.000+00:00","end_datetime":"2025-03-12T05:13:26.000+00:00","datetime":"2025-03-12T05:12:11.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,76067,0,-10,8006827,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250312_051211_051326_058267_073394_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250312_051211_051326_058267_073394_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250312_051211_051326_058267_073394.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-12_051211","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-12","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-12T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250312_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250312_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250312_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250312_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250312_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250312_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250312_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250312_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250312_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-12","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_155104","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.520348,67.050244],[27.132333,67.225643],[27.155669,70.790336],[18.220366,70.579451],[19.520348,67.050244]]]},"bbox":[18.220366,67.050244,27.155669,70.790336],"properties":{"start_datetime":"2025-03-11T15:51:04.000+00:00","end_datetime":"2025-03-11T15:51:54.000+00:00","datetime":"2025-03-11T15:51:04.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,175186,0,-10,7854020,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250311_155104_155154_058259_073342_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250311_155104_155154_058259_073342_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250311_155104_155154_058259_073342.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_155104","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_154949","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[21.727954,62.707413],[28.910201,62.793442],[29.305379,67.742051],[20.644384,67.634178],[21.727954,62.707413]]]},"bbox":[20.644384,62.707413,29.305379,67.742051],"properties":{"start_datetime":"2025-03-11T15:49:49.000+00:00","end_datetime":"2025-03-11T15:51:04.000+00:00","datetime":"2025-03-11T15:49:49.000+00:00","gsd":9.999999999999998,"proj:epsg":3067,"proj:transform":[9,0,230509,0,-9,7515920,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250311_154949_155104_058259_073342_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250311_154949_155104_058259_073342_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250311_154949_155104_058259_073342.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_154949","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_154834","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.313849,58.331511],[30.35904,58.315603],[30.91288,63.199956],[23.870494,63.219378],[24.313849,58.331511]]]},"bbox":[23.870494,58.315603,30.91288,63.219378],"properties":{"start_datetime":"2025-03-11T15:48:34.000+00:00","end_datetime":"2025-03-11T15:49:49.000+00:00","datetime":"2025-03-11T15:48:34.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,342719,0,-10,7013867,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250311_154834_154949_058259_073342_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250311_154834_154949_058259_073342_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250311_154834_154949_058259_073342.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_154834","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_043346","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.128808,57.304684],[30.137495,57.298318],[30.633456,62.193772],[23.674758,62.201515],[24.128808,57.304684]]]},"bbox":[23.674758,57.298318,30.633456,62.201515],"properties":{"start_datetime":"2025-03-11T04:33:46.000+00:00","end_datetime":"2025-03-11T04:35:01.000+00:00","datetime":"2025-03-11T04:33:46.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,327039,0,-10,6901071,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250311_043346_043501_058252_073302_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250311_043346_043501_058252_073302_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250311_043346_043501_058252_073302.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_043346","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_043231","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.521581,61.779645],[32.597549,61.673195],[33.697571,66.624863],[25.228771,66.757629],[25.521581,61.779645]]]},"bbox":[25.228771,61.673195,33.697571,66.757629],"properties":{"start_datetime":"2025-03-11T04:32:31.000+00:00","end_datetime":"2025-03-11T04:33:46.000+00:00","datetime":"2025-03-11T04:32:31.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,422010,0,-10,7405469,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250311_043231_043346_058252_073302_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250311_043231_043346_058252_073302_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250311_043231_043346_058252_073302.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_043231","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_043116","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.16322,66.211991],[35.858878,65.956978],[38.10692,70.995796],[27.205587,71.32699],[27.16322,66.211991]]]},"bbox":[27.16322,65.956978,38.10692,71.32699],"properties":{"start_datetime":"2025-03-11T04:31:16.000+00:00","end_datetime":"2025-03-11T04:32:31.000+00:00","datetime":"2025-03-11T04:31:16.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,507346,0,-10,7913879,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250311_043116_043231_058252_073302_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250311_043116_043231_058252_073302_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250311_043116_043231_058252_073302.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-11_043116","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-11","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-11T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250311_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250311_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250311_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250311_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250311_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250311_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250311_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250311_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250311_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-11","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_dekadi_mosaiikit_2025-03-11_2025-03-21","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"start_datetime":"2025-03-11T00:00:00.000+00:00","end_datetime":"2025-03-21T23:59:59.000+00:00","datetime":"2025-03-11T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_11_days_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vv_min/s1m_grd_20250311-20250321_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vv_mean/s1m_grd_20250311-20250321_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vv_max/s1m_grd_20250311-20250321_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vv_std/s1m_grd_20250311-20250321_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vvvh_mean/s1m_grd_20250311-20250321_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vh_min/s1m_grd_20250311-20250321_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vh_mean/s1m_grd_20250311-20250321_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vh_max/s1m_grd_20250311-20250321_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1m_grd_vh_std/s1m_grd_20250311-20250321_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_11_days_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_11_days_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_dekadi_mosaiikit_2025-03-11_2025-03-21","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-10_150940","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.855832,66.35096],[37.64147,65.99437],[40.374499,71.051913],[29.347896,71.516361],[28.855832,66.35096]]]},"bbox":[28.855832,65.99437,40.374499,71.516361],"properties":{"start_datetime":"2025-03-10T15:09:40.000+00:00","end_datetime":"2025-03-10T15:10:55.000+00:00","datetime":"2025-03-10T15:09:40.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,583060,0,-10,7936602,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250310_150940_151055_058244_0732B1_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250310_150940_151055_058244_0732B1_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250310_150940_151055_058244_0732B1.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-10_150940","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-10_052858","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.961076,65.335539],[22.364461,65.918715],[21.114994,71.243438],[9.365893,70.482687],[12.961076,65.335539]]]},"bbox":[9.365893,65.335539,22.364461,71.243438],"properties":{"start_datetime":"2025-03-10T05:28:58.000+00:00","end_datetime":"2025-03-10T05:30:13.000+00:00","datetime":"2025-03-10T05:28:58.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,-149416,0,-10,7914814,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250310_052858_053013_058238_073272_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250310_052858_053013_058238_073272_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250310_052858_053013_058238_073272.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-10_052858","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-10","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.12671,59.14202],[33.000203,59.242452],[36.021476,70.077018],[15.201371,69.912844],[19.12671,59.14202]]]},"bbox":[15.201371,59.14202,36.021476,70.077018],"properties":{"datetime":"2025-03-10T00:00:00.000+00:00","gsd":20.0,"proj:epsg":3067,"proj:transform":[20,0,50200,0,-20,7799840,0,0,1]},"collection":"sentinel_1_daily_mosaics_at_fmi","assets":{"min_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_min/s1m_grd_20250310_min_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vv","roles":["data"]},"mean_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_mean/s1m_grd_20250310_mean_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vv","roles":["data"]},"max_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_max/s1m_grd_20250310_max_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vv","roles":["data"]},"stdev_vv":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vv_std/s1m_grd_20250310_stdev_VV_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vv","roles":["data"]},"mean_vvvh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vvvh_mean/s1m_grd_20250310_mean_VVVH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vvvh","roles":["data"]},"min_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_min/s1m_grd_20250310_min_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"min_vh","roles":["data"]},"mean_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_mean/s1m_grd_20250310_mean_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"mean_vh","roles":["data"]},"max_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_max/s1m_grd_20250310_max_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"max_vh","roles":["data"]},"stdev_vh":{"href":"https://pta.data.lit.fmi.fi/daily/s1m_grd_vh_std/s1m_grd_20250310_stdev_VH_R20m.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"stdev_vh","roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi/items/Sentinel-1_VV_ja_VH_daily_mosaiikki_2025-03-10","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-09_160609","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.809555,62.048094],[25.334142,62.343966],[24.98141,67.480946],[15.90631,67.108406],[17.809555,62.048094]]]},"bbox":[15.90631,62.048094,25.334142,67.480946],"properties":{"start_datetime":"2025-03-09T16:06:09.000+00:00","end_datetime":"2025-03-09T16:07:24.000+00:00","datetime":"2025-03-09T16:06:09.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,20549,0,-10,7486400,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250309_160609_160724_058230_073226_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250309_160609_160724_058230_073226_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250309_160609_160724_058230_073226.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-09_160609","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-09_160454","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.297998,57.716173],[26.505657,57.892687],[26.422876,62.925049],[19.188514,62.70886],[20.297998,57.716173]]]},"bbox":[19.188514,57.716173,26.505657,62.925049],"properties":{"start_datetime":"2025-03-09T16:04:54.000+00:00","end_datetime":"2025-03-09T16:06:09.000+00:00","datetime":"2025-03-09T16:04:54.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,101112,0,-10,6977369,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250309_160454_160609_058230_073226_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250309_160454_160609_058230_073226_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250309_160454_160609_058230_073226.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-09_160454","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"Sentinel-1_VV_ja_VH_osakuvat_2025-03-09_044741","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.173685,66.342444],[31.980776,66.309714],[33.230456,71.254299],[22.210861,71.2966],[23.173685,66.342444]]]},"bbox":[22.210861,66.309714,33.230456,71.2966],"properties":{"start_datetime":"2025-03-09T04:47:41.000+00:00","end_datetime":"2025-03-09T04:48:56.000+00:00","datetime":"2025-03-09T04:47:41.000+00:00","gsd":10.0,"proj:epsg":3067,"proj:transform":[10,0,328754,0,-10,7917260,0,0,1]},"collection":"sentinel_1_tiles_at_fmi","assets":{"vv":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vv_prep/S1_processed_20250309_044741_044856_058223_0731D9_VV.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vv","roles":["data"]},"vh":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_vh_prep/S1_processed_20250309_044741_044856_058223_0731D9_VH.tif","type":"image/tiff; + application=geotiff; profile=cloud-optimized","title":"vh","roles":["data"]},"metadata":{"href":"https://pta.data.lit.fmi.fi/sen1/s1_grd_meta_prep/S1_processed_20250309_044741_044856_058223_0731D9.dim","title":"metadata","roles":["metadata"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi/items/Sentinel-1_VV_ja_VH_osakuvat_2025-03-09_044741","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4121a_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.525068,60.301059],[23.633436,60.303851],[23.627888,60.357631],[23.519341,60.354832],[23.525068,60.301059]]]},"bbox":[23.51934111913341,60.301058808154224,23.633436493957173,60.35763079274173],"properties":{"datetime":"2025-03-09T01:03:33.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,308000,0,-2,6696000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4121A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,308000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4121A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,308000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4121a_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4121c_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.633436,60.303851],[23.741827,60.306555],[23.736456,60.360341],[23.627888,60.357631],[23.633436,60.303851]]]},"bbox":[23.627887743513316,60.30385108846283,23.741826535154,60.36034065681587],"properties":{"datetime":"2025-03-09T01:03:30.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,314000,0,-2,6696000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4121C.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,314000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4121C.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,314000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4121c_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4121d_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.627888,60.357631],[23.736456,60.360341],[23.731064,60.414126],[23.622318,60.41141],[23.627888,60.357631]]]},"bbox":[23.622317714046204,60.35763079274173,23.73645564677791,60.41412551369706],"properties":{"datetime":"2025-03-09T01:03:28.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,314000,0,-2,6702000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4121D.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,314000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4121D.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,314000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4121d_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4121f_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.736456,60.360341],[23.845044,60.362962],[23.839831,60.416753],[23.731064,60.414126],[23.736456,60.360341]]]},"bbox":[23.731064157564113,60.36034065681587,23.845044150745974,60.416752564379784],"properties":{"datetime":"2025-03-09T01:03:26.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,320000,0,-2,6702000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4121F.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,320000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4121F.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,320000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4121f_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4122a_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.513593,60.408605],[23.622318,60.41141],[23.616726,60.465188],[23.507822,60.462377],[23.513593,60.408605]]]},"bbox":[23.507822134845316,60.40860531235701,23.622317714046204,60.46518796410034],"properties":{"datetime":"2025-03-09T01:03:23.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,308000,0,-2,6708000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4122A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,308000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4122A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,308000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4122a_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4122b_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.507822,60.462377],[23.616726,60.465188],[23.611113,60.518965],[23.502029,60.516149],[23.507822,60.462377]]]},"bbox":[23.50202941027566,60.46237741520103,23.61672629039062,60.518965428793585],"properties":{"datetime":"2025-03-09T01:03:21.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,308000,0,-2,6714000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4122B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,308000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4122B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,308000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4122b_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4122c_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.622318,60.41141],[23.731064,60.414126],[23.725652,60.46791],[23.616726,60.465188],[23.622318,60.41141]]]},"bbox":[23.61672629039062,60.411409751683536,23.731064157564113,60.46790964350725],"properties":{"datetime":"2025-03-09T01:03:18.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,314000,0,-2,6708000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4122C.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,314000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4122C.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,314000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4122c_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4122h_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.834598,60.470542],[23.943565,60.473086],[23.938492,60.526881],[23.829345,60.524332],[23.834598,60.470542]]]},"bbox":[23.82934544059864,60.47054241923302,23.943565074565576,60.52688095464372],"properties":{"datetime":"2025-03-09T01:03:15.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,326000,0,-2,6714000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4122H.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,326000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4122H.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,326000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4122h_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4123b_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.953653,60.365495],[24.06228,60.367939],[24.057425,60.42174],[23.948618,60.419291],[23.953653,60.365495]]]},"bbox":[23.948618498648138,60.365494793390475,24.06228024406686,60.421740401181815],"properties":{"datetime":"2025-03-09T01:03:12.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,332000,0,-2,6702000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4123B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,332000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4123B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,332000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4123b_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4123e_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.175585,60.316487],[24.284071,60.318749],[24.279591,60.372562],[24.170926,60.370295],[24.175585,60.316487]]]},"bbox":[24.170926473134774,60.31648741037013,24.28407057217718,60.37256154445774],"properties":{"datetime":"2025-03-09T01:03:10.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,344000,0,-2,6696000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4123E.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,344000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4123E.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,344000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4123e_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4123f_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.170926,60.370295],[24.279591,60.372562],[24.275093,60.426373],[24.16625,60.424101],[24.170926,60.370295]]]},"bbox":[24.16625022366466,60.37029459498899,24.279590582388764,60.42637301196865],"properties":{"datetime":"2025-03-09T01:03:07.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,344000,0,-2,6702000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4123F.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,344000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4123F.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,344000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4123f_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4123g_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.284071,60.318749],[24.392573,60.320923],[24.388272,60.37474],[24.279591,60.372562],[24.284071,60.318749]]]},"bbox":[24.279590582388764,60.31874943833162,24.39257340774741,60.37473982152367],"properties":{"datetime":"2025-03-09T01:03:05.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,350000,0,-2,6696000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4123G.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4123G.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4123g_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4123h_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.279591,60.372562],[24.388272,60.37474],[24.383954,60.428556],[24.275093,60.426373],[24.279591,60.372562]]]},"bbox":[24.275093394248383,60.37256154445774,24.388271889882354,60.428556034273015],"properties":{"datetime":"2025-03-09T01:03:03.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,350000,0,-2,6702000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4123H.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4123H.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4123h_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4124a_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.948618,60.419291],[24.057425,60.42174],[24.052551,60.475541],[23.943565,60.473086],[23.948618,60.419291]]]},"bbox":[23.943565074565576,60.41929087081366,24.057425030159987,60.47554112841349],"properties":{"datetime":"2025-03-09T01:03:00.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,332000,0,-2,6708000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4124A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,332000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4124A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,332000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4124a_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4124c_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.057425,60.42174],[24.16625,60.424101],[24.161556,60.477907],[24.052551,60.475541],[24.057425,60.42174]]]},"bbox":[24.052551154138037,60.421740401181815,24.16625022366466,60.477906999022665],"properties":{"datetime":"2025-03-09T01:02:58.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,338000,0,-2,6708000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4124C.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,338000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4124C.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,338000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4124c_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4124d_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.052551,60.475541],[24.161556,60.477907],[24.156844,60.531712],[24.047659,60.529341],[24.052551,60.475541]]]},"bbox":[24.04765851470554,60.47554112841349,24.16155599699768,60.531712217048735],"properties":{"datetime":"2025-03-09T01:02:55.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,338000,0,-2,6714000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4124D.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,338000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4124D.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,338000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4124d_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4124f_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.161556,60.477907],[24.270579,60.480184],[24.266047,60.533994],[24.156844,60.531712],[24.161556,60.477907]]]},"bbox":[24.156843695532825,60.477906999022665,24.270578914536294,60.53399402873175],"properties":{"datetime":"2025-03-09T01:02:53.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,344000,0,-2,6714000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4124F.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,344000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4124F.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,344000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4124f_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4124g_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.275093,60.426373],[24.383954,60.428556],[24.379619,60.482372],[24.270579,60.480184],[24.275093,60.426373]]]},"bbox":[24.270578914536294,60.42637301196865,24.383953856290425,60.48237162348561],"properties":{"datetime":"2025-03-09T01:02:50.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,350000,0,-2,6708000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4124G.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4124G.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4124g_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4124h_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.270579,60.480184],[24.379619,60.482372],[24.375268,60.536187],[24.266047,60.533994],[24.270579,60.480184]]]},"bbox":[24.26604704935241,60.480183840262654,24.37961921743229,60.536186588639744],"properties":{"datetime":"2025-03-09T01:02:47.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,350000,0,-2,6714000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4124H.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4124H.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,350000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4124h_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4141a_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.392573,60.320923],[24.501093,60.323008],[24.49697,60.376829],[24.388272,60.37474],[24.392573,60.320923]]]},"bbox":[24.388271889882354,60.32092298575338,24.501092670045985,60.376829398926326],"properties":{"datetime":"2025-03-09T01:02:45.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,356000,0,-2,6696000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4141A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4141A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6696000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4141a_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4141b_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.388272,60.37474],[24.49697,60.376829],[24.492831,60.43065],[24.383954,60.428556],[24.388272,60.37474]]]},"bbox":[24.383953856290425,60.37473982152367,24.496969712994865,60.43065016428587],"properties":{"datetime":"2025-03-09T01:02:42.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,356000,0,-2,6702000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4141B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4141B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6702000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4141b_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4142a_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.383954,60.428556],[24.492831,60.43065],[24.488676,60.48447],[24.379619,60.482372],[24.383954,60.428556]]]},"bbox":[24.37961921743229,60.428556034273015,24.492830923489716,60.484470321156145],"properties":{"datetime":"2025-03-09T01:02:40.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,356000,0,-2,6708000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4142A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4142A.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6708000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4142a_2025","rel":"self","type":"application/geo+json"}]},{"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"id":"nls_digital_elevation_model_2m_at_paituli_l4142b_2025","type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.379619,60.482372],[24.488676,60.48447],[24.484506,60.53829],[24.375268,60.536187],[24.379619,60.482372]]]},"bbox":[24.375267883114972,60.48237162348561,24.488676215677536,60.53828986909845],"properties":{"datetime":"2025-03-09T01:02:37.000+00:00","gsd":2.0,"proj:epsg":3067,"proj:transform":[2,0,356000,0,-2,6714000,0,0,1]},"collection":"nls_digital_elevation_model_2m_at_paituli","assets":{"nls_digital_elevation_model_2m_at_paituli_tiff":{"href":"https://www.nic.funet.fi/index/geodata/mml/dem2m/2008_latest/L4/L41/L4142B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_paituli_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]},"nls_digital_elevation_model_2m_at_puhti_tiff":{"href":"/appl/data/geo/mml/dem2m/2008_latest/L4/L41/L4142B.tif","type":"image/tiff; + application=geotiff","title":"nls_digital_elevation_model_2m_at_puhti_tiff","gsd":2.0,"proj:shape":[3000,3000],"proj:transform":[2.0,0.0,356000.0,0.0,-2.0,6714000.0,0.0,0.0,1.0],"roles":["data"]}},"links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"collection","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1","rel":"root","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli/items/nls_digital_elevation_model_2m_at_paituli_l4142b_2025","rel":"self","type":"application/geo+json"}]}],"numberMatched":389762,"numberReturned":100,"stac_version":"1.0.0","links":[{"type":"application/geo+json","rel":"self","method":"POST","merge":true,"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson"},{"type":"application/geo+json","rel":"next","method":"POST","body":{"startIndex":100,"limit":100},"merge":true,"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson"}]}' + headers: + API-Version: + - 1.0.0 + Access-Control-Allow-Headers: + - Origin, X-Requested-With, Content-Type, Accept, User-Agent, If-Modified-Since,Cache-Control, + Access-Control-Allow-Methods: + - GET, OPTIONS, POST + Access-Control-Allow-Origin: + - '*' + Connection: + - keep-alive + Content-Type: + - application/geo+json + Date: + - Wed, 14 May 2025 18:31:12 GMT + Server: + - nginx/1.24.0 + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + status: + code: 200 + message: '' +version: 1 diff --git a/tests/cassettes/test_client/test_get_items_without_ids.yaml b/tests/cassettes/test_client/test_get_items_without_ids.yaml deleted file mode 100644 index 13ba8499..00000000 --- a/tests/cassettes/test_client/test_get_items_without_ids.yaml +++ /dev/null @@ -1,10560 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://planetarycomputer.microsoft.com/api/stac/v1/ - response: - body: - string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary - Computer STAC API","description":"Searchable spatiotemporal metadata describing - Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC - conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC - search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC - search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet - Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet - Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest - Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"Sentinel - 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet - Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet - Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet - Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet - Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet - Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO - Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: - Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus - DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus - DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"GOES-R - Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth - Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM - IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO - Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m - Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: - Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP - Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS - Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS - Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: - Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat - Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris - Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI - Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS - Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS - Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet - Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS - 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS - Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS - Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI - Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global - Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS - Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS - Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS - World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS - PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares - Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS - Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS - Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US - Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC - Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares - Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS - Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS - Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS - Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: - High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS - Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS - Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 - Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS - Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS - Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS - Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS - Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet - Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land - Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS - Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF - Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA - MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"Sentinel - 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NASADEM - HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri - 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat - Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver - Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake - Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake - Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake - Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA - MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA - MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly - NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"GOES-R - Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"USDA - Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban - Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA - Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA - Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS - National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS - LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS - LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA - US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA - US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"NOAA - US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER - L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL - Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: - National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m - Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity - Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea - Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global - Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL - Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL - Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea - Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea - Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS - Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P - Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global - Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Microsoft - Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 - 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA - WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI - service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI - service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Headers: - - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization - Access-Control-Allow-Methods: - - PUT, GET, POST, OPTIONS - Access-Control-Allow-Origin: - - '*' - Access-Control-Max-Age: - - '1728000' - Connection: - - keep-alive - Content-Length: - - '3297' - Content-Type: - - application/json - Date: - - Fri, 09 Aug 2024 15:13:40 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - content-encoding: - - gzip - vary: - - Accept-Encoding - x-azure-ref: - - 20240809T151340Z-1674bbd94ccr56pfqknwrbqmxg0000000ry0000000002ycs - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json - User-Agent: - - python-requests/2.32.3 - method: POST - uri: https://planetarycomputer.microsoft.com/api/stac/v1/search - response: - body: - string: '{"type":"FeatureCollection","features":[{"id":"UKESM1-0-LL.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"UKESM1-0-LL","end_datetime":"2100-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"UKESM1-0-LL.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"UKESM1-0-LL","end_datetime":"2100-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/pr/pr_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tas/tas_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/huss/huss_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"TaiESM1","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/pr/pr_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tas/tas_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/huss/huss_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"TaiESM1","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"NorESM2-MM","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"NorESM2-MM","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"NorESM2-LM","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"NorESM2-LM","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MRI-ESM2-0","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MRI-ESM2-0","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MIROC-ES2L","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MIROC-ES2L","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/pr/pr_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tas/tas_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/hurs/hurs_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rlds/rlds_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rsds/rsds_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MIROC6","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/pr/pr_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tas/tas_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/hurs/hurs_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rlds/rlds_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rsds/rsds_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"MIROC6","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"KACE-1-0-G","end_datetime":"2100-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"KACE-1-0-G","end_datetime":"2100-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"INM-CM5-0","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"INM-CM5-0","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"INM-CM4-8","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"INM-CM4-8","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-MM.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-MM.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"HadGEM3-GC31-MM","end_datetime":"2100-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2100-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2100-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"GFDL-ESM4","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"GFDL-ESM4","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"GFDL-CM4","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"GFDL-CM4","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"FGOALS-g3","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"FGOALS-g3","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp585_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"EC-Earth3","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp245_r1i1p1f1_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"EC-Earth3","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CNRM-CM6-1","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CNRM-CM6-1","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CMCC-ESM2","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CMCC-ESM2","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/pr/pr_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tas/tas_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/hurs/hurs_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/huss/huss_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rlds/rlds_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rsds/rsds_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CanESM5","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/pr/pr_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tas/tas_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/hurs/hurs_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/huss/huss_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rlds/rlds_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rsds/rsds_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CanESM5","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-CM2.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-CM2.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/pr/pr_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tas/tas_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/hurs/hurs_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/huss/huss_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/rlds/rlds_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/rsds/rsds_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tasmax/tasmax_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tasmin/tasmin_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"ACCESS-CM2","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-CM2.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-CM2.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/pr/pr_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tas/tas_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/hurs/hurs_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/huss/huss_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/rlds/rlds_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/rsds/rsds_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tasmax/tasmax_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tasmin/tasmin_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"ACCESS-CM2","end_datetime":"2100-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KIOST-ESM.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KIOST-ESM.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/pr/pr_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tas/tas_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/hurs/hurs_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/huss/huss_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/rlds/rlds_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/rsds/rsds_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tasmax/tasmax_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tasmin/tasmin_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"KIOST-ESM","end_datetime":"2100-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"percent"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T00:00:00Z","2100-12-31T00:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KIOST-ESM.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KIOST-ESM.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/pr/pr_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tas/tas_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/hurs/hurs_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/huss/huss_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/rlds/rlds_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/rsds/rsds_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tasmax/tasmax_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tasmin/tasmin_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"KIOST-ESM","end_datetime":"2100-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"percent"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2100-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T00:00:00Z","2100-12-31T00:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2-WACCM.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2-WACCM.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/pr/pr_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/tas/tas_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/hurs/hurs_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/huss/huss_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/rlds/rlds_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/rsds/rsds_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/sfcWind/sfcWind_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CESM2-WACCM","end_datetime":"2100-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2100-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T00:00:00Z","2100-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2-WACCM.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2-WACCM.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/pr/pr_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/tas/tas_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/hurs/hurs_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/huss/huss_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/rlds/rlds_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/rsds/rsds_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/sfcWind/sfcWind_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CESM2-WACCM","end_datetime":"2100-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2100-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T00:00:00Z","2100-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2.ssp585.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2.ssp585.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/pr/pr_day_CESM2_ssp585_r4i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/tas/tas_day_CESM2_ssp585_r4i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/hurs/hurs_day_CESM2_ssp585_r4i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/huss/huss_day_CESM2_ssp585_r4i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/rlds/rlds_day_CESM2_ssp585_r4i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/rsds/rsds_day_CESM2_ssp585_r4i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/sfcWind/sfcWind_day_CESM2_ssp585_r4i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CESM2","end_datetime":"2100-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2100-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T00:00:00Z","2100-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2.ssp245.2100","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2.ssp245.2100"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/pr/pr_day_CESM2_ssp245_r4i1p1f1_gn_2100.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/tas/tas_day_CESM2_ssp245_r4i1p1f1_gn_2100.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/hurs/hurs_day_CESM2_ssp245_r4i1p1f1_gn_2100.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/huss/huss_day_CESM2_ssp245_r4i1p1f1_gn_2100.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/rlds/rlds_day_CESM2_ssp245_r4i1p1f1_gn_2100.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/rsds/rsds_day_CESM2_ssp245_r4i1p1f1_gn_2100.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/sfcWind/sfcWind_day_CESM2_ssp245_r4i1p1f1_gn_2100.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2100,"cmip6:model":"CESM2","end_datetime":"2100-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2100-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2100-01-01T00:00:00Z","2100-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"UKESM1-0-LL.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"UKESM1-0-LL","end_datetime":"2099-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"UKESM1-0-LL.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"UKESM1-0-LL","end_datetime":"2099-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/pr/pr_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tas/tas_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/huss/huss_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"TaiESM1","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/pr/pr_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tas/tas_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/huss/huss_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"TaiESM1","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"NorESM2-MM","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"NorESM2-MM","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"NorESM2-LM","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"NorESM2-LM","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MRI-ESM2-0","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MRI-ESM2-0","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MIROC-ES2L","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MIROC-ES2L","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/pr/pr_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tas/tas_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/hurs/hurs_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rlds/rlds_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rsds/rsds_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MIROC6","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/pr/pr_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tas/tas_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/hurs/hurs_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rlds/rlds_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rsds/rsds_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"MIROC6","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"KACE-1-0-G","end_datetime":"2099-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"KACE-1-0-G","end_datetime":"2099-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"INM-CM5-0","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"INM-CM5-0","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"INM-CM4-8","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"INM-CM4-8","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IITM-ESM.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IITM-ESM.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/pr/pr_day_IITM-ESM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/tas/tas_day_IITM-ESM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/hurs/hurs_day_IITM-ESM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/huss/huss_day_IITM-ESM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/rlds/rlds_day_IITM-ESM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/rsds/rsds_day_IITM-ESM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_IITM-ESM_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"IITM-ESM","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature","long_name":"Near-Surface Air Temperature","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"sfcWind":{"type":"data","unit":"m s-1","attrs":{"units":"m - s-1","comment":"near-surface (usually, 10 meters) wind speed.","long_name":"Daily-Mean - Near-Surface Wind Speed","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IITM-ESM.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IITM-ESM.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/pr/pr_day_IITM-ESM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/tas/tas_day_IITM-ESM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/hurs/hurs_day_IITM-ESM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/huss/huss_day_IITM-ESM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/rlds/rlds_day_IITM-ESM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/rsds/rsds_day_IITM-ESM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_IITM-ESM_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"IITM-ESM","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature","long_name":"Near-Surface Air Temperature","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"sfcWind":{"type":"data","unit":"m s-1","attrs":{"units":"m - s-1","comment":"near-surface (usually, 10 meters) wind speed.","long_name":"Daily-Mean - Near-Surface Wind Speed","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-MM.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-MM.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"HadGEM3-GC31-MM","end_datetime":"2099-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2099-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2099-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"GFDL-ESM4","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"GFDL-ESM4","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"GFDL-CM4","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"GFDL-CM4","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"FGOALS-g3","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"FGOALS-g3","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp585_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"EC-Earth3","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp245_r1i1p1f1_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"EC-Earth3","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CNRM-CM6-1","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CNRM-CM6-1","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CMCC-ESM2","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CMCC-ESM2","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/pr/pr_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tas/tas_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/hurs/hurs_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/huss/huss_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rlds/rlds_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rsds/rsds_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CanESM5","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/pr/pr_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tas/tas_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/hurs/hurs_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/huss/huss_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rlds/rlds_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rsds/rsds_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CanESM5","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-CM2.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-CM2.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/pr/pr_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tas/tas_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/hurs/hurs_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/huss/huss_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/rlds/rlds_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/rsds/rsds_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tasmax/tasmax_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tasmin/tasmin_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"ACCESS-CM2","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-CM2.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-CM2.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/pr/pr_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tas/tas_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/hurs/hurs_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/huss/huss_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/rlds/rlds_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/rsds/rsds_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tasmax/tasmax_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tasmin/tasmin_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"ACCESS-CM2","end_datetime":"2099-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T12:00:00Z","2099-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KIOST-ESM.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KIOST-ESM.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/pr/pr_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tas/tas_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/hurs/hurs_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/huss/huss_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/rlds/rlds_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/rsds/rsds_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tasmax/tasmax_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tasmin/tasmin_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"KIOST-ESM","end_datetime":"2099-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"percent"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T00:00:00Z","2099-12-31T00:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KIOST-ESM.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KIOST-ESM.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/pr/pr_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tas/tas_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/hurs/hurs_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/huss/huss_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/rlds/rlds_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/rsds/rsds_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tasmax/tasmax_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tasmin/tasmin_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"KIOST-ESM","end_datetime":"2099-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"percent"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2099-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T00:00:00Z","2099-12-31T00:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2-WACCM.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2-WACCM.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/pr/pr_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/tas/tas_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/hurs/hurs_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/huss/huss_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/rlds/rlds_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/rsds/rsds_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/sfcWind/sfcWind_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CESM2-WACCM","end_datetime":"2099-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2099-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T00:00:00Z","2099-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2-WACCM.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2-WACCM.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/pr/pr_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/tas/tas_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/hurs/hurs_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/huss/huss_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/rlds/rlds_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/rsds/rsds_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/sfcWind/sfcWind_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CESM2-WACCM","end_datetime":"2099-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2099-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T00:00:00Z","2099-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2.ssp585.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2.ssp585.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/pr/pr_day_CESM2_ssp585_r4i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/tas/tas_day_CESM2_ssp585_r4i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/hurs/hurs_day_CESM2_ssp585_r4i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/huss/huss_day_CESM2_ssp585_r4i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/rlds/rlds_day_CESM2_ssp585_r4i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/rsds/rsds_day_CESM2_ssp585_r4i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/sfcWind/sfcWind_day_CESM2_ssp585_r4i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CESM2","end_datetime":"2099-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2099-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T00:00:00Z","2099-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2.ssp245.2099","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2.ssp245.2099"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/pr/pr_day_CESM2_ssp245_r4i1p1f1_gn_2099.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/tas/tas_day_CESM2_ssp245_r4i1p1f1_gn_2099.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/hurs/hurs_day_CESM2_ssp245_r4i1p1f1_gn_2099.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/huss/huss_day_CESM2_ssp245_r4i1p1f1_gn_2099.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/rlds/rlds_day_CESM2_ssp245_r4i1p1f1_gn_2099.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/rsds/rsds_day_CESM2_ssp245_r4i1p1f1_gn_2099.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/sfcWind/sfcWind_day_CESM2_ssp245_r4i1p1f1_gn_2099.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2099,"cmip6:model":"CESM2","end_datetime":"2099-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2099-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2099-01-01T00:00:00Z","2099-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"UKESM1-0-LL.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"UKESM1-0-LL","end_datetime":"2098-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"UKESM1-0-LL.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"UKESM1-0-LL","end_datetime":"2098-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/pr/pr_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tas/tas_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/huss/huss_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"TaiESM1","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/pr/pr_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tas/tas_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/huss/huss_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"TaiESM1","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"NorESM2-MM","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"NorESM2-MM","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"NorESM2-LM","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"NorESM2-LM","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MRI-ESM2-0","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MRI-ESM2-0","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MIROC-ES2L","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MIROC-ES2L","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/pr/pr_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tas/tas_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/hurs/hurs_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rlds/rlds_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rsds/rsds_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MIROC6","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/pr/pr_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tas/tas_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/hurs/hurs_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rlds/rlds_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rsds/rsds_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"MIROC6","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"KACE-1-0-G","end_datetime":"2098-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"KACE-1-0-G","end_datetime":"2098-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"INM-CM5-0","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"INM-CM5-0","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"INM-CM4-8","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"INM-CM4-8","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IITM-ESM.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IITM-ESM.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/pr/pr_day_IITM-ESM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/tas/tas_day_IITM-ESM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/hurs/hurs_day_IITM-ESM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/huss/huss_day_IITM-ESM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/rlds/rlds_day_IITM-ESM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/rsds/rsds_day_IITM-ESM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_IITM-ESM_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"IITM-ESM","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature","long_name":"Near-Surface Air Temperature","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"sfcWind":{"type":"data","unit":"m s-1","attrs":{"units":"m - s-1","comment":"near-surface (usually, 10 meters) wind speed.","long_name":"Daily-Mean - Near-Surface Wind Speed","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IITM-ESM.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IITM-ESM.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/pr/pr_day_IITM-ESM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/tas/tas_day_IITM-ESM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/hurs/hurs_day_IITM-ESM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/huss/huss_day_IITM-ESM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/rlds/rlds_day_IITM-ESM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/rsds/rsds_day_IITM-ESM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_IITM-ESM_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"IITM-ESM","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature","long_name":"Near-Surface Air Temperature","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"sfcWind":{"type":"data","unit":"m s-1","attrs":{"units":"m - s-1","comment":"near-surface (usually, 10 meters) wind speed.","long_name":"Daily-Mean - Near-Surface Wind Speed","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-MM.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-MM.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"HadGEM3-GC31-MM","end_datetime":"2098-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2098-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2098-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"GFDL-ESM4","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"GFDL-ESM4","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"GFDL-CM4","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"GFDL-CM4","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"FGOALS-g3","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"FGOALS-g3","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp585_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"EC-Earth3","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp245_r1i1p1f1_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"EC-Earth3","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CNRM-CM6-1","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CNRM-CM6-1","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CMCC-ESM2","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CMCC-ESM2","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/pr/pr_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tas/tas_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/hurs/hurs_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/huss/huss_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rlds/rlds_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rsds/rsds_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CanESM5","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/pr/pr_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tas/tas_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/hurs/hurs_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/huss/huss_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rlds/rlds_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rsds/rsds_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CanESM5","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-CM2.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-CM2.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/pr/pr_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tas/tas_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/hurs/hurs_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/huss/huss_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/rlds/rlds_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/rsds/rsds_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tasmax/tasmax_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/tasmin/tasmin_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-CM2_ssp585_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"ACCESS-CM2","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-CM2.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-CM2.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/pr/pr_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tas/tas_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/hurs/hurs_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/huss/huss_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/rlds/rlds_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/rsds/rsds_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tasmax/tasmax_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/tasmin/tasmin_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-CM2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-CM2_ssp245_r1i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"ACCESS-CM2","end_datetime":"2098-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T12:00:00Z","2098-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KIOST-ESM.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KIOST-ESM.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/pr/pr_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tas/tas_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/hurs/hurs_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/huss/huss_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/rlds/rlds_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/rsds/rsds_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tasmax/tasmax_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/tasmin/tasmin_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_KIOST-ESM_ssp585_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"KIOST-ESM","end_datetime":"2098-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"percent"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T00:00:00Z","2098-12-31T00:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KIOST-ESM.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KIOST-ESM.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/pr/pr_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tas/tas_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/hurs/hurs_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/huss/huss_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/rlds/rlds_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/rsds/rsds_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tasmax/tasmax_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/tasmin/tasmin_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KIOST-ESM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_KIOST-ESM_ssp245_r1i1p1f1_gr1_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"KIOST-ESM","end_datetime":"2098-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"percent"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2098-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T00:00:00Z","2098-12-31T00:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2-WACCM.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2-WACCM.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/pr/pr_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/tas/tas_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/hurs/hurs_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/huss/huss_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/rlds/rlds_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/rsds/rsds_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp585/r3i1p1f1/sfcWind/sfcWind_day_CESM2-WACCM_ssp585_r3i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CESM2-WACCM","end_datetime":"2098-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2098-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T00:00:00Z","2098-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2-WACCM.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2-WACCM.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/pr/pr_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/tas/tas_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/hurs/hurs_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/huss/huss_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/rlds/rlds_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/rsds/rsds_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2-WACCM/ssp245/r3i1p1f1/sfcWind/sfcWind_day_CESM2-WACCM_ssp245_r3i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CESM2-WACCM","end_datetime":"2098-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2098-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T00:00:00Z","2098-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2.ssp585.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2.ssp585.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/pr/pr_day_CESM2_ssp585_r4i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/tas/tas_day_CESM2_ssp585_r4i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/hurs/hurs_day_CESM2_ssp585_r4i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/huss/huss_day_CESM2_ssp585_r4i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/rlds/rlds_day_CESM2_ssp585_r4i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/rsds/rsds_day_CESM2_ssp585_r4i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp585/r4i1p1f1/sfcWind/sfcWind_day_CESM2_ssp585_r4i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CESM2","end_datetime":"2098-12-31T00:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2098-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T00:00:00Z","2098-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CESM2.ssp245.2098","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CESM2.ssp245.2098"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/pr/pr_day_CESM2_ssp245_r4i1p1f1_gn_2098.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/tas/tas_day_CESM2_ssp245_r4i1p1f1_gn_2098.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/hurs/hurs_day_CESM2_ssp245_r4i1p1f1_gn_2098.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/huss/huss_day_CESM2_ssp245_r4i1p1f1_gn_2098.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/rlds/rlds_day_CESM2_ssp245_r4i1p1f1_gn_2098.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/rsds/rsds_day_CESM2_ssp245_r4i1p1f1_gn_2098.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CESM2/ssp245/r4i1p1f1/sfcWind/sfcWind_day_CESM2_ssp245_r4i1p1f1_gn_2098.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2098,"cmip6:model":"CESM2","end_datetime":"2098-12-31T00:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"id":"pr","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Precipitation","units":"kg - m-2 s-1","comment":"chunits( ((1000 * PRECT)), units=\"kg m-2 s-1\")","mipTable":"day","out_name":"pr","frequency":"day","long_name":"Precipitation","time_label":"time-mean","time_title":"Temporal - mean","description":"at surface; includes both liquid and solid phases from - all types of clouds (both large-scale and convective)","variable_id":"pr","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"id":"tas","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Air Temperature","units":"K","comment":"TREFHT","mipTable":"day","out_name":"tas","frequency":"day","long_name":"Near-Surface - Air Temperature","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 2 meter) air temperature","variable_id":"tas","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 2 meter) air temperature"},"hurs":{"type":"data","unit":"%","attrs":{"id":"hurs","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Relative - Humidity","units":"%","comment":"chunits(RHREFHT,units=\"%\")","mipTable":"day","out_name":"hurs","frequency":"day","long_name":"Near-Surface - Relative Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C.","variable_id":"hurs","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"id":"huss","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Near-Surface Specific - Humidity","units":"1","comment":"QREFHT","mipTable":"day","out_name":"huss","frequency":"day","long_name":"Near-Surface - Specific Humidity","time_label":"time-mean","time_title":"Temporal mean","description":"Near-surface - (usually, 2 meter) specific humidity.","variable_id":"huss","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-surface - (usually, 2 meter) specific humidity."},"rlds":{"type":"data","unit":"W m-2","attrs":{"id":"rlds","prov":"day - ((isd.003))","type":"real","realm":"atmos","title":"Surface Downwelling Longwave - Radiation","units":"W m-2","comment":"FLDS","mipTable":"day","out_name":"rlds","frequency":"day","long_name":"Surface - Downwelling Longwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"The surface called \"surface\" means the lower boundary - of the atmosphere. \"longwave\" means longwave radiation. Downwelling radiation - is radiation from above. It does not mean \"net downward\". When thought of - as being incident on a surface, a radiative flux is sometimes called \"irradiance\". - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called \"vector irradiance\". In accordance with - common usage in geophysical disciplines, \"flux\" implies per unit area, called - \"flux density\" in physics.","variable_id":"rlds","cell_methods":"area: time: - mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"id":"rsds","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Surface - Downwelling Shortwave Radiation","units":"W m-2","comment":"FSDS","mipTable":"day","out_name":"rsds","frequency":"day","long_name":"Surface - Downwelling Shortwave Radiation","time_label":"time-mean","time_title":"Temporal - mean","description":"Surface solar irradiance for UV calculations.","variable_id":"rsds","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - solar irradiance for UV calculations."},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"id":"sfcWind","prov":"day ((isd.003))","type":"real","realm":"atmos","title":"Daily-Mean - Near-Surface Wind Speed","units":"m s-1","comment":"U10","mipTable":"day","out_name":"sfcWind","frequency":"day","long_name":"Daily-Mean - Near-Surface Wind Speed","time_label":"time-mean","time_title":"Temporal mean","description":"near-surface - (usually, 10 meters) wind speed.","variable_id":"sfcWind","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2098-01-01T00:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2098-01-01T00:00:00Z","2098-12-31T00:00:00Z"]}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"UKESM1-0-LL.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp585/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"UKESM1-0-LL","end_datetime":"2097-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"UKESM1-0-LL.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/UKESM1-0-LL.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/pr/pr_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tas/tas_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/hurs/hurs_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/huss/huss_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rlds/rlds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/rsds/rsds_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmax/tasmax_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/tasmin/tasmin_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/UKESM1-0-LL/ssp245/r1i1p1f2/sfcWind/sfcWind_day_UKESM1-0-LL_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"UKESM1-0-LL","end_datetime":"2097-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/pr/pr_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tas/tas_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/huss/huss_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp585/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"TaiESM1","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"TaiESM1.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/TaiESM1.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/pr/pr_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tas/tas_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/hurs/hurs_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/huss/huss_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rlds/rlds_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/rsds/rsds_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmax/tasmax_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/tasmin/tasmin_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/TaiESM1/ssp245/r1i1p1f1/sfcWind/sfcWind_day_TaiESM1_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"TaiESM1","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"NorESM2-MM","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-MM.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-MM.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-MM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-MM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"NorESM2-MM","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"NorESM2-LM","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"NorESM2-LM.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/NorESM2-LM.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/pr/pr_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tas/tas_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/hurs/hurs_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/huss/huss_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rlds/rlds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/rsds/rsds_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmax/tasmax_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/tasmin/tasmin_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/NorESM2-LM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_NorESM2-LM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"NorESM2-LM","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MRI-ESM2-0","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MRI-ESM2-0.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MRI-ESM2-0.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/pr/pr_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tas/tas_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/hurs/hurs_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/huss/huss_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rlds/rlds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/rsds/rsds_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmax/tasmax_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/tasmin/tasmin_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MRI-ESM2-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MRI-ESM2-0_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MRI-ESM2-0","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECIPI","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHA","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QA","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"DLWB","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"DSWB","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TA","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"WIND","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-LR.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-LR.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-LR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MPI-ESM1-2-LR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MPI-ESM1-2-HR.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MPI-ESM1-2-HR.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/pr/pr_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tas/tas_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/hurs/hurs_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/huss/huss_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rlds/rlds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/rsds/rsds_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmax/tasmax_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/tasmin/tasmin_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MPI-ESM1-2-HR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MPI-ESM1-2-HR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MPI-ESM1-2-HR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp585/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp585_r1i1p1f2_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MIROC-ES2L","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC-ES2L.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC-ES2L.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/pr/pr_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tas/tas_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/hurs/hurs_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/huss/huss_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rlds/rlds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/rsds/rsds_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmax/tasmax_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/tasmin/tasmin_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC-ES2L/ssp245/r1i1p1f2/sfcWind/sfcWind_day_MIROC-ES2L_ssp245_r1i1p1f2_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MIROC-ES2L","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"Q2","standard_name":"specific_humidity","original_units":"kg/kg"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/pr/pr_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tas/tas_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/hurs/hurs_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rlds/rlds_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/rsds/rsds_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp585/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MIROC6","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"MIROC6.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/MIROC6.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/pr/pr_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tas/tas_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/hurs/hurs_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rlds/rlds_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/rsds/rsds_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmax/tasmax_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/tasmin/tasmin_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/MIROC6/ssp245/r1i1p1f1/sfcWind/sfcWind_day_MIROC6_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"MIROC6","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRCP","standard_name":"precipitation_flux","original_units":"kg/m**2/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RH2","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SLRD","standard_name":"surface_downwelling_longwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"SSRD","standard_name":"surface_downwelling_shortwave_flux_in_air","original_units":"W/m**2"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"T2","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"VABS10","standard_name":"wind_speed","original_units":"m/s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp585/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"KACE-1-0-G","end_datetime":"2097-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"KACE-1-0-G.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/KACE-1-0-G.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/pr/pr_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tas/tas_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/hurs/hurs_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/huss/huss_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rlds/rlds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/rsds/rsds_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmax/tasmax_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/tasmin/tasmin_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/KACE-1-0-G/ssp245/r1i1p1f1/sfcWind/sfcWind_day_KACE-1-0-G_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"KACE-1-0-G","end_datetime":"2097-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s05i216","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i245","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"m01s03i237","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s02i207","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"m01s01i235","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"TASMAX","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"m01s03i227","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IPSL-CM6A-LR.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IPSL-CM6A-LR.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/pr/pr_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tas/tas_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/hurs/hurs_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rlds/rlds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/rsds/rsds_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IPSL-CM6A-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_IPSL-CM6A-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"IPSL-CM6A-LR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"maximum near-surface (usually, - 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"The - surface called \"surface\" means the lower boundary of the atmosphere. \"longwave\" - means longwave radiation. Downwelling radiation is radiation from above. It - does not mean \"net downward\". When thought of as being incident on a surface, - a radiative flux is sometimes called \"irradiance\". In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called \"vector irradiance\". In accordance with common usage in geophysical - disciplines, \"flux\" implies per unit area, called \"flux density\" in physics."},"rsds":{"type":"data","unit":"W - m-2","attrs":{"units":"W m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"surface - solar irradiance for UV calculations","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"surface - solar irradiance for UV calculations"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"maximum near-surface - (usually, 2 meter) air temperature (add cell_method attribute \"time: max\")","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature","interval_write":"1 - d","online_operation":"maximum","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - \"time: max\")"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","description":"near-surface - (usually, 10 meters) wind speed.","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"near-surface - (usually, 10 meters) wind speed."}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"INM-CM5-0","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM5-0.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM5-0.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/pr/pr_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tas/tas_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/huss/huss_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM5-0/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM5-0_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"INM-CM5-0","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp585/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"INM-CM4-8","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"INM-CM4-8.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/INM-CM4-8.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/pr/pr_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tas/tas_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/hurs/hurs_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/huss/huss_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rlds/rlds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/rsds/rsds_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmax/tasmax_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/tasmin/tasmin_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/INM-CM4-8/ssp245/r1i1p1f1/sfcWind/sfcWind_day_INM-CM4-8_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"INM-CM4-8","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 1 day)","cell_measures":"area: areacella","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 1 day)","cell_measures":"area: - areacella","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 1 day)","cell_measures":"area: areacella","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 1 day)","cell_measures":"area: areacella","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IITM-ESM.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IITM-ESM.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/pr/pr_day_IITM-ESM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/tas/tas_day_IITM-ESM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/hurs/hurs_day_IITM-ESM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/huss/huss_day_IITM-ESM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/rlds/rlds_day_IITM-ESM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/rsds/rsds_day_IITM-ESM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp585/r1i1p1f1/sfcWind/sfcWind_day_IITM-ESM_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"IITM-ESM","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature","long_name":"Near-Surface Air Temperature","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"sfcWind":{"type":"data","unit":"m s-1","attrs":{"units":"m - s-1","comment":"near-surface (usually, 10 meters) wind speed.","long_name":"Daily-Mean - Near-Surface Wind Speed","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"IITM-ESM.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/IITM-ESM.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/pr/pr_day_IITM-ESM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/tas/tas_day_IITM-ESM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/hurs/hurs_day_IITM-ESM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/huss/huss_day_IITM-ESM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/rlds/rlds_day_IITM-ESM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/rsds/rsds_day_IITM-ESM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/IITM-ESM/ssp245/r1i1p1f1/sfcWind/sfcWind_day_IITM-ESM_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"IITM-ESM","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature","long_name":"Near-Surface Air Temperature","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"sfcWind":{"type":"data","unit":"m s-1","attrs":{"units":"m - s-1","comment":"near-surface (usually, 10 meters) wind speed.","long_name":"Daily-Mean - Near-Surface Wind Speed","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-MM.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-MM.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-MM/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-MM_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"HadGEM3-GC31-MM","end_datetime":"2097-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp585/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp585_r1i1p1f3_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2097-12-30T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"HadGEM3-GC31-LL.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/HadGEM3-GC31-LL.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/pr/pr_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tas/tas_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/hurs/hurs_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/huss/huss_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rlds/rlds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/rsds/rsds_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmax/tasmax_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/tasmin/tasmin_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/HadGEM3-GC31-LL/ssp245/r1i1p1f3/sfcWind/sfcWind_day_HadGEM3-GC31-LL_ssp245_r1i1p1f3_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"HadGEM3-GC31-LL","end_datetime":"2097-12-30T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s05i216, lbproc: 128)","standard_name":"precipitation_flux"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i245, lbproc: 128)","standard_name":"relative_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i237, lbproc: 128)","standard_name":"specific_humidity"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: The surface called - ''surface'' means the lower boundary of the atmosphere. ''longwave'' means - longwave radiation. Downwelling radiation is radiation from above. It does - not mean ''net downward''. When thought of as being incident on a surface, - a radiative flux is sometimes called ''irradiance''. In addition, it is identical - with the quantity measured by a cosine-collector light-meter and sometimes - called ''vector irradiance''. In accordance with common usage in geophysical - disciplines, ''flux'' implies per unit area, called ''flux density'' in physics.","long_name":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"mo: (stash: m01s02i207, lbproc: 128)","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"mo: For instantaneous outputs, this diagnostic represents - an average over the radiation time step using the state of the atmosphere - (T,q,clouds) from the first dynamics step within that interval. The time coordinate - is the start of the radiation time step interval, so the value for t(N) is - the average from t(N) to t(N+1)., ScenarioMIP_table_comment: Surface solar - irradiance for UV calculations.","long_name":"Surface Downwelling Shortwave - Radiation","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s01i235, lbproc: 128)","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"mo: - (stash: m01s03i236, lbproc: 8192)","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"mo: (stash: - m01s03i230, lbproc: 128)","standard_name":"wind_speed"},"shape":[360,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-30T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"GFDL-ESM4","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-ESM4.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-ESM4.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-ESM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-ESM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"GFDL-ESM4","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"GFDL-CM4","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr1_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"GFDL-CM4","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp585_r1i1p1f1_gr2_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"GFDL-CM4_gr2.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/GFDL-CM4_gr2.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/pr/pr_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tas/tas_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/hurs/hurs_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/huss/huss_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rlds/rlds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/rsds/rsds_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmax/tasmax_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/tasmin/tasmin_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/GFDL-CM4_gr2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_GFDL-CM4_ssp245_r1i1p1f1_gr2_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"GFDL-CM4_gr2","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"pr","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"hurs","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","cell_methods":"area: time: mean","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"huss","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"rlds","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order1","original_name":"rsds","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","interp_method":"conserve_order2","original_name":"tasmax","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","interp_method":"conserve_order2","original_name":"sfcWind","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp585/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp585_r3i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"FGOALS-g3","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"FGOALS-g3.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/FGOALS-g3.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/pr/pr_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tas/tas_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/hurs/hurs_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/huss/huss_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rlds/rlds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/rsds/rsds_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmax/tasmax_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/tasmin/tasmin_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/FGOALS-g3/ssp245/r3i1p1f1/sfcWind/sfcWind_day_FGOALS-g3_ssp245_r3i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"FGOALS-g3","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"relative_humidity","original_units":"1"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 10 minutes)","cell_measures":"area: - areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 10 minutes)","cell_measures":"area: areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 10 minutes)","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3-Veg-LR.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3-Veg-LR.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3-Veg-LR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3-Veg-LR_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"EC-Earth3-Veg-LR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/pr/pr_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tas/tas_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/huss/huss_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp585/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp585_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"EC-Earth3","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"EC-Earth3.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/EC-Earth3.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/pr/pr_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tas/tas_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/hurs/hurs_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/huss/huss_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rlds/rlds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/rsds/rsds_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmax/tasmax_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/tasmin/tasmin_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/EC-Earth3/ssp245/r1i1p1f1/sfcWind/sfcWind_day_EC-Earth3_ssp245_r1i1p1f1_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"EC-Earth3","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-ESM2-1.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-ESM2-1.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-ESM2-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-ESM2-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CNRM-ESM2-1","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp585/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp585_r1i1p1f2_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CNRM-CM6-1","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CNRM-CM6-1.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CNRM-CM6-1.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/pr/pr_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tas/tas_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/hurs/hurs_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/huss/huss_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rlds/rlds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/rsds/rsds_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmax/tasmax_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/tasmin/tasmin_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CNRM-CM6-1/ssp245/r1i1p1f2/sfcWind/sfcWind_day_CNRM-CM6-1_ssp245_r1i1p1f2_gr_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CNRM-CM6-1","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","long_name":"Precipitation","description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux","interval_write":"1 d","online_operation":"average","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"at - surface; includes both liquid and solid phases from all types of clouds (both - large-scale and convective)"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","description":"Daily Maximum Near-Surface Air - Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","long_name":"Near-Surface - Relative Humidity","description":"This is the relative humidity with respect - to liquid water for T> 0 C, and with respect to ice for T<0 C.","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"This - is the relative humidity with respect to liquid water for T> 0 C, and with - respect to ice for T<0 C."},"huss":{"type":"data","unit":"1","attrs":{"units":"1","long_name":"Near-Surface - Specific Humidity","description":"Near-Surface Specific Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Longwave Radiation","description":"Surface - Downwelling Longwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_longwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","long_name":"Surface Downwelling Shortwave Radiation","description":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air","interval_write":"1 - d","online_operation":"average","interval_operation":"900 s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","long_name":"Daily - Maximum Near-Surface Air Temperature","description":"Daily Maximum Near-Surface - Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature","interval_write":"1 d","online_operation":"maximum","interval_operation":"900 - s"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","long_name":"wind speed","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"wind - speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"Time - axis"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CMCC-ESM2","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-ESM2.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-ESM2.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/pr/pr_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tas/tas_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/huss/huss_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-ESM2/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-ESM2_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CMCC-ESM2","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CMCC-CM2-SR5.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CMCC-CM2-SR5.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/pr/pr_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tas/tas_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/hurs/hurs_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/huss/huss_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rlds/rlds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/rsds/rsds_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmax/tasmax_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/tasmin/tasmin_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CMCC-CM2-SR5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CMCC-CM2-SR5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CMCC-CM2-SR5","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"RHREFHT","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"QREFHT","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"U10","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/pr/pr_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tas/tas_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/hurs/hurs_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/huss/huss_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rlds/rlds_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/rsds/rsds_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CanESM5","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"CanESM5.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/CanESM5.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/pr/pr_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tas/tas_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/hurs/hurs_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/huss/huss_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rlds/rlds_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/rsds/rsds_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmax/tasmax_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/tasmin/tasmin_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/CanESM5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_CanESM5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"CanESM5","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"PCP","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SRH","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","original_name":"SQ","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"FDL","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","original_name":"FSS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","original_name":"STMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","original_name":"SWA","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp585/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"BCC-CSM2-MR.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/BCC-CSM2-MR.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/pr/pr_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tas/tas_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/huss/huss_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rlds/rlds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/rsds/rsds_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmax/tasmax_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/tasmin/tasmin_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/BCC-CSM2-MR/ssp245/r1i1p1f1/sfcWind/sfcWind_day_BCC-CSM2-MR_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"BCC-CSM2-MR","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean - (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"PRECT","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean (interval: 5 minutes)","cell_measures":"area: - areacella","original_name":"QREFHT","standard_name":"specific_humidity","original_units":"1.0"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"RLDS","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"surface solar irradiance for UV calculations","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean (interval: - 5 minutes)","cell_measures":"area: areacella","original_name":"FSDS","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"TREFHTMX","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean (interval: 5 minutes)","cell_measures":"area: areacella","original_name":"U10M","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp585.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp585.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp585/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp585_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp585","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"ACCESS-ESM1-5.ssp245.2097","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items/ACCESS-ESM1-5.ssp245.2097"}],"assets":{"pr":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/pr/pr_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"pr","type":"application/netcdf","roles":["data"]},"tas":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tas/tas_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tas","type":"application/netcdf","roles":["data"]},"hurs":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/hurs/hurs_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"hurs","type":"application/netcdf","roles":["data"]},"huss":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/huss/huss_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"huss","type":"application/netcdf","roles":["data"]},"rlds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rlds/rlds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rlds","type":"application/netcdf","roles":["data"]},"rsds":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/rsds/rsds_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"rsds","type":"application/netcdf","roles":["data"]},"tasmax":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmax/tasmax_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmax","type":"application/netcdf","roles":["data"]},"tasmin":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/tasmin/tasmin_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"tasmin","type":"application/netcdf","roles":["data"]},"sfcWind":{"href":"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6/NEX/GDDP-CMIP6/ACCESS-ESM1-5/ssp245/r1i1p1f1/sfcWind/sfcWind_day_ACCESS-ESM1-5_ssp245_r1i1p1f1_gn_2097.nc","cmip6:variable":"sfcWind","type":"application/netcdf","roles":["data"]}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"nasa-nex-gddp-cmip6","properties":{"datetime":null,"cmip6:year":2097,"cmip6:model":"ACCESS-ESM1-5","end_datetime":"2097-12-31T12:00:00Z","cmip6:scenario":"ssp245","cube:variables":{"pr":{"type":"data","unit":"kg - m-2 s-1","attrs":{"units":"kg m-2 s-1","comment":"includes both liquid and - solid phases","long_name":"Precipitation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"precipitation_flux"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Precipitation"},"tas":{"type":"data","unit":"K","attrs":{"units":"K","comment":"near-surface - (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin","long_name":"Daily - Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: - areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Near-Surface Air Temperature"},"hurs":{"type":"data","unit":"%","attrs":{"units":"%","comment":"The - relative humidity with respect to liquid water for T> 0 C, and with respect - to ice for T<0 C.","long_name":"Near-Surface Relative Humidity","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"relative_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Relative Humidity"},"huss":{"type":"data","unit":"1","attrs":{"units":"1","comment":"Near-surface - (usually, 2 meter) specific humidity.","long_name":"Near-Surface Specific - Humidity","cell_methods":"area: time: mean","cell_measures":"area: areacella","standard_name":"specific_humidity"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Near-Surface - Specific Humidity"},"rlds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"The surface called ''surface'' means the lower boundary of - the atmosphere. ''longwave'' means longwave radiation. Downwelling radiation - is radiation from above. It does not mean ''net downward''. When thought of - as being incident on a surface, a radiative flux is sometimes called ''irradiance''. - In addition, it is identical with the quantity measured by a cosine-collector - light-meter and sometimes called ''vector irradiance''. In accordance with - common usage in geophysical disciplines, ''flux'' implies per unit area, called - ''flux density'' in physics.","long_name":"Surface Downwelling Longwave Radiation","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"surface_downwelling_longwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Longwave Radiation"},"rsds":{"type":"data","unit":"W m-2","attrs":{"units":"W - m-2","comment":"Surface solar irradiance for UV calculations.","long_name":"Surface - Downwelling Shortwave Radiation","cell_methods":"area: time: mean","cell_measures":"area: - areacella","standard_name":"surface_downwelling_shortwave_flux_in_air"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Surface - Downwelling Shortwave Radiation"},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: max'')","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: - mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum - near-surface (usually, 2 meter) air temperature (add cell_method attribute - ''time: min'')","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: - mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily - Minimum Near-Surface Air Temperature"},"sfcWind":{"type":"data","unit":"m - s-1","attrs":{"units":"m s-1","comment":"near-surface (usually, 10 meters) - wind speed.","long_name":"Daily-Mean Near-Surface Wind Speed","cell_methods":"area: - time: mean","cell_measures":"area: areacella","standard_name":"wind_speed"},"shape":[365,600,1440],"dimensions":["time","lat","lon"],"description":"Daily-Mean - Near-Surface Wind Speed"}},"start_datetime":"2097-01-01T12:00:00Z","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-59.875,89.875],"description":"latitude","reference_system":4326},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[0.125,359.875],"description":"longitude","reference_system":4326},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2097-01-01T12:00:00Z","2097-12-31T12:00:00Z"],"description":"time"}}},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"token":"next:nasa-nex-gddp-cmip6:ACCESS-ESM1-5.ssp245.2097"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Headers: - - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization - Access-Control-Allow-Methods: - - PUT, GET, POST, OPTIONS - Access-Control-Allow-Origin: - - '*' - Access-Control-Max-Age: - - '1728000' - Connection: - - keep-alive - Content-Length: - - '51136' - Content-Type: - - application/geo+json - Date: - - Fri, 09 Aug 2024 15:13:42 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - content-encoding: - - gzip - vary: - - Accept-Encoding - x-azure-ref: - - 20240809T151340Z-1674bbd94ccvvjpbkqgpgkat000000000af0000000006p7g - status: - code: 200 - message: OK -version: 1 diff --git a/tests/cassettes/test_client/test_recursion_on_fallback.yaml b/tests/cassettes/test_client/test_recursion_on_fallback.yaml new file mode 100644 index 00000000..4846f12c --- /dev/null +++ b/tests/cassettes/test_client/test_recursion_on_fallback.yaml @@ -0,0 +1,354 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.3 + method: GET + uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/catalog.json + response: + body: + string: "{\n \"type\": \"Catalog\",\n \"stac_version\": \"1.0.0\",\n \"stac_extensions\": + [],\n \"id\": \"landsat-stac-collection-catalog\",\n \"title\": \"STAC for + Landsat data\",\n \"description\": \"STAC for Landsat data\",\n \"links\": + [\n {\n \"href\": \"./catalog.json\",\n \"rel\": \"self\"\n },\n + \ {\n \"href\": \"./catalog.json\",\n \"rel\": \"root\"\n },\n + \ {\n \"href\": \"./landsat-8-l1/collection.json\",\n \"rel\": + \"child\"\n }\n ]\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Length: + - '209' + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Wed, 14 May 2025 18:39:31 GMT + ETag: + - W/"4f517310845b65ca442e14b6613d76cdc06523f64710d84a6d49b93c49d0dca9" + Expires: + - Wed, 14 May 2025 18:44:31 GMT + Source-Age: + - '20' + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding,Origin + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Content-Type-Options: + - nosniff + X-Fastly-Request-ID: + - 1574df6f1dfc9a0d69c333b059e7a0720b0e8bae + X-Frame-Options: + - deny + X-GitHub-Request-Id: + - 7BD6:2F0C8A:A34E6:BE7FA:6824E1F9 + X-Served-By: + - cache-yyz4578-YYZ + X-Timer: + - S1747247971.197037,VS0,VE1 + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.3 + method: GET + uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/collection.json + response: + body: + string: "{\n \"type\": \"Collection\",\n \"stac_version\" : \"1.0.0\",\n \"stac_extensions\" + : [\n \"eo\",\n \"view\",\n \"https://example.com/stac/landsat-extension/1.0/schema.json\"\n + \ ],\n \"id\" : \"landsat-8-l1\",\n \"title\" : \"Landsat 8 L1\",\n \"description\" + : \"Landsat 8 imagery radiometrically calibrated and orthorectified using + ground points and Digital Elevation Model (DEM) data to correct relief displacement.\",\n + \ \"keywords\" : [\n \"landsat\",\n \"earth observation\",\n \"usgs\"\n + \ ],\n \"license\" : \"proprietary\",\n \"providers\" : [\n {\n \"name\" + : \"Development Seed\",\n \"roles\" : [\n \"processor\"\n ],\n + \ \"url\" : \"https://github.com/sat-utils/sat-api\"\n }\n ],\n \"extent\" + : {\n \"spatial\" : {\n \"bbox\" : [\n [\n -180.0,\n + \ -90.0,\n 180.0,\n 90.0\n ]\n ]\n },\n + \ \"temporal\" : {\n \"interval\" : [\n [\n \"2018-05-21T15:44:59Z\",\n + \ \"2018-07-08T15:45:34Z\"\n ]\n ]\n }\n },\n \"summaries\": + {},\n \"properties\" : {\n \"collection\" : \"landsat-8-l1\",\n \"instruments\" + : [\"OLI_TIRS\"],\n \"view:sun_azimuth\" : 149.01607154,\n \"eo:bands\" + : [\n {\n \"name\" : \"B1\",\n \"full_width_half_max\" + : 0.02,\n \"center_wavelength\" : 0.44,\n \"common_name\" : + \"coastal\"\n },\n {\n \"name\" : \"B2\",\n \"full_width_half_max\" + : 0.06,\n \"center_wavelength\" : 0.48,\n \"common_name\" : + \"blue\"\n },\n {\n \"name\" : \"B3\",\n \"full_width_half_max\" + : 0.06,\n \"center_wavelength\" : 0.56,\n \"common_name\" : + \"green\"\n },\n {\n \"name\" : \"B4\",\n \"full_width_half_max\" + : 0.04,\n \"center_wavelength\" : 0.65,\n \"common_name\" : + \"red\"\n },\n {\n \"name\" : \"B5\",\n \"full_width_half_max\" + : 0.03,\n \"center_wavelength\" : 0.86,\n \"common_name\" : + \"nir\"\n },\n {\n \"name\" : \"B6\",\n \"full_width_half_max\" + : 0.08,\n \"center_wavelength\" : 1.6,\n \"common_name\" : \"swir16\"\n + \ },\n {\n \"name\" : \"B7\",\n \"full_width_half_max\" + : 0.22,\n \"center_wavelength\" : 2.2,\n \"common_name\" : \"swir22\"\n + \ },\n {\n \"name\" : \"B8\",\n \"full_width_half_max\" + : 0.18,\n \"center_wavelength\" : 0.59,\n \"common_name\" : + \"pan\"\n },\n {\n \"name\" : \"B9\",\n \"full_width_half_max\" + : 0.02,\n \"center_wavelength\" : 1.37,\n \"common_name\" : + \"cirrus\"\n },\n {\n \"name\" : \"B10\",\n \"full_width_half_max\" + : 0.8,\n \"center_wavelength\" : 10.9,\n \"common_name\" : \"lwir11\"\n + \ },\n {\n \"name\" : \"B11\",\n \"full_width_half_max\" + : 1,\n \"center_wavelength\" : 12,\n \"common_name\" : \"lwir2\"\n + \ }\n ],\n \"view:off_nadir\" : 0,\n \"view:azimuth\" : 0,\n + \ \"platform\" : \"landsat-8\",\n \"gsd\" : 15,\n \"view:sun_elevation\" + : 59.214247\n },\n \"links\" : [\n {\n \"href\" : \"../catalog.json\",\n + \ \"rel\" : \"root\"\n },\n {\n \"href\" : \"../catalog.json\",\n + \ \"rel\" : \"parent\"\n },\n {\n \"href\" : \"./collection.json\",\n + \ \"rel\" : \"self\"\n },\n {\n \"href\" : \"./2018-06/LC80140332018166LGN00.json\",\n + \ \"rel\" : \"item\"\n },\n {\n \"href\" : \"./2018-05/LC80150322018141LGN00.json\",\n + \ \"rel\" : \"item\"\n },\n {\n \"href\" : \"./2018-07/LC80150332018189LGN00.json\",\n + \ \"rel\" : \"item\"\n },\n {\n \"href\" : \"./2018-06/LC80300332018166LGN00.json\",\n + \ \"rel\" : \"item\"\n }\n ]\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Length: + - '959' + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Wed, 14 May 2025 18:39:31 GMT + ETag: + - W/"d7e83b66298977e660cd41eced9df63c47c5075485bc81bbb67f17a4df051e24" + Expires: + - Wed, 14 May 2025 18:44:31 GMT + Source-Age: + - '0' + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding,Origin + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '0' + X-Content-Type-Options: + - nosniff + X-Fastly-Request-ID: + - 58ff633159866722b9c8a93d30c64c996196d451 + X-Frame-Options: + - deny + X-GitHub-Request-Id: + - 9AAE:6E6C2:92E24:AE3C5:6824E20F + X-Served-By: + - cache-yyz4582-YYZ + X-Timer: + - S1747247971.221326,VS0,VE104 + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.3 + method: GET + uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-06/LC80140332018166LGN00.json + response: + body: + string: "{\n \"type\": \"Feature\",\n \"id\": \"LC80140332018166LGN00\",\n + \ \"stac_version\" : \"1.0.0\",\n \"stac_extensions\" : [\n \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\n + \ \"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\n \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \ ],\n \"bbox\": [\n -76.66703,\n 37.82561,\n -73.94861,\n 39.95958\n + \ ],\n \"geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": + [\n [\n [\n -76.12180471942207,\n 39.95810181489563\n + \ ],\n [\n -73.94910518227414,\n 39.55117185146004\n + \ ],\n [\n -74.49564725552679,\n 37.826064511480496\n + \ ],\n [\n -76.66550404911956,\n 38.240699151776084\n + \ ],\n [\n -76.12180471942207,\n 39.95810181489563\n + \ ]\n ]\n ]\n },\n \"collection\": \"landsat-8-l1\",\n \"properties\": + {\n \"collection\": \"landsat-8-l1\",\n \"datetime\": \"2018-06-15T15:39:09Z\",\n + \ \"view:sun_azimuth\": 125.59055137,\n \"view:sun_elevation\": 66.54485226,\n + \ \"eo:cloud_cover\": 22,\n \"instruments\": [\"OLI_TIRS\"],\n \"view:off_nadir\": + 0,\n \"platform\": \"landsat-8\",\n \"gsd\": 30,\n \"proj:epsg\": + 32618,\n \"proj:transform\": [357585.0, 30.0, 0.0, 4423815.0, 0.0, -30.0],\n + \ \"proj:geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": + [\n [\n [357585.0, 4187685.0],\n [357585.0, 4423815.0],\n + \ [589815.0, 4423815.0],\n [589815.0, 4187685.0],\n [357585.0, + 4187685.0]\n ]\n ]\n },\n \"proj:shape\": [7741, 7871]\n + \ },\n \"assets\": {\n \"index\": {\n \"type\": \"text/html\",\n + \ \"title\": \"HTML index page\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/index.html\",\n + \ \"roles\": []\n },\n \"thumbnail\": {\n \"title\": \"Thumbnail + image\",\n \"type\": \"image/jpeg\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_thumb_large.jpg\",\n + \ \"roles\" : [\n \"thumbnail\"\n ]\n },\n \"B1\": {\n + \ \"type\": \"image/tiff\",\n \"title\": \"Band 1 (coastal)\",\n + \ \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B1.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B1\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" + : 0.44,\n \"common_name\" : \"coastal\"\n }\n ]\n },\n + \ \"B2\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 2 + (blue)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B2.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B2\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" + : 0.48,\n \"common_name\" : \"blue\"\n }\n ]\n },\n + \ \"B3\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 3 + (green)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B3.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B3\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" + : 0.56,\n \"common_name\" : \"green\"\n }\n ]\n },\n + \ \"B4\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 4 + (red)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B4.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B4\",\n \"full_width_half_max\" : 0.04,\n \"center_wavelength\" + : 0.65,\n \"common_name\" : \"red\"\n }\n ]\n },\n + \ \"B5\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 5 + (nir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B5.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B5\",\n \"full_width_half_max\" : 0.03,\n \"center_wavelength\" + : 0.86,\n \"common_name\" : \"nir\"\n }\n ]\n },\n + \ \"B6\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 6 + (swir16)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B6.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B6\",\n \"full_width_half_max\" : 0.08,\n \"center_wavelength\" + : 1.6,\n \"common_name\" : \"swir16\"\n }\n ]\n },\n + \ \"B7\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 7 + (swir22)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B7.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B7\",\n \"full_width_half_max\" : 0.22,\n \"center_wavelength\" + : 2.2,\n \"common_name\" : \"swir22\"\n }\n ]\n },\n + \ \"B8\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 8 + (pan)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B8.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B8\",\n \"full_width_half_max\" : 0.18,\n \"center_wavelength\" + : 0.59,\n \"common_name\" : \"pan\"\n }\n ]\n },\n + \ \"B9\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 9 + (cirrus)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B9.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B9\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" + : 1.37,\n \"common_name\" : \"cirrus\"\n }\n ]\n },\n + \ \"B10\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 10 + (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B10.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B10\",\n \"full_width_half_max\" : 0.8,\n \"center_wavelength\" + : 10.9,\n \"common_name\" : \"lwir11\"\n }\n ]\n },\n + \ \"B11\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 11 + (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B11.TIF\",\n + \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" + : \"B11\",\n \"full_width_half_max\" : 1,\n \"center_wavelength\" + : 12,\n \"common_name\" : \"lwir2\"\n }\n ]\n },\n + \ \"ANG\": {\n \"title\": \"Angle coefficients file\",\n \"type\": + \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_ANG.txt\",\n + \ \"roles\": []\n },\n \"MTL\": {\n \"title\": \"original metadata + file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_MTL.txt\",\n + \ \"roles\": []\n },\n \"BQA\": {\n \"title\": \"Band quality + data\",\n \"type\": \"image/tiff\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_BQA.TIF\",\n + \ \"roles\": []\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n + \ \"href\": \"./LC80140332018166LGN00.json\"\n },\n {\n \"rel\": + \"parent\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": + \"collection\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": + \"root\",\n \"href\": \"../../catalog.json\"\n }\n ]\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Length: + - '1382' + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Wed, 14 May 2025 18:39:31 GMT + ETag: + - W/"4aeda1cb7469bd902a948455e21ccb8b8cec0e530c5f287fa31532aeba8a4b4c" + Expires: + - Wed, 14 May 2025 18:44:31 GMT + Source-Age: + - '0' + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding,Origin + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Content-Type-Options: + - nosniff + X-Fastly-Request-ID: + - 86ed8d84854badaf02d792dec66645396c536559 + X-Frame-Options: + - deny + X-GitHub-Request-Id: + - 2EED:3390FC:9572E:B5E8E:6824E362 + X-Served-By: + - cache-yyz4581-YYZ + X-Timer: + - S1747247971.353040,VS0,VE151 + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_client.py b/tests/test_client.py index c1851e26..0225451d 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -738,19 +738,58 @@ def test_collections_are_clients() -> None: @pytest.mark.vcr -def test_get_items_without_ids() -> None: +def test_get_items_recursion_collections_required_without_ids() -> None: + """ + Make sure recursion using /search works when the server requires collections + when searching + """ client = Client.open( - "https://planetarycomputer.microsoft.com/api/stac/v1/", + "https://stac.sage.uvt.ro/", ) next(client.get_items()) +@pytest.mark.vcr +def test_get_items_recursion_no_collections_without_ids() -> None: + """ + Make sure recursion using /search works when the server does not require collections + when searching + """ + client = Client.open( + "https://paituli.csc.fi/geoserver/ogc/stac/v1/", + ) + next(client.get_items()) + + +@pytest.mark.vcr +def test_get_items_non_recursion() -> None: + """Make sure that non-recursive search is used when using /search""" + client = Client.open( + "https://planetarycomputer.microsoft.com/api/stac/v1/", + ) + with pytest.raises(StopIteration): + next(client.get_items(recursive=False)) + + @pytest.mark.vcr def test_non_recursion_on_fallback() -> None: + """ + Make sure that non-recursive search using fallback only looks for + non-recursive items + """ + path = "https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/catalog.json" + catalog = Client.from_file(path) + with pytest.warns(FallbackToPystac), pytest.raises(StopIteration): + next(catalog.get_items(recursive=False)) + + +@pytest.mark.vcr +def test_recursion_on_fallback() -> None: + """Make sure that recursive search using fallback looks for recursive items""" path = "https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/catalog.json" catalog = Client.from_file(path) with pytest.warns(FallbackToPystac): - [i for i in catalog.get_items()] + next(catalog.get_items(recursive=True)) @pytest.mark.vcr