Reanalysis
Response format: 'json' for columnar JSON or 'arrow' for Apache Arrow
jsonPossible values: If true, stream the response as an Apache Arrow IPC stream. Overrides 'format' to 'arrow'.
falseMaximum credits allowed for this request. Query will fail if estimated cost exceeds this limit
50Query object for retrieving reanalysis data.
Reanalysis data uses a simple time dimension (unlike forecasts which have init_time + prediction_timedelta). This provides historical analysis data at specified timestamps.
Example:
python query = ReanalysisQuery( models=["arco_era5"], geo={"type": "point", "value": [(52.52, 13.405)]}, time={"start": "2024-01-01T00:00:00Z", "end": "2024-01-07T00:00:00Z"}, variables=["air_temperature_at_height_level_2m"], )
Time(s) to query. Can be 'latest', a single datetime, a list of datetimes, or a TimeSlice range.
latestList of dimensions to group by for aggregation (e.g., ['model', 'time']). Requires 'aggregation' to be specified.
List of dimensions to sort results by. Supports direction suffix: 'time__desc' for descending, 'time__asc' for ascending (default). Can also use object format: {'field': 'time', 'direction': 'desc'}
["model","time"]List of aggregation functions to apply when grouping (e.g., ['avg', 'std']). Requires 'group_by' to be specified
Optional weighting scheme for geographic aggregation (e.g., by wind/solar capacity or population)
{"type":"wind_capacity"}Include the time column in results (default: True)
trueIANA time zone name for time formatting (e.g., 'Europe/Berlin', 'America/New_York'). Defaults to UTC
UTCPagination parameters for limiting result size. Requires 'order_by' to be specified
{"limit":100,"offset":0}Whether the user passed the variables explicitly. If True, the variables will be used to filter the results. If False, all variables will be returned.
trueSuccessfully retrieved reanalysis data
Invalid query parameters
Authentication required
Insufficient credits
Insufficient permissions
Validation Error
Query object for retrieving reanalysis data.
Reanalysis data uses a simple time dimension (unlike forecasts which have init_time + prediction_timedelta). This provides historical analysis data at specified timestamps.
Example:
python query = ReanalysisQuery( models=["arco_era5"], geo={"type": "point", "value": [(52.52, 13.405)]}, time={"start": "2024-01-01T00:00:00Z", "end": "2024-01-07T00:00:00Z"}, variables=["air_temperature_at_height_level_2m"], )
Time(s) to query. Can be 'latest', a single datetime, a list of datetimes, or a TimeSlice range.
latestList of dimensions to group by for aggregation (e.g., ['model', 'time']). Requires 'aggregation' to be specified.
List of dimensions to sort results by. Supports direction suffix: 'time__desc' for descending, 'time__asc' for ascending (default). Can also use object format: {'field': 'time', 'direction': 'desc'}
["model","time"]List of aggregation functions to apply when grouping (e.g., ['avg', 'std']). Requires 'group_by' to be specified
Optional weighting scheme for geographic aggregation (e.g., by wind/solar capacity or population)
{"type":"wind_capacity"}Include the time column in results (default: True)
trueIANA time zone name for time formatting (e.g., 'Europe/Berlin', 'America/New_York'). Defaults to UTC
UTCPagination parameters for limiting result size. Requires 'order_by' to be specified
{"limit":100,"offset":0}Whether the user passed the variables explicitly. If True, the variables will be used to filter the results. If False, all variables will be returned.
trueSuccessfully calculated query cost
Invalid query parameters
Authentication required
Insufficient permissions
Validation Error
List of reanalysis models to check
["arco_era5"]Example: arco_era5Successfully retrieved latest timestamps
Authentication required
Validation Error
List of reanalysis models to check
["arco_era5"]Example: arco_era5Only return timestamps >= this time (inclusive)
Only return timestamps < this time (exclusive)
Maximum number of timestamps to return
100Successfully retrieved available timestamps
Authentication required
Validation Error
Last updated