Sign In

@squawk/fix-data

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
This package has malicious versions linked to the ongoing "Mini Shai-Hulud" supply chain attack.

Affected versions:

0.6.40.6.50.6.6
+2 more
View campaign page

@squawk/fix-data

Pre-processed FAA NASR fix/waypoint snapshot for use with @squawk/fixes

Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
36
9.09%
Maintainers
1
Weekly downloads
 
Created
Source

@squawk/fix-data

Pre-processed snapshot of US fix/waypoint data derived from the FAA NASR 28-day subscription cycle. Data only - no query logic, no dependency on @squawk/fixes.

Documentation

Coverage

  • All non-CNF US named fixes and waypoints: waypoints, reporting points, VFR waypoints, NRS waypoints, military waypoints/reporting points, and radar fixes
  • Geographic coordinates (decimal degrees)
  • Usage category (WP, RP, VFR, NRS, MW, MR, RADAR)
  • ARTCC assignment (low and high altitude)
  • Compulsory reporting designation
  • Operational flags (pitch, catch, SUA/ATCAA)
  • Minimum reception altitude where published
  • Chart type associations (IAP, STAR, SID, ENROUTE, etc.)
  • Navaid associations with bearing and distance

Installation

npm install @squawk/fix-data

Usage

import { usBundledFixes } from '@squawk/fix-data';

// Inspect metadata
console.log(usBundledFixes.properties.nasrCycleDate); // "2026-01-22"
console.log(usBundledFixes.properties.recordCount);

// Use with @squawk/fixes for zero-config fix queries
import { createFixResolver } from '@squawk/fixes';

const resolver = createFixResolver({ data: usBundledFixes.records });

Consumers who have their own data pipeline can use @squawk/fixes alone and pass any compatible Fix array at initialization.

Data format

Each record is a full Fix object from @squawk/types. Key fields:

PropertyTypeDescription
identifierstringFix identifier (e.g. "MERIT", "BOSCO")
icaoRegionCodestringICAO region code (e.g. "K6", "K7")
lat, lonnumberDecimal degrees
state, countrystringTwo-letter codes
useCodeFixUseCodeWP, RP, VFR, NRS, MW, MR, or RADAR
highArtccIdstring or undefinedHigh-altitude ARTCC (e.g. "ZNY")
lowArtccIdstring or undefinedLow-altitude ARTCC
compulsoryFixCompulsory or undefinedHIGH, LOW, or LOW/HIGH
pitchbooleanPitch designation
catchbooleanCatch designation
suaAtcaabooleanSpecial Use Airspace / ATCAA association
minimumReceptionAltitudenumber or undefinedMRA in feet
chartTypesstring[]Charts the fix appears on (IAP, STAR, ENROUTE, etc.)
navaidAssociationsFixNavaidAssociation[]Bearing/distance from nearby navaids

Data source

All data is derived from the FAA National Airspace System Resource (NASR) 28-day subscription, which is public domain. Fix data comes from FIX_BASE.csv, FIX_CHRT.csv, and FIX_NAV.csv. The build pipeline that produces this dataset lives in scripts/build-fix-data/.

Keywords

aviation

FAQs

Package last updated on 12 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts