diff --git a/install.yml b/install.yml index 30efd9b..49d38cf 100644 --- a/install.yml +++ b/install.yml @@ -1,5 +1,5 @@ # This file should be committed to your app code. -version: 1.0 +version: 1.1 # This should be greater or equal to your tethys-platform in your environment tethys_version: ">=4.0.0" # This should match the app - package name in your setup.py @@ -10,13 +10,15 @@ requirements: skip: false conda: channels: - - conda-forge + - conda-forge packages: - - earthengine-api - - oauth2client - - geojson + - earthengine-api + - oauth2client + - geojson + - simplejson + - pandas pip: npm: -post: \ No newline at end of file +post: diff --git a/setup.py b/setup.py index 7f32563..b2fc626 100644 --- a/setup.py +++ b/setup.py @@ -10,8 +10,9 @@ dependencies = [] # -- Get Resource File -- # -resource_files = find_all_resource_files(app_package, TethysAppBase.package_namespace) - +resource_files = find_all_resource_files( + app_package, TethysAppBase.package_namespace +) setup( name=release_package, @@ -28,4 +29,4 @@ include_package_data=True, zip_safe=False, install_requires=dependencies, -) \ No newline at end of file +) diff --git a/tethysapp/earth_engine/app.py b/tethysapp/earth_engine/app.py index d368756..003f5b0 100644 --- a/tethysapp/earth_engine/app.py +++ b/tethysapp/earth_engine/app.py @@ -1,12 +1,11 @@ from tethys_sdk.base import TethysAppBase -class EarthEngine(TethysAppBase): +class App(TethysAppBase): """ Tethys app class for Earth Engine. """ - - name = 'Google Earth Engine Tutorial' + name = 'Earth Engine' description = '' package = 'earth_engine' # WARNING: Do not change this value index = 'home' @@ -15,4 +14,4 @@ class EarthEngine(TethysAppBase): color = '#524745' tags = '' enable_feedback = False - feedback_emails = [] \ No newline at end of file + feedback_emails = [] diff --git a/tethysapp/earth_engine/controllers.py b/tethysapp/earth_engine/controllers.py index 7645c4c..64436b0 100644 --- a/tethysapp/earth_engine/controllers.py +++ b/tethysapp/earth_engine/controllers.py @@ -1,17 +1,17 @@ import datetime as dt -import geojson import logging -from simplejson.errors import JSONDecodeError from django.http import JsonResponse, HttpResponseNotAllowed -from django.shortcuts import render +import geojson +from simplejson.errors import JSONDecodeError from tethys_sdk.routing import controller -from tethys_sdk.gizmos import SelectInput, DatePicker, Button, MapView, MVView, PlotlyView, MVDraw -from .gee.methods import get_image_collection_asset, get_time_series_from_image_collection +from tethys_sdk.gizmos import SelectInput, DatePicker, Button, MapView, MVDraw, MVView, PlotlyView from .gee.products import EE_PRODUCTS +from .gee.methods import get_image_collection_asset, get_time_series_from_image_collection +from .app import App from .helpers import generate_figure -log = logging.getLogger(f'tethys.apps.{__name__}') +log = logging.getLogger(f'tethys.apps.{__name__}') @controller def home(request): @@ -19,9 +19,8 @@ def home(request): Controller for the app home page. """ context = {} - return render(request, 'earth_engine/home.html', context) - - + return App.render(request, 'home.html', context) + @controller def viewer(request): """ @@ -132,7 +131,6 @@ def viewer(request): style='outline-secondary', attributes={'id': 'load_map'} ) - map_view = MapView( height='100%', width='100%', @@ -140,7 +138,7 @@ def viewer(request): 'ZoomSlider', 'Rotate', 'FullScreen', {'ZoomToExtent': { 'projection': 'EPSG:4326', - 'extent': [29.25, -4.75, 46.25, 5.2] + 'extent': [29.25, -4.75, 46.25, 5.2] #: Kenya }} ], basemap=[ @@ -157,7 +155,7 @@ def viewer(request): maxZoom=18, minZoom=2 ), - draw=MVDraw( + draw = MVDraw( controls=['Pan', 'Modify', 'Delete', 'Move', 'Point', 'Polygon', 'Box'], initial='Pan', output_format='GeoJSON' @@ -193,8 +191,8 @@ def viewer(request): 'map_view': map_view } - return render(request, 'earth_engine/viewer.html', context) + return App.render(request, 'viewer.html', context) @controller(url='viewer/get-image-collection') def get_image_collection(request): @@ -306,4 +304,5 @@ def get_time_series_plot(request): context['error'] = f'An unexpected error has occurred. Please try again.' log.exception('An unexpected error occurred.') - return render(request, 'earth_engine/plot.html', context) + print(context) + return App.render(request, 'plot.html', context) \ No newline at end of file diff --git a/tethysapp/earth_engine/gee/cloud_mask.py b/tethysapp/earth_engine/gee/cloud_mask.py index 6ffc3bf..ec8a5e9 100644 --- a/tethysapp/earth_engine/gee/cloud_mask.py +++ b/tethysapp/earth_engine/gee/cloud_mask.py @@ -10,7 +10,7 @@ def mask_l8_sr(image): cloudsBitMask = (1 << 5) # Get the pixel QA band. - qa = image.select('pixel_qa') + qa = image.select('QA_PIXEL') # Both flags should be set to zero, indicating clear conditions. mask = qa.bitwiseAnd(cloudShadowBitMask).eq(0).And(qa.bitwiseAnd(cloudsBitMask).eq(0)) @@ -21,7 +21,7 @@ def cloud_mask_l457(image): """ Cloud Mask for Landsat 7 surface reflectance. Derived From: https://developers.google.com/earth-engine/datasets/catalog/LANDSAT_LE07_C01_T1_SR """ - qa = image.select('pixel_qa') + qa = image.select('QA_PIXEL') # If the cloud bit (5) is set and the cloud confidence (7) is high # or the cloud shadow bit is set (3), then it's a bad pixel. @@ -46,4 +46,4 @@ def mask_s2_clouds(image): # Both flags should be set to zero, indicating clear conditions. mask = qa.bitwiseAnd(cloudBitMask).eq(0).And(qa.bitwiseAnd(cirrusBitMask).eq(0)) - return image.updateMask(mask).divide(10000) + return image.updateMask(mask).divide(10000) \ No newline at end of file diff --git a/tethysapp/earth_engine/gee/methods.py b/tethysapp/earth_engine/gee/methods.py index ce6a9ab..d654f22 100644 --- a/tethysapp/earth_engine/gee/methods.py +++ b/tethysapp/earth_engine/gee/methods.py @@ -1,11 +1,11 @@ import logging import ee from ee.ee_exception import EEException -import geojson -import pandas as pd -from .products import EE_PRODUCTS from . import params as gee_account +from .products import EE_PRODUCTS from . import cloud_mask as cm +import geojson +import pandas as pd log = logging.getLogger(f'tethys.apps.{__name__}') @@ -13,20 +13,14 @@ try: credentials = ee.ServiceAccountCredentials(gee_account.service_account, gee_account.private_key) ee.Initialize(credentials) + log.info('Successfully initialized GEE using service account.') except EEException as e: - print(str(e)) + log.warning('Unable to initialize GEE using service account. If installing ignore this warning.') else: try: ee.Initialize() except EEException as e: - from oauth2client.service_account import ServiceAccountCredentials - credentials = ServiceAccountCredentials.from_p12_keyfile( - service_account_email='', - filename='', - private_key_password='notasecret', - scopes=ee.oauth.SCOPE + ' https://www.googleapis.com/auth/drive ' - ) - ee.Initialize(credentials) + log.warning('Unable to initialize GEE with local credentials. If installing ignore this warning.') def image_to_map_id(image_name, vis_params={}): @@ -42,7 +36,6 @@ def image_to_map_id(image_name, vis_params={}): except EEException: log.exception('An error occurred while attempting to retrieve the map id.') - def get_image_collection_asset(platform, sensor, product, date_from=None, date_to=None, reducer='median'): """ Get tile url for image collection asset. @@ -83,7 +76,6 @@ def get_image_collection_asset(platform, sensor, product, date_from=None, date_t except EEException: log.exception('An error occurred while attempting to retrieve the image collection asset.') - def get_time_series_from_image_collection(platform, sensor, product, index_name, scale=30, geometry=None, date_from=None, date_to=None, reducer='median'): """ @@ -143,4 +135,4 @@ def get_index(image): log.exception('An error occurred while attempting to retrieve the time series.') log.debug(f'Time Series: {time_series}') - return time_series + return time_series \ No newline at end of file diff --git a/tethysapp/earth_engine/gee/params.py b/tethysapp/earth_engine/gee/params.py index aa7e8d3..a6274d1 100644 --- a/tethysapp/earth_engine/gee/params.py +++ b/tethysapp/earth_engine/gee/params.py @@ -1,2 +1,4 @@ +from pathlib import Path + service_account = '' # your google service account private_key = '' # path to the json private key for the service account diff --git a/tethysapp/earth_engine/gee/products.py b/tethysapp/earth_engine/gee/products.py index b3cb5f5..6641c4a 100644 --- a/tethysapp/earth_engine/gee/products.py +++ b/tethysapp/earth_engine/gee/products.py @@ -3,7 +3,7 @@ 'terra': { 'snow': { 'display': 'Snow Cover Daily Global 500m', - 'collection': 'MODIS/006/MOD10A1', + 'collection': 'MODIS/061/MOD10A1', 'index': 'NDSI_Snow_Cover', 'vis_params': { 'min': 0.0, @@ -15,7 +15,7 @@ }, 'temperature': { 'display': 'Land Surface Temperature and Emissivity Daily Global 1km', - 'collection': 'MODIS/006/MOD11A1', + 'collection': 'MODIS/061/MOD11A1', 'index': 'LST_Day_1km', 'vis_params': { 'min': 13000.0, @@ -98,91 +98,63 @@ } }, 'landsat': { - '7': { + '8': { 'surface': { 'display': 'Surface Reflectance', - 'collection': 'LANDSAT/LE07/C01/T1_SR', + 'collection': 'LANDSAT/LC08/C02/T1_L2', 'index': None, 'vis_params': { - 'bands': ['B3', 'B2', 'B1'], + 'bands': ['SR_B4', 'SR_B3', 'SR_B2'], 'min': 0, 'max': 3000, 'gamma': 1.4, }, - 'cloud_mask': 'cloud_mask_l457', - 'start_date': '1999-01-01', - 'end_date': None # to present - }, - 'evi': { - 'display': '8-day Enhanced Vegetation Index (EVI)', - 'collection': 'LANDSAT/LE07/C01/T1_8DAY_EVI', - 'index': 'EVI', - 'vis_params': { - 'min': 0.0, - 'max': 1.0, - 'palette': [ - 'FFFFFF', 'CE7E45', 'DF923D', 'F1B555', 'FCD163', '99B718', '74A901', - '66A000', '529400', '3E8601', '207401', '056201', '004C00', '023B01', - '012E01', '011D01', '011301' - ], - }, - 'start_date': '1999-01-01', + 'cloud_mask': 'mask_l8_sr', + 'start_date': '2013-04-01', 'end_date': None # to present }, - 'ndwi': { - 'display': '8-day Normalized Difference Water Index (NDWI)', - 'collection': 'LANDSAT/LE07/C01/T1_8DAY_NDWI', - 'index': 'NDWI', + 'toa': { + 'display': 'Top-of-Atmosphere(TOA) Reflectance', + 'collection': 'LANDSAT/LC08/C02/T1_TOA', + 'index': None, 'vis_params': { - 'min': 0.0, - 'max': 1.0, - 'palette': ['0000ff', '00ffff', 'ffff00', 'ff0000', 'ffffff'], + 'bands': ['B4', 'B3', 'B2'], + 'min': 0, + 'max': 3000, + 'gamma': 1.4, }, - 'start_date': '1999-01-01', + 'start_date': '2013-04-01', 'end_date': None # to present }, }, - '8': { + '9': { 'surface': { 'display': 'Surface Reflectance', - 'collection': 'LANDSAT/LC08/C01/T1_SR', + 'collection': 'LANDSAT/LC09/C02/T1_L2', 'index': None, 'vis_params': { - 'bands': ['B4', 'B3', 'B2'], + 'bands': ['SR_B4', 'SR_B3', 'SR_B2'], 'min': 0, 'max': 3000, 'gamma': 1.4, }, 'cloud_mask': 'mask_l8_sr', - 'start_date': '2013-04-01', + 'start_date': '2021-10-31', 'end_date': None # to present }, - 'ndvi': { - 'display': '8-day Normalized Difference Vegetation (NDVI)', - 'collection': 'LANDSAT/LC08/C01/T1_8DAY_NDVI', - 'index': 'NDVI', - 'vis_params': { - 'min': 0.0, - 'max': 1.0, - 'palette': [ - 'FFFFFF', 'CE7E45', 'DF923D', 'F1B555', 'FCD163', '99B718', '74A901', - '66A000', '529400', '3E8601', '207401', '056201', '004C00', '023B01', - '012E01', '011D01', '011301' - ], - }, - 'start_date': '2013-04-01', - 'end_date': None # to present - }, - 'ndsi': { - 'display': '8-day Normalized Difference Snow Index (NDSI)', - 'collection': 'LANDSAT/LC08/C01/T1_8DAY_NDSI', - 'index': 'NDSI', + 'toa': { + 'display': 'Top-of-Atmosphere(TOA) Reflectance', + 'collection': 'LANDSAT/LC09/C02/T1_TOA', + 'index': None, 'vis_params': { - 'palette': ['000088', '0000FF', '8888FF', 'FFFFFF'], + 'bands': ['B4', 'B3', 'B2'], + 'min': 0, + 'max': 3000, + 'gamma': 1.4, }, - 'start_date': '2013-04-01', + 'start_date': '2021-10-31', 'end_date': None # to present }, } } -} +} \ No newline at end of file diff --git a/tethysapp/earth_engine/helpers.py b/tethysapp/earth_engine/helpers.py index 6efd12e..f85f2da 100644 --- a/tethysapp/earth_engine/helpers.py +++ b/tethysapp/earth_engine/helpers.py @@ -48,4 +48,4 @@ def generate_figure(figure_title, time_series): } } - return figure + return figure \ No newline at end of file diff --git a/tethysapp/earth_engine/public/css/home.css b/tethysapp/earth_engine/public/css/home.css index bde0dd0..0644092 100644 --- a/tethysapp/earth_engine/public/css/home.css +++ b/tethysapp/earth_engine/public/css/home.css @@ -1,76 +1,75 @@ -#inner-app-content { - padding: 0; -} - .info-container { - background-color: #0000009f; - box-shadow: 3px 5px 3px rgba(0,0,0,0.35); - padding: 10px; - margin-bottom: 30px; + background-color: #0000009f; + box-shadow: 3px 5px 3px rgba(0,0,0,0.35); + padding: 10px; + margin-bottom: 30px; } .info-container .info-title { - color: #067ef5; - text-shadow: 2px 2px #000000; + color: #067ef5; + text-shadow: 2px 2px #000000; } .info-container p { - color: #eee; - text-shadow: 2px 2px #000000; - font-size: 16px; + color: #eee; + text-shadow: 2px 2px #000000; + font-size: 16px; } .info-container .media-body { - color: #eee; - text-shadow: 2px 2px #000000; + color: #eee; + text-shadow: 2px 2px #000000; } .info-container .media-object { - border-radius: 5px; + border-radius: 5px; } .info-container .media-heading { - color: #eee; - text-shadow: 2px 2px #000000; + color: #eee; + text-shadow: 2px 2px #000000; } #feature-image { - width: 100%; + width: 100%; } - #get-started-btn { - display: inline-block; - border-radius: 15px; - padding: 5px 10px; - background-color: #fff; - color: #044777; - border: solid 2px rgb(6, 126, 245); - text-transform: uppercase; - font-weight: 600; - align-items: center; - font-size: 14pt; - cursor: pointer; - width: fit-content; - text-decoration: none !important; - justify-content: center; - margin: 10px 0; + display: inline-block; + border-radius: 15px; + padding: 5px 10px; + background-color: #fff; + color: #044777; + border: solid 2px rgb(6, 126, 245); + text-transform: uppercase; + font-weight: 600; + align-items: center; + font-size: 14pt; + cursor: pointer; + width: fit-content; + text-decoration: none !important; + justify-content: center; + margin: 10px 0; } #get-started-btn:hover { - background-color: #eee; + background-color: #eee; } #get-started-btn:active, #get-started-btn:focus { - background-color: #044777; - color: white; + background-color: #044777; + color: white; } #home-content-container { - padding: 20px; - min-height: 100%; - background: url('/static/earth_engine/images/earth-engine-backdrop.png'); - background-color: #d2dadc; - background-position: center; - background-repeat: no-repeat + padding: 20px; + min-height: 100%; + background: url('/static/earth_engine/images/earth-engine-backdrop.png'); + background-color: #d2dadc; + background-position: center; + background-repeat: no-repeat +} + +#inner-app-content { + padding: 0; } \ No newline at end of file diff --git a/tethysapp/earth_engine/public/images/earth-engine-viewer.png b/tethysapp/earth_engine/public/images/earth-engine-viewer.png index 2d784ed..b897825 100644 Binary files a/tethysapp/earth_engine/public/images/earth-engine-viewer.png and b/tethysapp/earth_engine/public/images/earth-engine-viewer.png differ diff --git a/tethysapp/earth_engine/public/images/icon.gif b/tethysapp/earth_engine/public/images/icon.gif new file mode 100644 index 0000000..5c8236e Binary files /dev/null and b/tethysapp/earth_engine/public/images/icon.gif differ diff --git a/tethysapp/earth_engine/public/images/map-loader.gif b/tethysapp/earth_engine/public/images/map-loader.gif index 74da381..0ee0c73 100644 Binary files a/tethysapp/earth_engine/public/images/map-loader.gif and b/tethysapp/earth_engine/public/images/map-loader.gif differ diff --git a/tethysapp/earth_engine/public/js/gee_datasets.js b/tethysapp/earth_engine/public/js/gee_datasets.js index 4b717bd..bfa54f9 100644 --- a/tethysapp/earth_engine/public/js/gee_datasets.js +++ b/tethysapp/earth_engine/public/js/gee_datasets.js @@ -24,14 +24,13 @@ var GEE_DATASETS = (function() { // Map Variables var m_map, - m_gee_layer; + m_gee_layer; /************************************************************************ * PRIVATE FUNCTION DECLARATIONS *************************************************************************/ // Dataset Select Methods var bind_controls, update_product_options, update_sensor_options, update_date_bounds, collect_data; - // Map Methods var update_map, update_data_layer, create_data_layer, clear_map; @@ -45,7 +44,7 @@ var GEE_DATASETS = (function() { bind_controls = function() { $('#platform').on('change', function() { let platform = $('#platform').val(); - + if (platform !== m_platform) { m_platform = platform; console.log(`Platform Changed to: ${m_platform}`); @@ -53,10 +52,10 @@ var GEE_DATASETS = (function() { update_sensor_options(); } }); - + $('#sensor').on('change', function() { let sensor = $('#sensor').val(); - + if (sensor !== m_sensor) { m_sensor = sensor; console.log(`Sensor Changed to: ${m_sensor}`); @@ -64,10 +63,10 @@ var GEE_DATASETS = (function() { update_product_options(); } }); - + $('#product').on('change', function() { let product = $('#product').val(); - + if (product !== m_product) { m_product = product; console.log(`Product Changed to: ${m_product}`); @@ -75,34 +74,33 @@ var GEE_DATASETS = (function() { update_date_bounds(); } }); - + $('#start_date').on('change', function() { let start_date = $('#start_date').val(); - + if (start_date !== m_start_date) { m_start_date = start_date; console.log(`Start Date Changed to: ${m_start_date}`); } }); - + $('#end_date').on('change', function() { let end_date = $('#end_date').val(); - + if (end_date !== m_end_date) { m_end_date = end_date; console.log(`End Date Changed to: ${m_end_date}`); } }); - + $('#reducer').on('change', function() { let reducer = $('#reducer').val(); - + if (reducer !== m_reducer) { m_reducer = reducer; console.log(`Reducer Changed to: ${m_reducer}`); } }); - $('#load_map').on('click', function() { update_map(); }); @@ -209,12 +207,11 @@ var GEE_DATASETS = (function() { product: m_product, start_date: m_start_date, end_date: m_end_date, - reducer: m_reducer, + reducer: m_reducer, geometry: get_geometry() }; return data; }; - // Map Methods update_map = function() { let data = collect_data(); @@ -249,25 +246,25 @@ var GEE_DATASETS = (function() { url: url, attributions: 'Google Earth Engine' }); - + source.on('tileloadstart', function() { $('#loader').addClass('show'); }); - + source.on('tileloadend', function() { $('#loader').removeClass('show'); }); - + source.on('tileloaderror', function() { $('#loader').removeClass('show'); }); - + m_gee_layer = new ol.layer.Tile({ source: source, opacity: 0.7 }); - // Insert below the draw layer (so drawn polygons and points render on top of the data layer). + // Insert below the draw layer (so drawn polygons and points render on top of data layer). m_map.getLayers().insertAt(1, m_gee_layer); }; @@ -301,7 +298,7 @@ var GEE_DATASETS = (function() { '' ); $('#plot-modal').modal('show'); - }; + } /************************************************************************ * PUBLIC INTERFACE @@ -314,10 +311,10 @@ var GEE_DATASETS = (function() { $(function() { // Initialize Global Variables bind_controls(); - + // EE Products EE_PRODUCTS = $('#ee-products').data('ee-products'); - + // Initialize values m_platform = $('#platform').val(); m_sensor = $('#sensor').val(); @@ -325,7 +322,7 @@ var GEE_DATASETS = (function() { INITIAL_START_DATE = m_start_date = $('#start_date').val(); INITIAL_END_DATE = m_end_date = $('#end_date').val(); m_reducer = $('#reducer').val(); - + m_map = TETHYS_MAP_VIEW.getMap(); }); diff --git a/tethysapp/earth_engine/workspaces/app_workspace/.gitkeep b/tethysapp/earth_engine/resources/.gitkeep similarity index 100% rename from tethysapp/earth_engine/workspaces/app_workspace/.gitkeep rename to tethysapp/earth_engine/resources/.gitkeep diff --git a/tethysapp/earth_engine/templates/earth_engine/base.html b/tethysapp/earth_engine/templates/earth_engine/base.html index 2c1e6d2..e356a4f 100644 --- a/tethysapp/earth_engine/templates/earth_engine/base.html +++ b/tethysapp/earth_engine/templates/earth_engine/base.html @@ -1,6 +1,6 @@ {% extends "tethys_apps/app_base.html" %} -{% load static %} +{% load static tethys %} {% block title %}{{ tethys_app.name }}{% endblock %} @@ -33,10 +33,10 @@ {% block content_dependent_styles %} {{ block.super }} - + {% endblock %} {% block scripts %} {{ block.super }} - + {% endblock %} \ No newline at end of file diff --git a/tethysapp/earth_engine/templates/earth_engine/home.html b/tethysapp/earth_engine/templates/earth_engine/home.html index fee6615..96f0528 100644 --- a/tethysapp/earth_engine/templates/earth_engine/home.html +++ b/tethysapp/earth_engine/templates/earth_engine/home.html @@ -7,69 +7,68 @@ {% endblock %} {% block app_content %} -
-
-
-
-

About

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Eget est lorem ipsum dolor sit amet. Morbi tincidunt augue interdum velit euismod in pellentesque.

-

Ac felis donec et odio pellentesque. Quis ipsum suspendisse ultrices gravida dictum fusce ut. Curabitur gravida arcu ac tortor dignissim convallis aenean et tortor. Sed euismod nisi porta lorem mollis. Nisi scelerisque eu ultrices vitae. Sit amet consectetur adipiscing elit duis. At in tellus integer feugiat scelerisque varius morbi enim.

- -
-
-
-
-
-
-

Resources

-
-
- - coast - -
-
-

Lorem Ipsum Dolor

- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. -
+
+
+
+
+

About

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Eget est lorem ipsum dolor sit amet. Morbi tincidunt augue interdum velit euismod in pellentesque.

+

Ac felis donec et odio pellentesque. Quis ipsum suspendisse ultrices gravida dictum fusce ut. Curabitur gravida arcu ac tortor dignissim convallis aenean et tortor. Sed euismod nisi porta lorem mollis. Nisi scelerisque eu ultrices vitae. Sit amet consectetur adipiscing elit duis. At in tellus integer feugiat scelerisque varius morbi enim.

+
- -
-
- - condensation - -
-
-

Ut Enim Ad Minim

- Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. -
-
- -
-
- - waterfall - +
+
+
+
+
+

