Inventory
You can check the data availability for a specific weather station using the inventory method. This method retrieves information about the time range for which data is available at the specified station. Inventory data is both provider and parameter specific, allowing you to see exactly what data can be accessed.
🚀 Example
import meteostat as ms
STATION = '71624' # Toronto Pearson International Airport
# Get station inventory
inventory = ms.stations.inventory(STATION)
print(f"Data available from {inventory.start} to {inventory.end}.")
This is the output you would get, depending on when you run the code:
Data available from 1937-11-01 to 2025-12-31.