✓ Live. Daily files are downloadable now — open to all, no account needed. Today's file is a partial-day preview; the complete day's file replaces it after the UTC day finalizes.

What you get

Each monthly release holds one zstd-compressed Parquet file per UTC day (aircraft_diffs_YYYY-MM-DD.parquet) of ADS-B aircraft state diffs. Per-file row counts and SHA-256 checksums are listed in the release notes.

How to get it

Load it

import duckdb
# read a specific day straight from GitHub — no download needed
duckdb.sql("SELECT * FROM read_parquet('https://github.com/Sky-Power-Services/adsbiq-data/releases/download/2026-06/aircraft_diffs_2026-06-29.parquet') LIMIT 10")

# or, after downloading the file
import pandas as pd
df = pd.read_parquet("aircraft_diffs_2026-06-29.parquet")

Details

Looking for VDL2/ACARS daily data? See vdliq.com/data ↗