Resources

+
+
+ + coast + +
+
+

Lorem Ipsum Dolor

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. +
+
+
+
+ + condensation + +
+
+

Ut Enim Ad Minim

+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +
+
+ +
+
+ + waterfall + +
+
+

Duis Aute Irure

+ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. +
+
+
+
-
-

Duis Aute Irure

- Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. +
+
+
+

Get Started

+

Press the button below to launch the viewer

+ Launch Viewer +
+
-
-
-
-
-
-
-
-

Get Started

-

Press the button below to launch the viewer

- Launch Viewer -
-
-
{% endblock %} \ No newline at end of file diff --git a/tethysapp/earth_engine/templates/earth_engine/viewer.html b/tethysapp/earth_engine/templates/earth_engine/viewer.html index beafe70..19a955b 100644 --- a/tethysapp/earth_engine/templates/earth_engine/viewer.html +++ b/tethysapp/earth_engine/templates/earth_engine/viewer.html @@ -1,5 +1,5 @@ -{% extends "earth_engine/base.html" %} -{% load tethys_gizmos static %} +{% extends tethys_app.package|add:"/base.html" %} +{% load static tethys %} {% block import_gizmos %} {% import_gizmo_dependency plotly_view %} @@ -30,6 +30,18 @@ {% gizmo map_view %} {% endblock %} +{% block content_dependent_styles %} + {{ block.super }} + + + +{% endblock %} + +{% block scripts %} + {{ block.super }} + +{% endblock %} + {# Use the after_app_content block for modals #} {% block after_app_content %} @@ -51,16 +63,4 @@
-{% endblock %} - -{% block scripts %} - {{ block.super }} - -{% endblock %} - -{% block content_dependent_styles %} - {{ block.super }} - - - {% endblock %} \ No newline at end of file diff --git a/tethysapp/earth_engine/workspaces/user_workspaces/.gitkeep b/tethysapp/earth_engine/workspaces/user_workspaces/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/wms.xml b/wms.xml new file mode 100644 index 0000000..492c8ee --- /dev/null +++ b/wms.xml @@ -0,0 +1,10635 @@ + + + + + OGC:WMS + THREDDS Data Server + Scientific Data + + + + + + THREDDS Support + Unidata + + + support-thredds@unidata.ucar.edu + + none + none + + + + + application/vnd.ogc.wms_xml + + + + + + + + + + image/png + image/png;mode=32bit + image/gif + image/jpeg + application/vnd.google-earth.kmz + + + + + + + + + + text/plain + text/xml + text/html + + + + + + + + + + + application/vnd.ogc.wms_xml + + + THREDDS Data Server + EPSG:4326 + CRS:84 + EPSG:41001 + EPSG:27700 + EPSG:3408 + EPSG:3409 + EPSG:3857 + EPSG:5041 + EPSG:5042 + EPSG:32661 + EPSG:32761 + + No dataset title found. + + Vertical_Speed_Shear_potential_vorticity_surface + Vertical Speed Shear @ Potential vorticity surface + Vertical Speed Shear @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + Pressure_potential_vorticity_surface + Pressure @ Potential vorticity surface + Pressure @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + Temperature_potential_vorticity_surface + Temperature @ Potential vorticity surface + Temperature @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + Geopotential_height_potential_vorticity_surface + Geopotential height @ Potential vorticity surface + Geopotential height @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + Pressure_of_level_from_which_parcel_was_lifted_pressure_difference_layer + Pressure of level from which parcel was lifted @ Level at specified pressure difference from ground to level layer + Pressure of level from which parcel was lifted @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 12750.0 + + + + + + + + U-Component_Storm_Motion_height_above_ground_layer + U-Component Storm Motion @ Specified height level above ground layer + U-Component Storm Motion @ Specified height level above ground layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 3000.0 + + + + + + + + V-Component_Storm_Motion_height_above_ground_layer + V-Component Storm Motion @ Specified height level above ground layer + V-Component Storm Motion @ Specified height level above ground layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 3000.0 + + + + + + + + Apparent_temperature_height_above_ground + Apparent temperature @ Specified height level above ground + Apparent temperature @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 2.0 + + + + + + + + Relative_humidity_height_above_ground + Relative humidity @ Specified height level above ground + Relative humidity @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 2.0 + + + + + + + + Dewpoint_temperature_height_above_ground + Dewpoint temperature @ Specified height level above ground + Dewpoint temperature @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 2.0 + + + + + + + + Total_cloud_cover_entire_atmosphere_Mixed_intervals_Average + Total cloud cover (Mixed_intervals Average) @ Entire atmosphere + Total cloud cover (Mixed_intervals Average) @ Entire atmosphere + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Low_cloud_cover_low_cloud_Mixed_intervals_Average + Low cloud cover (Mixed_intervals Average) @ Low cloud layer + Low cloud cover (Mixed_intervals Average) @ Low cloud layer + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Temperature_high_cloud_top_Mixed_intervals_Average + Temperature (Mixed_intervals Average) @ High cloud top level + Temperature (Mixed_intervals Average) @ High cloud top level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Temperature_low_cloud_top_Mixed_intervals_Average + Temperature (Mixed_intervals Average) @ Low cloud top level + Temperature (Mixed_intervals Average) @ Low cloud top level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Temperature_middle_cloud_top_Mixed_intervals_Average + Temperature (Mixed_intervals Average) @ Middle cloud top level + Temperature (Mixed_intervals Average) @ Middle cloud top level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Precipitation_rate_surface_Mixed_intervals_Average + Precipitation rate (Mixed_intervals Average) @ Ground or water surface + Precipitation rate (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Albedo_surface_Mixed_intervals_Average + Albedo (Mixed_intervals Average) @ Ground or water surface + Albedo (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Latent_heat_net_flux_surface_Mixed_intervals_Average + Latent heat net flux (Mixed_intervals Average) @ Ground or water surface + Latent heat net flux (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Sensible_heat_net_flux_surface_Mixed_intervals_Average + Sensible heat net flux (Mixed_intervals Average) @ Ground or water surface + Sensible heat net flux (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Momentum_flux_u-component_surface_Mixed_intervals_Average + Momentum flux, u-component (Mixed_intervals Average) @ Ground or water surface + Momentum flux, u-component (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Momentum_flux_v-component_surface_Mixed_intervals_Average + Momentum flux, v-component (Mixed_intervals Average) @ Ground or water surface + Momentum flux, v-component (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Rain_surface_Mixed_intervals_Average + Categorical Rain (Mixed_intervals Average) @ Ground or water surface + Categorical Rain (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Ground_Heat_Flux_surface_Mixed_intervals_Average + Ground Heat Flux (Mixed_intervals Average) @ Ground or water surface + Ground Heat Flux (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Water_runoff_surface_Mixed_intervals_Accumulation + Water runoff (Mixed_intervals Accumulation) @ Ground or water surface + Water runoff (Mixed_intervals Accumulation) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_middle_cloud_bottom_Mixed_intervals_Average + Pressure (Mixed_intervals Average) @ Middle cloud bottom level + Pressure (Mixed_intervals Average) @ Middle cloud bottom level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_high_cloud_bottom_Mixed_intervals_Average + Pressure (Mixed_intervals Average) @ High cloud bottom level + Pressure (Mixed_intervals Average) @ High cloud bottom level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_low_cloud_bottom_Mixed_intervals_Average + Pressure (Mixed_intervals Average) @ Low cloud bottom level + Pressure (Mixed_intervals Average) @ Low cloud bottom level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_low_cloud_top_Mixed_intervals_Average + Pressure (Mixed_intervals Average) @ Low cloud top level + Pressure (Mixed_intervals Average) @ Low cloud top level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_high_cloud_top_Mixed_intervals_Average + Pressure (Mixed_intervals Average) @ High cloud top level + Pressure (Mixed_intervals Average) @ High cloud top level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_middle_cloud_top_Mixed_intervals_Average + Pressure (Mixed_intervals Average) @ Middle cloud top level + Pressure (Mixed_intervals Average) @ Middle cloud top level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Freezing_Rain_surface_Mixed_intervals_Average + Categorical Freezing Rain (Mixed_intervals Average) @ Ground or water surface + Categorical Freezing Rain (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Total_cloud_cover_boundary_layer_cloud_Mixed_intervals_Average + Total cloud cover (Mixed_intervals Average) @ Boundary layer cloud layer + Total cloud cover (Mixed_intervals Average) @ Boundary layer cloud layer + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Downward_Short-Wave_Radiation_Flux_surface_Mixed_intervals_Average + Downward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface + Downward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Cloud_Work_Function_entire_atmosphere_single_layer_Mixed_intervals_Average + Cloud Work Function (Mixed_intervals Average) @ Entire atmosphere layer + Cloud Work Function (Mixed_intervals Average) @ Entire atmosphere layer + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Ice_Pellets_surface_Mixed_intervals_Average + Categorical Ice Pellets (Mixed_intervals Average) @ Ground or water surface + Categorical Ice Pellets (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Meridional_Flux_of_Gravity_Wave_Stress_surface_Mixed_intervals_Average + Meridional Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface + Meridional Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Downward_Long-Wave_Radp_Flux_surface_Mixed_intervals_Average + Downward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface + Downward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Upward_Short-Wave_Radiation_Flux_surface_Mixed_intervals_Average + Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface + Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Upward_Short-Wave_Radiation_Flux_atmosphere_top_Mixed_intervals_Average + Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Nominal top of the atmosphere + Upward Short-Wave Radiation Flux (Mixed_intervals Average) @ Nominal top of the atmosphere + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Snow_surface_Mixed_intervals_Average + Categorical Snow (Mixed_intervals Average) @ Ground or water surface + Categorical Snow (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Zonal_Flux_of_Gravity_Wave_Stress_surface_Mixed_intervals_Average + Zonal Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface + Zonal Flux of Gravity Wave Stress (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Upward_Long-Wave_Radp_Flux_atmosphere_top_Mixed_intervals_Average + Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Nominal top of the atmosphere + Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Nominal top of the atmosphere + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Upward_Long-Wave_Radp_Flux_surface_Mixed_intervals_Average + Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface + Upward Long-Wave Rad. Flux (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Convective_Precipitation_Rate_surface_Mixed_intervals_Average + Convective Precipitation Rate (Mixed_intervals Average) @ Ground or water surface + Convective Precipitation Rate (Mixed_intervals Average) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + High_cloud_cover_high_cloud_Mixed_intervals_Average + High cloud cover (Mixed_intervals Average) @ High cloud layer + High cloud cover (Mixed_intervals Average) @ High cloud layer + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Medium_cloud_cover_middle_cloud_Mixed_intervals_Average + Medium cloud cover (Mixed_intervals Average) @ Middle cloud layer + Medium cloud cover (Mixed_intervals Average) @ Middle cloud layer + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Temperature_height_above_ground + Temperature @ Specified height level above ground + Temperature @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 2.0, + 80.0, + 100.0 + + + + + + + + Temperature_sigma + Temperature @ Sigma level + Temperature @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + Relative_humidity_sigma + Relative humidity @ Sigma level + Relative humidity @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + Potential_temperature_sigma + Potential temperature @ Sigma level + Potential temperature @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + Vertical_velocity_pressure_sigma + Vertical velocity (pressure) @ Sigma level + Vertical velocity (pressure) @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + Reflectivity_hybrid + Reflectivity @ Hybrid level + Reflectivity @ Hybrid level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0 + + + + + + + + Pressure_height_above_ground + Pressure @ Specified height level above ground + Pressure @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 80.0 + + + + + + + + Relative_humidity_sigma_layer + Relative humidity @ Sigma level layer + Relative humidity @ Sigma level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.5800000429153442, + 0.6650000214576721, + 0.7200000286102295, + 0.8300000429153442 + + + + + + + + Maximum_temperature_height_above_ground_Mixed_intervals_Maximum + Maximum temperature (Mixed_intervals Maximum) @ Specified height level above ground + Maximum temperature (Mixed_intervals Maximum) @ Specified height level above ground + + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 2.0 + + + + + + + + Minimum_temperature_height_above_ground_Mixed_intervals_Minimum + Minimum temperature (Mixed_intervals Minimum) @ Specified height level above ground + Minimum temperature (Mixed_intervals Minimum) @ Specified height level above ground + + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 2.0 + + + + + + + + Reflectivity_height_above_ground + Reflectivity @ Specified height level above ground + Reflectivity @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1000.0, + 4000.0 + + + + + + + + Cloud_mixing_ratio_hybrid + Cloud mixing ratio @ Hybrid level + Cloud mixing ratio @ Hybrid level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0 + + + + + + + + Ice_water_mixing_ratio_hybrid + Ice water mixing ratio @ Hybrid level + Ice water mixing ratio @ Hybrid level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0 + + + + + + + + Rain_mixing_ratio_hybrid + Rain mixing ratio @ Hybrid level + Rain mixing ratio @ Hybrid level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0 + + + + + + + + Snow_mixing_ratio_hybrid + Snow mixing ratio @ Hybrid level + Snow mixing ratio @ Hybrid level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0 + + + + + + + + Graupel_snow_pellets_hybrid + Graupel (snow pellets) @ Hybrid level + Graupel (snow pellets) @ Hybrid level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0 + + + + + + + + Storm_relative_helicity_height_above_ground_layer + Storm relative helicity @ Specified height level above ground layer + Storm relative helicity @ Specified height level above ground layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + Total_ozone_entire_atmosphere_single_layer + Total ozone @ Entire atmosphere layer + Total ozone @ Entire atmosphere layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Surface_Lifted_Index_surface + Surface Lifted Index @ Ground or water surface + Surface Lifted Index @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Vertical_Speed_Shear_tropopause + Vertical Speed Shear @ Tropopause + Vertical Speed Shear @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Ventilation_Rate_planetary_boundary + Ventilation Rate @ Planetary Boundary Layer + Ventilation Rate @ Planetary Boundary Layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + MSLP_Eta_model_reduction_msl + MSLP (Eta model reduction) @ Mean sea level + MSLP (Eta model reduction) @ Mean sea level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Wind_speed_gust_surface + Wind speed (gust) @ Ground or water surface + Wind speed (gust) @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Rain_surface + Categorical Rain @ Ground or water surface + Categorical Rain @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Land_cover_0__sea_1__land_surface + Land cover (0 = sea, 1 = land) @ Ground or water surface + Land cover (0 = sea, 1 = land) @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Ice_cover_surface + Ice cover @ Ground or water surface + Ice cover @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_surface + Pressure @ Ground or water surface + Pressure @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Soil_type_surface + Soil type @ Ground or water surface + Soil type @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Temperature_surface + Temperature @ Ground or water surface + Temperature @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Visibility_surface + Visibility @ Ground or water surface + Visibility @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Ice_thickness_surface + Ice thickness @ Ground or water surface + Ice thickness @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Surface_roughness_surface + Surface roughness @ Ground or water surface + Surface roughness @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Haines_index_surface + Haines index @ Ground or water surface + Haines index @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Vegetation_surface + Vegetation @ Ground or water surface + Vegetation @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Geopotential_height_surface + Geopotential height @ Ground or water surface + Geopotential height @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Convective_available_potential_energy_surface + Convective available potential energy @ Ground or water surface + Convective available potential energy @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Convective_inhibition_surface + Convective inhibition @ Ground or water surface + Convective inhibition @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Precipitation_rate_surface + Precipitation rate @ Ground or water surface + Precipitation rate @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Ice_temperature_surface + Ice temperature @ Ground or water surface + Ice temperature @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Snow_depth_surface + Snow depth @ Ground or water surface + Snow depth @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Water_equivalent_of_accumulated_snow_depth_surface + Water equivalent of accumulated snow depth @ Ground or water surface + Water equivalent of accumulated snow depth @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Sunshine_Duration_surface + Sunshine Duration @ Ground or water surface + Sunshine Duration @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Best_4_layer_Lifted_Index_surface + Best (4 layer) Lifted Index @ Ground or water surface + Best (4 layer) Lifted Index @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Relative_humidity_entire_atmosphere_single_layer + Relative humidity @ Entire atmosphere layer + Relative humidity @ Entire atmosphere layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Relative_humidity_highest_tropospheric_freezing + Relative humidity @ Highest tropospheric freezing level + Relative humidity @ Highest tropospheric freezing level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Freezing_Rain_surface + Categorical Freezing Rain @ Ground or water surface + Categorical Freezing Rain @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Wilting_Point_surface + Wilting Point @ Ground or water surface + Wilting Point @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Per_cent_frozen_precipitation_surface + Per cent frozen precipitation @ Ground or water surface + Per cent frozen precipitation @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Relative_humidity_zeroDegC_isotherm + Relative humidity @ Level of 0 °C isotherm + Relative humidity @ Level of 0 °C isotherm + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Geopotential_height_zeroDegC_isotherm + Geopotential height @ Level of 0 °C isotherm + Geopotential height @ Level of 0 °C isotherm + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Ice_Pellets_surface + Categorical Ice Pellets @ Ground or water surface + Categorical Ice Pellets @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_reduced_to_MSL_msl + Pressure reduced to MSL @ Mean sea level + Pressure reduced to MSL @ Mean sea level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_maximum_wind + Pressure @ Maximum wind level + Pressure @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Temperature_maximum_wind + Temperature @ Maximum wind level + Temperature @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + ICAO_Standard_Atmosphere_Reference_Height_maximum_wind + ICAO Standard Atmosphere Reference Height @ Maximum wind level + ICAO Standard Atmosphere Reference Height @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Low_cloud_cover_low_cloud + Low cloud cover @ Low cloud layer + Low cloud cover @ Low cloud layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Geopotential_height_maximum_wind + Geopotential height @ Maximum wind level + Geopotential height @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Field_Capacity_surface + Field Capacity @ Ground or water surface + Field Capacity @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Precipitable_water_entire_atmosphere_single_layer + Precipitable water @ Entire atmosphere layer + Precipitable water @ Entire atmosphere layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Categorical_Snow_surface + Categorical Snow @ Ground or water surface + Categorical Snow @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_tropopause + Pressure @ Tropopause + Pressure @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Temperature_tropopause + Temperature @ Tropopause + Temperature @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + ICAO_Standard_Atmosphere_Reference_Height_tropopause + ICAO Standard Atmosphere Reference Height @ Tropopause + ICAO Standard Atmosphere Reference Height @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Geopotential_height_tropopause + Geopotential height @ Tropopause + Geopotential height @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Medium_cloud_cover_middle_cloud + Medium cloud cover @ Middle cloud layer + Medium cloud cover @ Middle cloud layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Planetary_Boundary_Layer_Height_surface + Planetary Boundary Layer Height @ Ground or water surface + Planetary Boundary Layer Height @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Plant_Canopy_Surface_Water_surface + Plant Canopy Surface Water @ Ground or water surface + Plant Canopy Surface Water @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Composite_reflectivity_entire_atmosphere + Composite reflectivity @ Entire atmosphere + Composite reflectivity @ Entire atmosphere + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Total_cloud_cover_entire_atmosphere + Total cloud cover @ Entire atmosphere + Total cloud cover @ Entire atmosphere + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + High_cloud_cover_high_cloud + High cloud cover @ High cloud layer + High cloud cover @ High cloud layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Geopotential_height_cloud_ceiling + Geopotential height @ Cloud ceiling + Geopotential height @ Cloud ceiling + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Geopotential_height_highest_tropospheric_freezing + Geopotential height @ Highest tropospheric freezing level + Geopotential height @ Highest tropospheric freezing level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Frictional_Velocity_surface + Frictional Velocity @ Ground or water surface + Frictional Velocity @ Ground or water surface + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Cloud_water_entire_atmosphere_single_layer + Cloud water @ Entire atmosphere layer + Cloud water @ Entire atmosphere layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Specific_humidity_pressure_difference_layer + Specific humidity @ Level at specified pressure difference from ground to level layer + Specific humidity @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + Temperature_pressure_difference_layer + Temperature @ Level at specified pressure difference from ground to level layer + Temperature @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + Relative_humidity_pressure_difference_layer + Relative humidity @ Level at specified pressure difference from ground to level layer + Relative humidity @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + Ice_growth_rate_altitude_above_msl + Ice growth rate @ Specific altitude above mean sea level + Ice growth rate @ Specific altitude above mean sea level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 10.0 + + + + + + + + Temperature_altitude_above_msl + Temperature @ Specific altitude above mean sea level + Temperature @ Specific altitude above mean sea level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1829.0, + 2743.0, + 3658.0 + + + + + + + + Ozone_Mixing_Ratio_isobaric + Ozone Mixing Ratio @ Isobaric surface + Ozone Mixing Ratio @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Specific_humidity_isobaric + Specific humidity @ Isobaric surface + Specific humidity @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Temperature_isobaric + Temperature @ Isobaric surface + Temperature @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Relative_humidity_isobaric + Relative humidity @ Isobaric surface + Relative humidity @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Geopotential_height_isobaric + Geopotential height @ Isobaric surface + Geopotential height @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Vertical_velocity_pressure_isobaric + Vertical velocity (pressure) @ Isobaric surface + Vertical velocity (pressure) @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Vertical_velocity_geometric_isobaric + Vertical velocity (geometric) @ Isobaric surface + Vertical velocity (geometric) @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Absolute_vorticity_isobaric + Absolute vorticity @ Isobaric surface + Absolute vorticity @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Pressure_convective_cloud_bottom + Pressure @ Convective cloud bottom level + Pressure @ Convective cloud bottom level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Pressure_convective_cloud_top + Pressure @ Convective cloud top level + Pressure @ Convective cloud top level + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Potential_Evaporation_Rate_surface + Potential Evaporation Rate @ Ground or water surface + Potential Evaporation Rate @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Total_cloud_cover_convective_cloud + Total cloud cover @ Convective cloud layer + Total cloud cover @ Convective cloud layer + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Convective_precipitation_rate_surface + Convective precipitation rate @ Ground or water surface + Convective precipitation rate @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + Convective_available_potential_energy_pressure_difference_layer + Convective available potential energy @ Level at specified pressure difference from ground to level layer + Convective available potential energy @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 4500.0, + 9000.0, + 12750.0 + + + + + + + + Convective_inhibition_pressure_difference_layer + Convective inhibition @ Level at specified pressure difference from ground to level layer + Convective inhibition @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 4500.0, + 9000.0, + 12750.0 + + + + + + + + Total_cloud_cover_isobaric + Total cloud cover @ Isobaric surface + Total cloud cover @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 5000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Cloud_mixing_ratio_isobaric + Cloud mixing ratio @ Isobaric surface + Cloud mixing ratio @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 5000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Ice_water_mixing_ratio_isobaric + Ice water mixing ratio @ Isobaric surface + Ice water mixing ratio @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 5000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Rain_mixing_ratio_isobaric + Rain mixing ratio @ Isobaric surface + Rain mixing ratio @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 5000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Snow_mixing_ratio_isobaric + Snow mixing ratio @ Isobaric surface + Snow mixing ratio @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 5000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Graupel_snow_pellets_isobaric + Graupel (snow pellets) @ Isobaric surface + Graupel (snow pellets) @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 5000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + Specific_humidity_height_above_ground + Specific humidity @ Specified height level above ground + Specific humidity @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 2.0, + 80.0 + + + + + + + + Total_precipitation_surface_Mixed_intervals_Accumulation + Total precipitation (Mixed_intervals Accumulation) @ Ground or water surface + Total precipitation (Mixed_intervals Accumulation) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z,2024-06-13T06:00:00.000Z/2024-06-13T09:00:00.000Z/PT1H30M,2024-06-13T12:00:00.000Z/2024-06-13T15:00:00.000Z/PT1H30M,2024-06-13T18:00:00.000Z/2024-06-13T21:00:00.000Z/PT1H30M,2024-06-14T00:00:00.000Z/2024-06-14T03:00:00.000Z/PT1H30M,2024-06-14T06:00:00.000Z/2024-06-14T09:00:00.000Z/PT1H30M,2024-06-14T12:00:00.000Z/2024-06-14T15:00:00.000Z/PT1H30M,2024-06-14T18:00:00.000Z/2024-06-14T21:00:00.000Z/PT1H30M,2024-06-15T00:00:00.000Z/2024-06-15T03:00:00.000Z/PT1H30M,2024-06-15T06:00:00.000Z/2024-06-15T09:00:00.000Z/PT1H30M,2024-06-15T12:00:00.000Z/2024-06-15T15:00:00.000Z/PT1H30M,2024-06-15T18:00:00.000Z/2024-06-15T21:00:00.000Z/PT1H30M,2024-06-16T00:00:00.000Z/2024-06-16T03:00:00.000Z/PT1H30M,2024-06-16T06:00:00.000Z/2024-06-16T09:00:00.000Z/PT1H30M,2024-06-16T12:00:00.000Z/2024-06-16T15:00:00.000Z/PT1H30M,2024-06-16T18:00:00.000Z/2024-06-16T21:00:00.000Z/PT1H30M,2024-06-17T00:00:00.000Z/2024-06-17T03:00:00.000Z/PT1H30M,2024-06-17T06:00:00.000Z/2024-06-17T09:00:00.000Z/PT1H30M,2024-06-17T12:00:00.000Z/2024-06-17T15:00:00.000Z/PT1H30M,2024-06-17T18:00:00.000Z/2024-06-17T21:00:00.000Z/PT1H30M,2024-06-18T00:00:00.000Z/2024-06-18T03:00:00.000Z/PT1H30M,2024-06-18T06:00:00.000Z/2024-06-18T09:00:00.000Z/PT1H30M,2024-06-18T12:00:00.000Z/2024-06-18T15:00:00.000Z/PT1H30M,2024-06-18T18:00:00.000Z/2024-06-18T21:00:00.000Z/PT1H30M,2024-06-19T00:00:00.000Z/2024-06-19T03:00:00.000Z/PT1H30M,2024-06-19T06:00:00.000Z/2024-06-19T09:00:00.000Z/PT1H30M,2024-06-19T12:00:00.000Z/2024-06-19T15:00:00.000Z/PT1H30M,2024-06-19T18:00:00.000Z/2024-06-19T21:00:00.000Z/PT1H30M,2024-06-20T00:00:00.000Z/2024-06-20T03:00:00.000Z/PT1H30M,2024-06-20T06:00:00.000Z/2024-06-20T09:00:00.000Z/PT1H30M,2024-06-20T12:00:00.000Z/2024-06-20T15:00:00.000Z/PT1H30M,2024-06-20T18:00:00.000Z/2024-06-20T21:00:00.000Z/PT1H30M,2024-06-21T00:00:00.000Z/2024-06-21T03:00:00.000Z/PT1H30M,2024-06-21T06:00:00.000Z/2024-06-21T09:00:00.000Z/PT1H30M,2024-06-21T12:00:00.000Z/2024-06-21T15:00:00.000Z/PT1H30M,2024-06-21T18:00:00.000Z/2024-06-21T21:00:00.000Z/PT1H30M,2024-06-22T00:00:00.000Z/2024-06-22T03:00:00.000Z/PT1H30M,2024-06-22T06:00:00.000Z/2024-06-22T09:00:00.000Z/PT1H30M,2024-06-22T12:00:00.000Z/2024-06-22T15:00:00.000Z/PT1H30M,2024-06-22T18:00:00.000Z/2024-06-22T21:00:00.000Z/PT1H30M,2024-06-23T00:00:00.000Z/2024-06-23T03:00:00.000Z/PT1H30M,2024-06-23T06:00:00.000Z/2024-06-23T09:00:00.000Z/PT1H30M,2024-06-23T12:00:00.000Z/2024-06-23T15:00:00.000Z/PT1H30M,2024-06-23T18:00:00.000Z/2024-06-23T21:00:00.000Z/PT1H30M,2024-06-24T00:00:00.000Z/2024-06-24T03:00:00.000Z/PT1H30M,2024-06-24T06:00:00.000Z/2024-06-24T09:00:00.000Z/PT1H30M,2024-06-24T12:00:00.000Z/2024-06-24T15:00:00.000Z/PT1H30M,2024-06-24T18:00:00.000Z/2024-06-25T03:00:00.000Z/PT1H30M,2024-06-25T06:00:00.000Z/2024-06-25T21:00:00.000Z/PT1H30M,2024-06-26T00:00:00.000Z/2024-06-26T03:00:00.000Z/PT1H30M,2024-06-26T06:00:00.000Z/2024-06-26T09:00:00.000Z/PT1H30M,2024-06-26T12:00:00.000Z/2024-06-26T15:00:00.000Z/PT1H30M,2024-06-26T18:00:00.000Z/2024-06-26T21:00:00.000Z/PT1H30M,2024-06-27T00:00:00.000Z/2024-06-27T03:00:00.000Z/PT1H30M,2024-06-27T06:00:00.000Z/2024-06-27T15:00:00.000Z/PT1H30M,2024-06-27T18:00:00.000Z/2024-06-27T21:00:00.000Z/PT1H30M,2024-06-28T00:00:00.000Z/2024-06-28T03:00:00.000Z/PT1H30M,2024-06-28T06:00:00.000Z/2024-06-28T09:00:00.000Z/PT1H30M,2024-06-28T12:00:00.000Z/2024-06-28T15:00:00.000Z/PT1H30M,2024-06-28T18:00:00.000Z/2024-06-28T21:00:00.000Z/PT1H30M,2024-06-29T00:00:00.000Z/2024-06-29T03:00:00.000Z/PT1H30M,2024-06-29T06:00:00.000Z/2024-06-29T09:00:00.000Z/PT1H30M,2024-06-29T12:00:00.000Z/2024-06-29T15:00:00.000Z/PT1H30M,2024-06-29T18:00:00.000Z/2024-06-29T21:00:00.000Z/PT1H30M,2024-06-30T00:00:00.000Z/2024-06-30T03:00:00.000Z/PT1H30M,2024-06-30T06:00:00.000Z/2024-06-30T09:00:00.000Z/PT1H30M,2024-06-30T12:00:00.000Z/2024-06-30T15:00:00.000Z/PT1H30M,2024-06-30T18:00:00.000Z/2024-06-30T21:00:00.000Z/PT1H30M,2024-07-01T00:00:00.000Z/2024-07-01T03:00:00.000Z/PT1H30M,2024-07-01T06:00:00.000Z/2024-07-01T09:00:00.000Z/PT1H30M,2024-07-01T12:00:00.000Z/2024-07-01T15:00:00.000Z/PT1H30M,2024-07-01T18:00:00.000Z/2024-07-01T21:00:00.000Z/PT1H30M,2024-07-02T00:00:00.000Z/2024-07-02T03:00:00.000Z/PT1H30M,2024-07-02T06:00:00.000Z/2024-07-02T09:00:00.000Z/PT1H30M,2024-07-02T12:00:00.000Z/2024-07-02T15:00:00.000Z/PT1H30M,2024-07-02T18:00:00.000Z/2024-07-02T21:00:00.000Z/PT1H30M,2024-07-03T00:00:00.000Z/2024-07-03T03:00:00.000Z/PT1H30M,2024-07-03T06:00:00.000Z/2024-07-03T09:00:00.000Z/PT1H30M,2024-07-03T12:00:00.000Z/2024-07-03T15:00:00.000Z/PT1H30M,2024-07-03T18:00:00.000Z/2024-07-03T21:00:00.000Z/PT1H30M,2024-07-04T00:00:00.000Z/2024-07-04T03:00:00.000Z/PT1H30M,2024-07-04T06:00:00.000Z/2024-07-04T09:00:00.000Z/PT1H30M,2024-07-04T12:00:00.000Z/2024-07-04T15:00:00.000Z/PT1H30M,2024-07-04T18:00:00.000Z/2024-07-04T21:00:00.000Z/PT1H30M,2024-07-05T00:00:00.000Z/2024-07-05T03:00:00.000Z/PT1H30M,2024-07-05T06:00:00.000Z/2024-07-05T09:00:00.000Z/PT1H30M,2024-07-05T12:00:00.000Z/2024-07-05T15:00:00.000Z/PT1H30M,2024-07-05T18:00:00.000Z/2024-07-05T21:00:00.000Z/PT1H30M,2024-07-06T00:00:00.000Z/2024-07-06T03:00:00.000Z/PT1H30M,2024-07-06T06:00:00.000Z/2024-07-06T09:00:00.000Z/PT1H30M,2024-07-06T12:00:00.000Z/2024-07-06T15:00:00.000Z/PT1H30M,2024-07-06T18:00:00.000Z/2024-07-06T21:00:00.000Z/PT1H30M,2024-07-07T00:00:00.000Z/2024-07-07T03:00:00.000Z/PT1H30M,2024-07-07T06:00:00.000Z/2024-07-07T09:00:00.000Z/PT1H30M,2024-07-07T12:00:00.000Z/2024-07-07T15:00:00.000Z/PT1H30M,2024-07-07T18:00:00.000Z/2024-07-07T21:00:00.000Z/PT1H30M,2024-07-08T00:00:00.000Z/2024-07-08T03:00:00.000Z/PT1H30M,2024-07-08T06:00:00.000Z/2024-07-08T09:00:00.000Z/PT1H30M,2024-07-08T12:00:00.000Z/2024-07-08T15:00:00.000Z/PT1H30M,2024-07-08T18:00:00.000Z/2024-07-08T21:00:00.000Z/PT1H30M,2024-07-09T00:00:00.000Z/2024-07-09T03:00:00.000Z/PT1H30M,2024-07-09T06:00:00.000Z/2024-07-09T09:00:00.000Z/PT1H30M,2024-07-09T12:00:00.000Z/2024-07-09T15:00:00.000Z/PT1H30M,2024-07-09T18:00:00.000Z/2024-07-09T21:00:00.000Z/PT1H30M,2024-07-10T00:00:00.000Z/2024-07-10T03:00:00.000Z/PT1H30M,2024-07-10T06:00:00.000Z/2024-07-10T09:00:00.000Z/PT1H30M,2024-07-10T12:00:00.000Z/2024-07-10T15:00:00.000Z/PT1H30M,2024-07-10T18:00:00.000Z/2024-07-10T21:00:00.000Z/PT1H30M,2024-07-11T00:00:00.000Z/2024-07-11T03:00:00.000Z/PT1H30M,2024-07-11T06:00:00.000Z/2024-07-11T09:00:00.000Z/PT1H30M,2024-07-11T12:00:00.000Z/2024-07-11T15:00:00.000Z/PT1H30M,2024-07-11T18:00:00.000Z/2024-07-11T21:00:00.000Z/PT1H30M,2024-07-12T00:00:00.000Z/2024-07-12T03:00:00.000Z/PT1H30M,2024-07-12T06:00:00.000Z/2024-07-12T09:00:00.000Z/PT1H30M,2024-07-12T12:00:00.000Z/2024-07-12T15:00:00.000Z/PT1H30M,2024-07-12T18:00:00.000Z/2024-07-28T12:00:00.000Z/PT1H30M + + + + + + + + Convective_precipitation_surface_Mixed_intervals_Accumulation + Convective precipitation (Mixed_intervals Accumulation) @ Ground or water surface + Convective precipitation (Mixed_intervals Accumulation) @ Ground or water surface + + + + + + 2024-06-13T03:00:00.000Z,2024-06-13T06:00:00.000Z/2024-06-13T09:00:00.000Z/PT1H30M,2024-06-13T12:00:00.000Z/2024-06-13T15:00:00.000Z/PT1H30M,2024-06-13T18:00:00.000Z/2024-06-13T21:00:00.000Z/PT1H30M,2024-06-14T00:00:00.000Z/2024-06-14T03:00:00.000Z/PT1H30M,2024-06-14T06:00:00.000Z/2024-06-14T09:00:00.000Z/PT1H30M,2024-06-14T12:00:00.000Z/2024-06-14T15:00:00.000Z/PT1H30M,2024-06-14T18:00:00.000Z/2024-06-14T21:00:00.000Z/PT1H30M,2024-06-15T00:00:00.000Z/2024-06-15T03:00:00.000Z/PT1H30M,2024-06-15T06:00:00.000Z/2024-06-15T09:00:00.000Z/PT1H30M,2024-06-15T12:00:00.000Z/2024-06-15T15:00:00.000Z/PT1H30M,2024-06-15T18:00:00.000Z/2024-06-15T21:00:00.000Z/PT1H30M,2024-06-16T00:00:00.000Z/2024-06-16T03:00:00.000Z/PT1H30M,2024-06-16T06:00:00.000Z/2024-06-16T09:00:00.000Z/PT1H30M,2024-06-16T12:00:00.000Z/2024-06-16T15:00:00.000Z/PT1H30M,2024-06-16T18:00:00.000Z/2024-06-16T21:00:00.000Z/PT1H30M,2024-06-17T00:00:00.000Z/2024-06-17T03:00:00.000Z/PT1H30M,2024-06-17T06:00:00.000Z/2024-06-17T09:00:00.000Z/PT1H30M,2024-06-17T12:00:00.000Z/2024-06-17T15:00:00.000Z/PT1H30M,2024-06-17T18:00:00.000Z/2024-06-17T21:00:00.000Z/PT1H30M,2024-06-18T00:00:00.000Z/2024-06-18T03:00:00.000Z/PT1H30M,2024-06-18T06:00:00.000Z/2024-06-18T09:00:00.000Z/PT1H30M,2024-06-18T12:00:00.000Z/2024-06-18T15:00:00.000Z/PT1H30M,2024-06-18T18:00:00.000Z/2024-06-18T21:00:00.000Z/PT1H30M,2024-06-19T00:00:00.000Z/2024-06-19T03:00:00.000Z/PT1H30M,2024-06-19T06:00:00.000Z/2024-06-19T09:00:00.000Z/PT1H30M,2024-06-19T12:00:00.000Z/2024-06-19T15:00:00.000Z/PT1H30M,2024-06-19T18:00:00.000Z/2024-06-19T21:00:00.000Z/PT1H30M,2024-06-20T00:00:00.000Z/2024-06-20T03:00:00.000Z/PT1H30M,2024-06-20T06:00:00.000Z/2024-06-20T09:00:00.000Z/PT1H30M,2024-06-20T12:00:00.000Z/2024-06-20T15:00:00.000Z/PT1H30M,2024-06-20T18:00:00.000Z/2024-06-20T21:00:00.000Z/PT1H30M,2024-06-21T00:00:00.000Z/2024-06-21T03:00:00.000Z/PT1H30M,2024-06-21T06:00:00.000Z/2024-06-21T09:00:00.000Z/PT1H30M,2024-06-21T12:00:00.000Z/2024-06-21T15:00:00.000Z/PT1H30M,2024-06-21T18:00:00.000Z/2024-06-21T21:00:00.000Z/PT1H30M,2024-06-22T00:00:00.000Z/2024-06-22T03:00:00.000Z/PT1H30M,2024-06-22T06:00:00.000Z/2024-06-22T09:00:00.000Z/PT1H30M,2024-06-22T12:00:00.000Z/2024-06-22T15:00:00.000Z/PT1H30M,2024-06-22T18:00:00.000Z/2024-06-22T21:00:00.000Z/PT1H30M,2024-06-23T00:00:00.000Z/2024-06-23T03:00:00.000Z/PT1H30M,2024-06-23T06:00:00.000Z/2024-06-23T09:00:00.000Z/PT1H30M,2024-06-23T12:00:00.000Z/2024-06-23T15:00:00.000Z/PT1H30M,2024-06-23T18:00:00.000Z/2024-06-23T21:00:00.000Z/PT1H30M,2024-06-24T00:00:00.000Z/2024-06-24T03:00:00.000Z/PT1H30M,2024-06-24T06:00:00.000Z/2024-06-24T09:00:00.000Z/PT1H30M,2024-06-24T12:00:00.000Z/2024-06-24T15:00:00.000Z/PT1H30M,2024-06-24T18:00:00.000Z/2024-06-25T03:00:00.000Z/PT1H30M,2024-06-25T06:00:00.000Z/2024-06-25T21:00:00.000Z/PT1H30M,2024-06-26T00:00:00.000Z/2024-06-26T03:00:00.000Z/PT1H30M,2024-06-26T06:00:00.000Z/2024-06-26T09:00:00.000Z/PT1H30M,2024-06-26T12:00:00.000Z/2024-06-26T15:00:00.000Z/PT1H30M,2024-06-26T18:00:00.000Z/2024-06-26T21:00:00.000Z/PT1H30M,2024-06-27T00:00:00.000Z/2024-06-27T03:00:00.000Z/PT1H30M,2024-06-27T06:00:00.000Z/2024-06-27T15:00:00.000Z/PT1H30M,2024-06-27T18:00:00.000Z/2024-06-27T21:00:00.000Z/PT1H30M,2024-06-28T00:00:00.000Z/2024-06-28T03:00:00.000Z/PT1H30M,2024-06-28T06:00:00.000Z/2024-06-28T09:00:00.000Z/PT1H30M,2024-06-28T12:00:00.000Z/2024-06-28T15:00:00.000Z/PT1H30M,2024-06-28T18:00:00.000Z/2024-06-28T21:00:00.000Z/PT1H30M,2024-06-29T00:00:00.000Z/2024-06-29T03:00:00.000Z/PT1H30M,2024-06-29T06:00:00.000Z/2024-06-29T09:00:00.000Z/PT1H30M,2024-06-29T12:00:00.000Z/2024-06-29T15:00:00.000Z/PT1H30M,2024-06-29T18:00:00.000Z/2024-06-29T21:00:00.000Z/PT1H30M,2024-06-30T00:00:00.000Z/2024-06-30T03:00:00.000Z/PT1H30M,2024-06-30T06:00:00.000Z/2024-06-30T09:00:00.000Z/PT1H30M,2024-06-30T12:00:00.000Z/2024-06-30T15:00:00.000Z/PT1H30M,2024-06-30T18:00:00.000Z/2024-06-30T21:00:00.000Z/PT1H30M,2024-07-01T00:00:00.000Z/2024-07-01T03:00:00.000Z/PT1H30M,2024-07-01T06:00:00.000Z/2024-07-01T09:00:00.000Z/PT1H30M,2024-07-01T12:00:00.000Z/2024-07-01T15:00:00.000Z/PT1H30M,2024-07-01T18:00:00.000Z/2024-07-01T21:00:00.000Z/PT1H30M,2024-07-02T00:00:00.000Z/2024-07-02T03:00:00.000Z/PT1H30M,2024-07-02T06:00:00.000Z/2024-07-02T09:00:00.000Z/PT1H30M,2024-07-02T12:00:00.000Z/2024-07-02T15:00:00.000Z/PT1H30M,2024-07-02T18:00:00.000Z/2024-07-02T21:00:00.000Z/PT1H30M,2024-07-03T00:00:00.000Z/2024-07-03T03:00:00.000Z/PT1H30M,2024-07-03T06:00:00.000Z/2024-07-03T09:00:00.000Z/PT1H30M,2024-07-03T12:00:00.000Z/2024-07-03T15:00:00.000Z/PT1H30M,2024-07-03T18:00:00.000Z/2024-07-03T21:00:00.000Z/PT1H30M,2024-07-04T00:00:00.000Z/2024-07-04T03:00:00.000Z/PT1H30M,2024-07-04T06:00:00.000Z/2024-07-04T09:00:00.000Z/PT1H30M,2024-07-04T12:00:00.000Z/2024-07-04T15:00:00.000Z/PT1H30M,2024-07-04T18:00:00.000Z/2024-07-04T21:00:00.000Z/PT1H30M,2024-07-05T00:00:00.000Z/2024-07-05T03:00:00.000Z/PT1H30M,2024-07-05T06:00:00.000Z/2024-07-05T09:00:00.000Z/PT1H30M,2024-07-05T12:00:00.000Z/2024-07-05T15:00:00.000Z/PT1H30M,2024-07-05T18:00:00.000Z/2024-07-05T21:00:00.000Z/PT1H30M,2024-07-06T00:00:00.000Z/2024-07-06T03:00:00.000Z/PT1H30M,2024-07-06T06:00:00.000Z/2024-07-06T09:00:00.000Z/PT1H30M,2024-07-06T12:00:00.000Z/2024-07-06T15:00:00.000Z/PT1H30M,2024-07-06T18:00:00.000Z/2024-07-06T21:00:00.000Z/PT1H30M,2024-07-07T00:00:00.000Z/2024-07-07T03:00:00.000Z/PT1H30M,2024-07-07T06:00:00.000Z/2024-07-07T09:00:00.000Z/PT1H30M,2024-07-07T12:00:00.000Z/2024-07-07T15:00:00.000Z/PT1H30M,2024-07-07T18:00:00.000Z/2024-07-07T21:00:00.000Z/PT1H30M,2024-07-08T00:00:00.000Z/2024-07-08T03:00:00.000Z/PT1H30M,2024-07-08T06:00:00.000Z/2024-07-08T09:00:00.000Z/PT1H30M,2024-07-08T12:00:00.000Z/2024-07-08T15:00:00.000Z/PT1H30M,2024-07-08T18:00:00.000Z/2024-07-08T21:00:00.000Z/PT1H30M,2024-07-09T00:00:00.000Z/2024-07-09T03:00:00.000Z/PT1H30M,2024-07-09T06:00:00.000Z/2024-07-09T09:00:00.000Z/PT1H30M,2024-07-09T12:00:00.000Z/2024-07-09T15:00:00.000Z/PT1H30M,2024-07-09T18:00:00.000Z/2024-07-09T21:00:00.000Z/PT1H30M,2024-07-10T00:00:00.000Z/2024-07-10T03:00:00.000Z/PT1H30M,2024-07-10T06:00:00.000Z/2024-07-10T09:00:00.000Z/PT1H30M,2024-07-10T12:00:00.000Z/2024-07-10T15:00:00.000Z/PT1H30M,2024-07-10T18:00:00.000Z/2024-07-10T21:00:00.000Z/PT1H30M,2024-07-11T00:00:00.000Z/2024-07-11T03:00:00.000Z/PT1H30M,2024-07-11T06:00:00.000Z/2024-07-11T09:00:00.000Z/PT1H30M,2024-07-11T12:00:00.000Z/2024-07-11T15:00:00.000Z/PT1H30M,2024-07-11T18:00:00.000Z/2024-07-11T21:00:00.000Z/PT1H30M,2024-07-12T00:00:00.000Z/2024-07-12T03:00:00.000Z/PT1H30M,2024-07-12T06:00:00.000Z/2024-07-12T09:00:00.000Z/PT1H30M,2024-07-12T12:00:00.000Z/2024-07-12T15:00:00.000Z/PT1H30M,2024-07-12T18:00:00.000Z/2024-07-28T12:00:00.000Z/PT1H30M + + + + + + + + Liquid_Volumetric_Soil_Moisture_non_Frozen_depth_below_surface_layer + Liquid Volumetric Soil Moisture (non Frozen) @ Depth below land surface layer + Liquid Volumetric Soil Moisture (non Frozen) @ Depth below land surface layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.05000000074505806, + 0.25, + 0.699999988079071, + 1.5 + + + + + + + + Volumetric_Soil_Moisture_Content_depth_below_surface_layer + Volumetric Soil Moisture Content @ Depth below land surface layer + Volumetric Soil Moisture Content @ Depth below land surface layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.05000000074505806, + 0.25, + 0.699999988079071, + 1.5 + + + + + + + + Soil_temperature_depth_below_surface_layer + Soil temperature @ Depth below land surface layer + Soil temperature @ Depth below land surface layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.05000000074505806, + 0.25, + 0.699999988079071, + 1.5 + + + + + + + + of wind @ Isobaric surface + Vector fields for of wind @ Isobaric surface + + u-component_of_wind_isobaric:v-component_of_wind_isobaric-group + of wind @ Isobaric surface + Vector fields for of wind @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + + + + + + + + + + u-component_of_wind_isobaric:v-component_of_wind_isobaric-mag + Magnitude of of wind @ Isobaric surface + Magnitude of components: +u-component of wind @ Isobaric surface and +v-component of wind @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + u-component_of_wind_isobaric:v-component_of_wind_isobaric-dir + Direction of of wind @ Isobaric surface + Direction of components: +u-component of wind @ Isobaric surface and +v-component of wind @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + + + + + u-component_of_wind_isobaric + u-component of wind @ Isobaric surface + u-component of wind @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + v-component_of_wind_isobaric + v-component of wind @ Isobaric surface + v-component of wind @ Isobaric surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1.0, + 2.0, + 4.0, + 7.0, + 10.0, + 20.0, + 40.0, + 70.0, + 100.0, + 200.0, + 300.0, + 500.0, + 700.0, + 1000.0, + 1500.0, + 2000.0, + 3000.0, + 4000.0, + 5000.0, + 7000.0, + 10000.0, + 15000.0, + 20000.0, + 25000.0, + 30000.0, + 35000.0, + 40000.0, + 45000.0, + 50000.0, + 55000.0, + 60000.0, + 65000.0, + 70000.0, + 75000.0, + 80000.0, + 85000.0, + 90000.0, + 92500.0, + 95000.0, + 97500.0, + 100000.0 + + + + + + + + + of wind @ Level at specified pressure difference from ground to level layer + Vector fields for of wind @ Level at specified pressure difference from ground to level layer + + u-component_of_wind_pressure_difference_layer:v-component_of_wind_pressure_difference_layer-group + of wind @ Level at specified pressure difference from ground to level layer + Vector fields for of wind @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + + + + + + + + + + u-component_of_wind_pressure_difference_layer:v-component_of_wind_pressure_difference_layer-mag + Magnitude of of wind @ Level at specified pressure difference from ground to level layer + Magnitude of components: +u-component of wind @ Level at specified pressure difference from ground to level layer and +v-component of wind @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + u-component_of_wind_pressure_difference_layer:v-component_of_wind_pressure_difference_layer-dir + Direction of of wind @ Level at specified pressure difference from ground to level layer + Direction of components: +u-component of wind @ Level at specified pressure difference from ground to level layer and +v-component of wind @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + + + + + u-component_of_wind_pressure_difference_layer + u-component of wind @ Level at specified pressure difference from ground to level layer + u-component of wind @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + v-component_of_wind_pressure_difference_layer + v-component of wind @ Level at specified pressure difference from ground to level layer + v-component of wind @ Level at specified pressure difference from ground to level layer + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1500.0 + + + + + + + + + of wind @ Maximum wind level + Vector fields for of wind @ Maximum wind level + + u-component_of_wind_maximum_wind:v-component_of_wind_maximum_wind-group + of wind @ Maximum wind level + Vector fields for of wind @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + + + + + + + + + u-component_of_wind_maximum_wind:v-component_of_wind_maximum_wind-mag + Magnitude of of wind @ Maximum wind level + Magnitude of components: +u-component of wind @ Maximum wind level and +v-component of wind @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + u-component_of_wind_maximum_wind:v-component_of_wind_maximum_wind-dir + Direction of of wind @ Maximum wind level + Direction of components: +u-component of wind @ Maximum wind level and +v-component of wind @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + + + + u-component_of_wind_maximum_wind + u-component of wind @ Maximum wind level + u-component of wind @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + v-component_of_wind_maximum_wind + v-component of wind @ Maximum wind level + v-component of wind @ Maximum wind level + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + of wind @ Potential vorticity surface + Vector fields for of wind @ Potential vorticity surface + + u-component_of_wind_potential_vorticity_surface:v-component_of_wind_potential_vorticity_surface-group + of wind @ Potential vorticity surface + Vector fields for of wind @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + + + + + + + + + + u-component_of_wind_potential_vorticity_surface:v-component_of_wind_potential_vorticity_surface-mag + Magnitude of of wind @ Potential vorticity surface + Magnitude of components: +u-component of wind @ Potential vorticity surface and +v-component of wind @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + u-component_of_wind_potential_vorticity_surface:v-component_of_wind_potential_vorticity_surface-dir + Direction of of wind @ Potential vorticity surface + Direction of components: +u-component of wind @ Potential vorticity surface and +v-component of wind @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + + + + + u-component_of_wind_potential_vorticity_surface + u-component of wind @ Potential vorticity surface + u-component of wind @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + v-component_of_wind_potential_vorticity_surface + v-component of wind @ Potential vorticity surface + v-component of wind @ Potential vorticity surface + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + -1.9999999949504854E-6, + 1.9999999949504854E-6 + + + + + + + + + of wind @ Tropopause + Vector fields for of wind @ Tropopause + + u-component_of_wind_tropopause:v-component_of_wind_tropopause-group + of wind @ Tropopause + Vector fields for of wind @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + + + + + + + + + u-component_of_wind_tropopause:v-component_of_wind_tropopause-mag + Magnitude of of wind @ Tropopause + Magnitude of components: +u-component of wind @ Tropopause and +v-component of wind @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + u-component_of_wind_tropopause:v-component_of_wind_tropopause-dir + Direction of of wind @ Tropopause + Direction of components: +u-component of wind @ Tropopause and +v-component of wind @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + + + + u-component_of_wind_tropopause + u-component of wind @ Tropopause + u-component of wind @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + v-component_of_wind_tropopause + v-component of wind @ Tropopause + v-component of wind @ Tropopause + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + of wind @ Specific altitude above mean sea level + Vector fields for of wind @ Specific altitude above mean sea level + + u-component_of_wind_altitude_above_msl:v-component_of_wind_altitude_above_msl-group + of wind @ Specific altitude above mean sea level + Vector fields for of wind @ Specific altitude above mean sea level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1829.0, + 2743.0, + 3658.0 + + + + + + + + + + + + + + + + + u-component_of_wind_altitude_above_msl:v-component_of_wind_altitude_above_msl-mag + Magnitude of of wind @ Specific altitude above mean sea level + Magnitude of components: +u-component of wind @ Specific altitude above mean sea level and +v-component of wind @ Specific altitude above mean sea level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1829.0, + 2743.0, + 3658.0 + + + + + + + + u-component_of_wind_altitude_above_msl:v-component_of_wind_altitude_above_msl-dir + Direction of of wind @ Specific altitude above mean sea level + Direction of components: +u-component of wind @ Specific altitude above mean sea level and +v-component of wind @ Specific altitude above mean sea level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1829.0, + 2743.0, + 3658.0 + + + + + + + + + + + + u-component_of_wind_altitude_above_msl + u-component of wind @ Specific altitude above mean sea level + u-component of wind @ Specific altitude above mean sea level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1829.0, + 2743.0, + 3658.0 + + + + + + + + v-component_of_wind_altitude_above_msl + v-component of wind @ Specific altitude above mean sea level + v-component of wind @ Specific altitude above mean sea level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 1829.0, + 2743.0, + 3658.0 + + + + + + + + + of wind @ Specified height level above ground + Vector fields for of wind @ Specified height level above ground + + u-component_of_wind_height_above_ground:v-component_of_wind_height_above_ground-group + of wind @ Specified height level above ground + Vector fields for of wind @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 10.0, + 20.0, + 30.0, + 40.0, + 50.0, + 80.0, + 100.0 + + + + + + + + + + + + + + + + + u-component_of_wind_height_above_ground:v-component_of_wind_height_above_ground-mag + Magnitude of of wind @ Specified height level above ground + Magnitude of components: +u-component of wind @ Specified height level above ground and +v-component of wind @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 10.0, + 20.0, + 30.0, + 40.0, + 50.0, + 80.0, + 100.0 + + + + + + + + u-component_of_wind_height_above_ground:v-component_of_wind_height_above_ground-dir + Direction of of wind @ Specified height level above ground + Direction of components: +u-component of wind @ Specified height level above ground and +v-component of wind @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 10.0, + 20.0, + 30.0, + 40.0, + 50.0, + 80.0, + 100.0 + + + + + + + + + + + + u-component_of_wind_height_above_ground + u-component of wind @ Specified height level above ground + u-component of wind @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 10.0, + 20.0, + 30.0, + 40.0, + 50.0, + 80.0, + 100.0 + + + + + + + + v-component_of_wind_height_above_ground + v-component of wind @ Specified height level above ground + v-component of wind @ Specified height level above ground + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 10.0, + 20.0, + 30.0, + 40.0, + 50.0, + 80.0, + 100.0 + + + + + + + + + of wind @ Planetary Boundary Layer + Vector fields for of wind @ Planetary Boundary Layer + + u-component_of_wind_planetary_boundary:v-component_of_wind_planetary_boundary-group + of wind @ Planetary Boundary Layer + Vector fields for of wind @ Planetary Boundary Layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + + + + + + + + + u-component_of_wind_planetary_boundary:v-component_of_wind_planetary_boundary-mag + Magnitude of of wind @ Planetary Boundary Layer + Magnitude of components: +u-component of wind @ Planetary Boundary Layer and +v-component of wind @ Planetary Boundary Layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + u-component_of_wind_planetary_boundary:v-component_of_wind_planetary_boundary-dir + Direction of of wind @ Planetary Boundary Layer + Direction of components: +u-component of wind @ Planetary Boundary Layer and +v-component of wind @ Planetary Boundary Layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + + + + u-component_of_wind_planetary_boundary + u-component of wind @ Planetary Boundary Layer + u-component of wind @ Planetary Boundary Layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + v-component_of_wind_planetary_boundary + v-component of wind @ Planetary Boundary Layer + v-component of wind @ Planetary Boundary Layer + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + + + + + + + of wind @ Sigma level + Vector fields for of wind @ Sigma level + + u-component_of_wind_sigma:v-component_of_wind_sigma-group + of wind @ Sigma level + Vector fields for of wind @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + + + + + + + + + + u-component_of_wind_sigma:v-component_of_wind_sigma-mag + Magnitude of of wind @ Sigma level + Magnitude of components: +u-component of wind @ Sigma level and +v-component of wind @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + u-component_of_wind_sigma:v-component_of_wind_sigma-dir + Direction of of wind @ Sigma level + Direction of components: +u-component of wind @ Sigma level and +v-component of wind @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + + + + + u-component_of_wind_sigma + u-component of wind @ Sigma level + u-component of wind @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + v-component_of_wind_sigma + v-component of wind @ Sigma level + v-component of wind @ Sigma level + + + + + + + 2024-06-13T00:00:00.000Z/2024-07-28T12:00:00.000Z/PT3H + + + 0.9950000047683716 + + + + + + + + + + +