datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
asos-metar-archive
ASOS METAR daily archive
Daily Parquet snapshots of raw METARs from ~920 NWS/FAA/DOD AOMC ASOS
stations, harvested from the live O.W.L. REST API at
consgicody/asos-tools.
File layout: YYYY/MM/DD.parquet — one file per UTC day.
Quick start (Python)
import pandas as pd
df = pd.read_parquet(
"hf://datasets/consgicody/asos-metar-archive/2026/09/09.parquet"
)
print(df[df["station"] == "JFK"].head())
Or query directly with DuckDB:
import duckdb
duckdb.sql("""… See the full description on the dataset page: https://huggingface.co/datasets/consgicody/asos-metar-archive.asos-stations
ASOS station catalog
The full Automated Surface Observing System station catalog used by the
O.W.L. project at https://github.com/consigcody94/asos-tools-py.
2,929 US ASOS sites across 50 states + DC + territories — ICAO id, IEM
id, name, state, lat/lon, elevation, network, online status, archive
date range.
Sourced from IEM's per-state GeoJSON network feeds.
Quick start (Python)
import pandas as pd
df =… See the full description on the dataset page: https://huggingface.co/datasets/consgicody/asos-stations.
