WeatherNext 3 (0.05°)

projects/gcp-public-data-weathernext/assets/weathernext_3_0_0_0p05deg
info

This dataset is part of a Publisher Catalog, and not managed by Google Earth Engine. Contact weathernext@google.com for bugs or view more datasets from the WeatherNext Catalog. Learn more about Publisher datasets.

Catalog Owner
WeatherNext
Dataset Availability
2026-01-01T00:00:00Z–2026-09-03T09:00:00Z
Dataset Producer
Earth Engine Snippet
ee.ImageCollection("projects/gcp-public-data-weathernext/assets/weathernext_3_0_0_0p05deg")
Tags
climate flood forecast gcp-public-data-weathernext humidity precipitation publisher-dataset temperature weather weathernext wind

Description

WeatherNext 3 (0.05°) dataset is an experimental dataset of global medium-range ensemble weather forecasts by Google DeepMind and Google Research, produced by an operational version of the model described in: WeatherNext 3: Increasing resolution and performance of global weather models with raw observations.

Data Access

To request access to the experimental dataset, please submit the WeatherNext Data Request form.

Model Highlights

  • High resolution & rapid refresh: 0.05° (~5 km) global spatial resolution for some variables, native 1-hour forecast timesteps, hourly initialization, and lead times extending up to 15 days.
  • Real-time observational grounding: Integrates global geostationary satellite mosaics directly into model inputs, enabling rapid assimilation of current weather patterns.
  • Calibrated surface variables: Calibrated against ground weather station networks for surface temperature/dewpoint and satellite observations (IMERG) for precipitation.
  • Solar & energy-focused fields: Predicts multi-layer cloud cover and downward, direct, and clear-sky solar irradiance to support renewable energy and environmental modeling.

This Earth Engine collection provides ensemble summary statistics (mean and spread) derived from the operational WeatherNext 3 ensemble, optimized for geospatial analysis. It includes station head forecasts for 2m temperature and dew point across six precomputed statistical metrics -- specifically mean, p10, p25, p50, p75, and p90 (total of 12 bands).

Forecast Horizon:

  • 6-hour inits (00, 06, 12, 18 UTC): with a 360-hour (15-day) horizon.
  • Interim 1-hour inits (01-05, 07-11, 13-17, 19-23 UTC): with a 48-hour horizon.

Learn more about WeatherNext here. For access to the full ensemble dataset and atmospheric data, go to our Google Cloud Storage bucket.

Data Availability

The experimental dataset includes both real-time and historic data: * Real-Time Experimental Data: Any data relating to a time more recent than 1 hour ago. * Historic Experimental Data: Any data relating to a time 1 hour ago or older.

More information

  • Model guide and specifications: For more details on WeatherNext, including technical details and specifications, visit the WeatherNext Models Guide and the WeatherNext Developer Guide.
  • Research paper: More information on the underlying research model is available here. Please note that the accuracy of this operational model may not directly correspond to the accuracy reported for the research model, and that additional variables may be included in this forecast dataset.
  • Contact: For questions or usage outside permitted terms, contact weathernext@google.com. Any information collected via email will be used in accordance with Google's Privacy Policy.

Dissemination Schedule

For forecast release timing, expected delivery windows, and latency across platforms, see the WeatherNext Dissemination Schedule.

Acknowledgements

This experimental dataset was generated by a model using data and products of the European Centre for Medium-Range Weather Forecasts (ECMWF), as well as additional third-party providers. For a full list of attribution and acknowledgements, please see our acknowledgements page.

Bands

Bands

Pixel size: 5566 meters (all bands)

Name Units Pixel Size Description
station_head_dewpoint_temperature_2m_mean K 5566 meters

Mean of station head 2 metre dewpoint temperature

station_head_dewpoint_temperature_2m_p10 K 5566 meters

10th percentile of station head 2 metre dewpoint temperature

station_head_dewpoint_temperature_2m_p25 K 5566 meters

25th percentile of station head 2 metre dewpoint temperature

station_head_dewpoint_temperature_2m_p50 K 5566 meters

Median of station head 2 metre dewpoint temperature

station_head_dewpoint_temperature_2m_p75 K 5566 meters

75th percentile of station head 2 metre dewpoint temperature

station_head_dewpoint_temperature_2m_p90 K 5566 meters

90th percentile of station head 2 metre dewpoint temperature

station_head_temperature_2m_mean K 5566 meters

Mean of station head 2 metre temperature

station_head_temperature_2m_p10 K 5566 meters

10th percentile of station head 2 metre temperature

station_head_temperature_2m_p25 K 5566 meters

25th percentile of station head 2 metre temperature

station_head_temperature_2m_p50 K 5566 meters

Median of station head 2 metre temperature

station_head_temperature_2m_p75 K 5566 meters

75th percentile of station head 2 metre temperature

station_head_temperature_2m_p90 K 5566 meters

90th percentile of station head 2 metre temperature

Image Properties

Image Properties

Name Type Description
start_time STRING

The initialization time of the forecast. This is the same for all forecast hours within a single model run.

end_time STRING

The valid time for this specific forecast. Calculated as start_time + forecast_hour.

forecast_hour INT

The forecast lead time in hours. Represents the number of hours from the start_time (1 to 360 for 6-hourly inits, 1 to 48 for interim hourly inits).

ingestion_time_utc DOUBLE

The time when this forecast data became available in Earth Engine.

B_ STRING

The band names in the order, starting from B0 to B11.

Terms of Use

Terms of Use

The Historic Experimental Data is licensed under the Creative Commons Attribution International License, Version 4.0 (CC BY 4.0).

The Real-Time Experimental Data is made available under the following GDM Real-Time Weather Forecasting Experimental Data Terms of Use.

Third-party materials

Use of the third-party materials referred to in the Acknowledgements section may be governed by separate terms and conditions or license provisions. Your use of the third-party materials is subject to any such terms and you should check that you can comply with any applicable restrictions or terms and conditions before use.

Citations

Citations:

Explore with Earth Engine

Code Editor (JavaScript)

var dataset =
    ee.ImageCollection(
          'projects/gcp-public-data-weathernext/assets/weathernext_3_0_0_0p05deg')
        .filter(ee.Filter.date('2026-05-01T06:00:00Z', '2026-05-01T06:01:00Z'))
        .filter(ee.Filter.eq('forecast_hour', 6));
var temperature = dataset.select('station_head_temperature_2m_mean');

var visParams = {
  min: 220,
  max: 350,
  palette: [
    'darkblue', 'blue', 'cyan', 'green', 'yellow', 'orange', 'red', 'darkred'
  ]
};

Map.addLayer(temperature, visParams, 'Station Head 2m Temperature Mean');
Open in Code Editor