IBTrACS global best tracks
Available since v0.20.0 as noaa:ibtracs. The International Best Track
Archive for Climate Stewardship merges every agency's tropical cyclone best
tracks, from the NHC and JTWC to Tokyo, New Delhi, Réunion, and the Southern
Hemisphere centres, into one global record since 1842, and NCEI publishes it
as whole files under an anonymous HTTPS directory. There is no query
interface: no records API, no per-storm files in the current version, no
server-side subsetting. Like HURDAT2, the asset is one
whole file, and the value lives in the reader and in choosing the right file.
Selecting a file
subset is required and names one of the eleven files NCEI builds, matched
case-insensitively:
subset |
Holds | CSV size on 2026-09-17 |
|---|---|---|
all |
The complete record, every basin | 332 MB |
since1980 |
Every storm from the 1980 season on | 144 MB |
last3years |
The current season and the three before it | 10 MB |
active |
Storms active at the build | 122 KB |
na, ep, wp, ni, si, sp, sa |
One basin: North Atlantic, eastern North Pacific, western North Pacific, North Indian, South Indian, South Pacific, South Atlantic | 56 KB (sa) to 114 MB (wp) |
A basin file holds every storm that ever entered the basin, whole, so the
North Atlantic file also carries the EP and NI points of storms that
crossed over. format is csv (the default) or netcdf; the NetCDF file
holds the same fields as storm by date_time arrays, under a tenth the size
for the large subsets and larger than the CSV for the smallest, since every
storm gets the same 360 time slots. Shapefiles are published too but not offered, since no
reader opens them. version pins a product version directory such as
v04r00; by default the adapter lists the archive root and takes the newest.
Versions before v4 publish one NetCDF file per storm in a different layout and
are refused.
Any other parameter, a location or bbox, variables, and text queries are
rejected with an error rather than silently ignored, because none of them can
change which bytes are downloaded. Dates are rejected too: every file
holds the complete record for its subset, so a start/end pair would select
nothing. Choose since1980 or last3years when a period is what you want,
and filter the parsed ISO_TIME column locally. capabilities are all false.
Asset time bounds report the subset's definition, not its first and last
record: since1980 starts on 1980-01-01, last3years on 1 January three years
before the build, and the others at the archive's first record,
1842-10-25T03:00Z. The end is the file's build stamp from the directory
listing, read as UTC (it matched the Last-Modified header on 2026-09-17),
which every record in the file necessarily precedes. Should a listing ever
omit the stamp, the end is left open and last3years falls back to the
archive start.
Builds, versions, and lockfiles
IBTrACS differs from HURDAT2 in how it revises. A product version (v04r01
since 2024) is a directory that stays; inside it, NCEI rebuilds every file in
place, under the same name, whenever an agency delivers tracks, which the
change log
shows happening most months and the build stamps show happening most days.
Superseded builds are not kept upstream: the archive/ directory holds only
the current build's tarballs.
So a lockfile's checksum is what pins the bytes. A repeat usdata pull from a
lockfile downloads the pinned URL, finds different bytes, and stops with an
upstream-change error rather than quietly replacing the data. Pass
--update noaa:ibtracs to accept the current build, or --force to
re-resolve, which also moves to a newer product version once NCEI publishes
one. A plain fetch without a lockfile also notices a rebuild: the listing
reports the new file's size, and a cached copy of another size is fetched
again rather than served stale. A build that has been superseded cannot be fetched again from NCEI, so
keep the cache with the manifest and lockfile; a pinned example restores from
the mirror
instead. The complete filename is the stable asset ID, and the URL, original
bytes, exact listed size, and checksum are preserved.
Upstream revisions
Agencies revise files in place. A locked restore downloads each pinned URL
and fails with a checksum mismatch when the bytes have changed; accept the
new bytes for chosen entries with pull --update, or re-resolve the whole
manifest with pull --force. A lockfile detects changed data; it does not
archive it. Keep the cache with the manifest and lockfile. See
provenance and drift.
Opening the file
The CSV lays a units row under its header, as ERDDAP responses do, so
FetchedAsset.open() and open_csv() read a units row from noaa:ibtracs CSV
assets and keep the units in frame.attrs["units"] (kts, mb, nmile,
degrees_north; an empty string for text columns). Two conventions in the
file would otherwise mislead pandas, and the reader handles both: a missing
value is written as a single space, which is read as missing so that
measurement columns are numeric; and the North Atlantic basin code is the
literal NA, which pandas would read as missing by default and which here
stays text. The generic CSV options apply: parse_dates=["ISO_TIME"] parses
the naive UTC timestamps, and usecols trims the 174 columns.
The columns are: the storm's serial id, season, number, basin, sub-basin, and
name; ISO_TIME, NATURE, position, and the responsible WMO agency's wind,
pressure, and name; TRACK_TYPE, distance to land, landfall flag, and the
per-agency interpolation flags; then each agency's own report in its own
columns. The U.S. set (USA_LAT, USA_LON, USA_WIND, USA_PRES,
USA_SSHS, USA_STATUS, USA_RECORD, the 34, 50, and 64 kt wind radii by
quadrant, USA_RMW) is the most complete and is the one the catalog entry
describes; Tokyo, CMA, HKO, KMA, New Delhi, Réunion, BOM, Nadi, Wellington,
DS824, TD9636, TD9635, Neumann, and MLC follow, then gusts and sea-height
radii, and STORM_SPEED and STORM_DIR close the row. NCEI's
column documentation
defines each.
format: netcdf opens with the netcdf reader as an xarray Dataset of
storm by date_time arrays, with a quadrant axis for the wind radii, the
same lower-case variable names, and units the file states itself. Opening is
local either way: it never re-fetches or changes provenance, which is copied
into attrs["usdata"].
Scientific limits
IBTrACS is a merge, not a reanalysis. Each agency's values are reported in
that agency's own columns and conventions: the U.S. agencies give 1-minute
sustained winds, most others 10-minute means, so USA_WIND and TOKYO_WIND
are not comparable for the same storm, and WMO_WIND switches agency and
averaging period as a storm moves between areas of responsibility. Positions
are interpolated to three hours between the agencies' six-hourly points, and
IFLAG says which values are original.
Read TRACK_TYPE before comparing seasons. A storm is main once its
responsible agency has delivered a post-season best track; until then it is a
PROVISIONAL or US-PROVISIONAL operational track, which the agency revises.
In the file built on 2026-09-17, every 2023 and 2024 storm was main, 46 of
115 2025 storms were, and no 2026 storm was. Coverage before the satellite era
is uneven across basins in the same ways as HURDAT2, and worse where no
aircraft reconnaissance flew: counting storms per decade in the Indian Ocean
measures observing systems more than climate. A Southern Hemisphere SEASON
is the year it ends in: the 2025 South Indian season runs from late 2024.
The manifest example pulls the
last3years file and ranks the strongest recent storms with the provisional
tracks labelled. See the service research notes
for dated upstream probes.
Metadata sources
Every value in the catalog entry's resolution, cadence, citation, terms, variables, and limits comes from one of these pages. A field the agency does not publish is left empty rather than estimated.
- Resolution and variables: the files' own attributes (
geospatial_lat_resolution0.10,time_coverage_start1842-10-25T03:00) and the column documentation, with the three-hourly cadence measured in the North Atlantic file. - Updates: the v04r01 change log and the build stamps in the directory listings.
- Citation and terms: the product page,
which asks that the v04r01 dataset (Gahtan et al. 2024, doi:10.25921/82ty-9e16) and
Knapp et al. (2010) be cited, and the files'
licenseattribute, "These data may be redistributed and used without restriction." - Latency is empty: agencies deliver best tracks on their own schedules, from weeks to more than a year after a season.
Reference
noaa:ibtracs · Released · Included since usdata 0.20. IBTrACS Global Tropical Cyclone Tracks.
At a glance
- Files: CSV with a units row, NetCDF4
- Selection: One whole subset file per query, from the newest or a pinned product version
- Required inputs: Required subset; optional format and version; no dates or geographic filters
- Open locally:
usdata[pandas]· Reader guide - On usdata.dev: Global tropical cyclone best tracks, with a walkthrough
Parameters
Pass these as --param name=value to the CLI, as params: entries in a manifest, or as keyword arguments to build_query.
| Parameter | Meaning |
|---|---|
format |
File format: csv (default) or netcdf, case-insensitive. |
subset |
Required subset: all, active, last3years, since1980, or a basin (na, ep, wp, ni, si, sp, or sa), case-insensitive. |
version |
Product version such as v04r01; the newest published one by default. |
Variables
| Variable | Units | Meaning |
|---|---|---|
sid |
— | IBTrACS serial id, such as 2004086S29318; SID in the CSV |
season |
year | Season the storm is assigned to |
number |
— | Storm number within the season |
basin |
— | Basin at this point: NA, EP, WP, NI, SI, SP, or SA |
subbasin |
— | Sub-basin at this point, or MM when none applies |
name |
— | Storm name, or UNNAMED |
time |
UTC | Track-point time; ISO_TIME in the CSV |
nature |
— | Nature of the cyclone: TS, ET, SS, DS, NR, or MX |
lat |
degrees_north | Track-point latitude |
lon |
degrees_east | Track-point longitude in [-180, 180] |
wmo_wind |
knots | Maximum sustained wind from the responsible WMO agency, in that agency's averaging period |
wmo_pres |
millibars | Minimum central pressure from the responsible WMO agency |
wmo_agency |
— | The WMO agency responsible for the storm at this point |
track_type |
— | main, PROVISIONAL, or a spur track merged, split, or otherwise set aside |
dist2land |
km | Distance to land at this point |
landfall |
km | Minimum distance to land before the next point; 0 marks a landfall |
iflag |
— | One interpolation flag per agency: original, interpolated, or filled |
usa_wind |
knots | Maximum sustained 1-minute wind from the U.S. agency |
usa_pres |
millibars | Minimum central pressure from the U.S. agency |
usa_status |
— | U.S. agency status, such as TD, TS, HU, or EX |
usa_sshs |
— | Saffir-Simpson category from the U.S. wind; -5 to 5, with the negatives for non-hurricane statuses |
usa_rmw |
nautical miles | Radius of maximum wind from the U.S. agency |
usa_r34 |
nautical miles | 34 kt wind extent by quadrant; USA_R34_NE through USA_R34_NW in the CSV |
storm_speed |
knots | Storm translation speed |
storm_dir |
degrees | Storm translation direction |
Catalog facts
- Availability: since 0.20
- Domain: Tropical cyclones
- Spatial resolution: Positions to a tenth of a degree
- Temporal resolution: Three-hourly points, interpolated between the agencies' six-hourly best tracks
- Updates: Files are rebuilt in place as agencies deliver best tracks, stamped with the build date; the v04r01 change log records twenty-three additions and corrections between 2024-06-21 and 2026-07-31
- Terms of use: https://www.ncei.noaa.gov/products/international-best-track-archive
- Citation: Gahtan, J., K. R. Knapp, C. J. Schreck, H. J. Diamond, J. P. Kossin, and M. C. Kruk, 2024: International Best Track Archive for Climate Stewardship (IBTrACS) Project, Version 4r01. NOAA National Centers for Environmental Information, doi:10.25921/82ty-9e16. Knapp, K. R., M. C. Kruk, D. H. Levinson, H. J. Diamond, and C. J. Neumann, 2010: The International Best Track Archive for Climate Stewardship (IBTrACS). Bull. Amer. Meteor. Soc., 91, 363-376
- Catalog date range: 1842-10-25 to open-ended
- Coverage varies by station, product, and date; the range above does not guarantee observations.
- Upstream documentation
- License: US Government Work (public domain)
- Transport:
http - Adapter:
usdata.providers.noaa.ibtracs:Ibtracs