Skip to main content

meteostat.normals

Get climate normals data for a specific station or location.

  • Type: Function
  • Source Code: GitHub

Parameters

ParameterDescriptionData TypeDefault Value
stationWeather station(s) or geographical point(s).str, Station, Point, List[str], List[Station], List[Point], DataFrameRequired
startStart year of the desired period.int1961
endEnd year of the desired period.int1990
parametersRequested meteorological parameters.List[Parameter]Default parameters
providersRequested data providers.List[Provider][Provider.MONTHLY]
max_missingMaximum number of missing monthly values.int3

Returns

TimeSeries

Example

# Import Meteostat library
import meteostat as ms

# Get climate normals data
ts = ms.normals(ms.Station(id='10637'), 1961, 1990)
df = ts.fetch()

# Print DataFrame
print(df)