Military Training Route point data containing geographic coordinates and associated NAVAID information for each route point
Ordered by ROUTE_TYPE_CODE, ROUTE_ID, ROUTE_PT_SEQ. However, the unique record key uses ROUTE_PT_ID instead of ROUTE_PT_SEQ. Sequence numbers are in multiples of ten.
# Introspect the MtrPt type in GraphiQL at https://api.nav.sortie.co/graphql
# Example shape (pair with a compatible root query field):
{
# ...rootQuery... {
effDate
routeTypeCode
routeId
artcc
# }
}Run at https://api.nav.sortie.co/graphql — GraphiQL is available in-browser.
| Field | Type | Description | Units | Enum |
|---|---|---|---|---|
| effDate ← EFF_DATE | String | The 28 Day NASR Subscription Effective Date in format YYYY/MM/DD | ||
| routeTypeCode ← ROUTE_TYPE_CODE | RouteTypeCode | MTR Type Code indicating whether the route is IFR or VFR |
| |
| routeId ← ROUTE_ID | String | Route Identifier. Along with ROUTE_TYPE_CODE creates a unique MTR identifier | ||
| artcc ← ARTCC | String | List of ARTCC Idents that the MTR traverses. Multiple ARTCCs separated by spaces when route crosses multiple centers | ||
| routePtSeq ← ROUTE_PT_SEQ | Int | Sequencing number in multiples of ten. Points are in order as adapted for the given MTR. Not used as part of unique key; see ROUTE_PT_ID | ||
| routePtId ← ROUTE_PT_ID | String | Route point identifier. Used as part of the unique record key instead of ROUTE_PT_SEQ | ||
| nextRoutePtId ← NEXT_ROUTE_PT_ID | String | The next sequential ROUTE_PT_ID following this point along the route | ||
| segmentText ← SEGMENT_TEXT | String | Concatenation of segment text preceded by the segment text sequence number, describing the segment between this point and the next | ||
| latDeg ← LAT_DEG | Int | MTR route point latitude degrees component | degrees | |
| latMin ← LAT_MIN | Int | MTR route point latitude minutes component | minutes | |
| latSec ← LAT_SEC | Float | MTR route point latitude seconds component | seconds | |
| latHemis ← LAT_HEMIS | LatHemis | MTR route point latitude hemisphere indicator |
| |
| latDecimal ← LAT_DECIMAL | Float | MTR route point latitude expressed in decimal degrees format | degrees | |
| longDeg ← LONG_DEG | Int | MTR route point longitude degrees component | degrees | |
| longMin ← LONG_MIN | Int | MTR route point longitude minutes component | minutes | |
| longSec ← LONG_SEC | Float | MTR route point longitude seconds component | seconds | |
| longHemis ← LONG_HEMIS | LongHemis | MTR route point longitude hemisphere indicator |
| |
| longDecimal ← LONG_DECIMAL | Float | MTR route point longitude expressed in decimal degrees format | degrees | |
| navId ← NAV_ID | String | Identifier of the related NAVAID associated with this route point | ||
| navaidBearing ← NAVAID_BEARING | Int | Bearing of the NAVAID from the route point | degrees | |
| navaidDist ← NAVAID_DIST | Int | Distance of the NAVAID from the route point | nautical miles |