A Python package for manipulating and analyzing ISD data.
Project description
PyISD: A Python Package for NOAA's ISD Lite Dataset
PyISD is a Python package designed for loading and processing NOAA's ISD Lite dataset. The dataset, as described by NOAA, is a streamlined version of the full Integrated Surface Database (ISD). It includes eight common surface parameters in a fixed-width format, free of duplicate values, sub-hourly data, and complicated flags, making it suitable for general research and scientific purposes. For more details, visit the official ISD homepage.
Features
- Load and query the ISD Lite dataset with ease.
- Retrieve and process metadata for stations worldwide.
- Filter data based on spatial and temporal constraints.
Example Usage
1. Importing and Loading Metadata
You can start by importing the IsdLite
module, fetching metadata for weather stations worldwide and displaying a sample of the station metadata:
from pyisd import IsdLite
CRS = 4326
module = IsdLite(crs=CRS, verbose=True)
module.raw_metadata.sample(5)
The output displays station metadata including station name, latitude, longitude, elevation, and the period of available records:
USAF WBAN STATION NAME CTRY ST CALL LAT LON \
8480 377350 99999 GANDJA AJ NaN NaN 40.717 46.417
1023 027710 99999 JOUTSA LEIVONMAKI SAVEN FI NaN NaN 61.883 26.100
11880 545340 99999 TANGSHAN CH NaN NaN 39.650 118.100
3795 111900 99999 EISENSTADT AU NaN NaN 47.850 16.533
26693 957119 99999 WEST WYALONG AIRPORT AS NaN NaN -33.930 147.200
ELEV(M) BEGIN END x y geometry
8480 309.0 19320101 20241117 46.417 40.717 POINT (46.417 40.717)
1023 146.0 20080115 20241112 26.100 61.883 POINT (26.1 61.883)
11880 29.0 19560820 20241112 118.100 39.650 POINT (118.1 39.65)
3795 189.3 19730627 20241117 16.533 47.850 POINT (16.533 47.85)
26693 262.0 19651231 19840629 147.200 -33.930 POINT (147.2 -33.93)
2. Fetching and Visualizing Data
To retrieve data, you can specify the time period and spatial constraints. Here, we fetch temperature data (temp
) for the bounding box around Paris between January 1, 2023, and November 20, 2024:
from pyisd.misc import get_box
geometry = get_box(place='Paris', width=1., crs=CRS)
data = module.get_data(start=20230101, end=20241120, geometry=geometry, organize_by='field')
data['temp'].plot(figsize=(10, 4), legend=False, c='grey', lw=0.6)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file isd_fetch-0.1.0.tar.gz
.
File metadata
- Download URL: isd_fetch-0.1.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa12096b90661037249b5c3bdd2ea3fb9fd1a19edfbec4c924b1680d36f3e963 |
|
MD5 | 9060f0b6e2b171832f86b2295191907e |
|
BLAKE2b-256 | 147b028bad53d33157ea0dbf3377019c27ed4a4fc772d4906a6202f2c869ac36 |
File details
Details for the file isd_fetch-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: isd_fetch-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2e7850ab48e700b9b463eb49a63a1a6a047d04ef6d9fe65333067671a150510 |
|
MD5 | 433afdca4d97d917c43daa2f31ba4d51 |
|
BLAKE2b-256 | 9c9656c13eef169186a56816fa8adeac507ad7fb880faf7797f5769d20af8d86 |