meteostat.Inventory
A weather station's data inventory.
- Type: Class
- Source Code: GitHub
The Inventory class represents the available data for a weather station across different parameters and date ranges. It is returned by meteostat.stations.inventory and provides information about which meteorological parameters are available and the time period covered by the data.
Properties
| Property | Description | Returns |
|---|---|---|
start | The earliest start date from the inventory. None if no data. | date or None |
end | The latest end date from the inventory. None if no data. | date or None |
parameters | List of available meteorological parameters. [] if no data. | List[Parameter] |
df | Internal DataFrame representation of the inventory. None if no data. | DataFrame or None |