Skip to main content

Weather Stations

Weather stations are the primary source of meteorological data for Meteostat. The Meteostat Python library provides access to a comprehensive database of weather stations worldwide, allowing users to retrieve station metadata and search for stations based on various criteria.

info

All meteostat.stations.* methods are using the Meteostat weather stations SQLite database. While this database can be loaded into memory, it is recommended to use the default on-disk database for most applications to conserve system memory.

🚀 Example

You can easily retrieve metadata for a specific weather station using its unique identifier:

import meteostat as ms

station = ms.stations.meta('72503') # LaGuardia Airport

print(station)

Learn more about station metadata in the Meta Data chapter.

👀 Learn More