STATION

Stations are any Airport, Heliport, Seaplane Base, Gliderport, Weather Reporting Station, etc.

Stations are identified by a four-character alphanumeric ICAO Code


station/:icao

Returns the latest Station information for a one or more ICAO codes.

# Single ICAO
$ curl "https://api.checkwx.com/station/KJFK" -H "X-API-Key: "

# Multiple ICAOs
$ curl "https://api.checkwx.com/station/KJFK,KLAX,KMIA" -H "X-API-Key: "

URL Parameters Description
icao A single ICAO code or multiple ICAO codes seperated by commas.
Maximum of 20 ICAO codes per request.
Required

station/:icao/nearest

Returns the latest Station information nearest to a single ICAO code.

# Nearest Station to ICAO
$ curl "https://api.checkwx.com/station/KJFK/nearest" -H "X-API-Key: "

#  Nearest Station to ICAO with "Airport" only filter
$ curl "https://api.checkwx.com/station/KJFK/nearest/?filter=A" -H "X-API-Key: "

Additional postion fields are included in the decoded response data to show the distance and direction from the specified ICAO.

URL Parameters Description
icao A single ICAO code.
Multiple ICAO codes are not allowed for this endpoint.
Required
Querystring Parameters Description
filter Filter request by station type (A, H, G, S, W, O)
  • A = Airport
  • H = Heliport
  • G = Gliderport
  • S = Seaplane Base
  • W = Weather Station
  • O = Other
Optional

station/:icao/radius/:radius

Returns the latest Station information for stations within a specified radius of a single ICAO code.

# 50 mile radius from ICAO
$ curl "https://api.checkwx.com/station/KJFK/radius/50" -H "X-API-Key: "

#  50 mile radius from ICAO with "Airport" only filter
$ curl "https://api.checkwx.com/station/KJFK/radius/50/?filter=A" -H "X-API-Key: "

The results are sorted based on the distance from the requested ICAO code.

Additional postion fields are included in the decoded response data to show the distance and direction from the specified ICAO.

URL Parameters Description
icao A single ICAO code.
Multiple ICAO codes are not allowed for this endpoint.
Required
radius The surrounding radius in miles from the ICAO code.
250 miles is the maximum radius.
Required
Querystring Parameters Description
filter Filter request by station type (A, H, G, S, W, O)
  • A = Airport
  • H = Heliport
  • G = Gliderport
  • S = Seaplane Base
  • W = Weather Station
  • O = Other
Optional

station/lat/:latitude/lon/:longitude

Returns the latest Station information for a single station nearest to the latitude and longitude.

# Nearest ICAO to latitude/longitude
$ curl "https://api.checkwx.com/station/lat/40.72/lon/-73.99" -H "X-API-Key: "

# Nearest ICAO to latitude/longitude with "Airport" only filter
$ curl "https://api.checkwx.com/station/lat/40.72/lon/-73.99/?filter=A" -H "X-API-Key: "

Additional postion fields are included in the decoded response data to show the distance and direction from the specified ICAO.

URL Parameters Description
latitude The latitude in decimals Required
longitude The longitude in decimals Required
Querystring Parameters Description
filter Filter request by station type (A, H, G, S, W, O)
  • A = Airport
  • H = Heliport
  • G = Gliderport
  • S = Seaplane Base
  • W = Weather Station
  • O = Other
Optional

station/lat/:latitude/lon/:longitude/radius/:radius

Returns the latest Station information for multiple stations nearest to the latitude and longitude, within a given radius.

# Nearest stations to latitude/longitude within 10 miles
$ curl "https://api.checkwx.com/station/lat/40.72/lon/-73.99/radius/10" -H "X-API-Key: "

# Nearest stations to latitude/longitude within 10 miles with "Airport" only filter
$ curl "https://api.checkwx.com/station/lat/40.72/lon/-73.99/?filter=A" -H "X-API-Key: "

Additional postion fields are included in the decoded response data to show the distance and direction from the specified ICAO.

URL Parameters Description
latitude The latitude in decimals Required
longitude The longitude in decimals Required
radius The surrounding radius in miles from the ICAO code.
250 miles is the maximum radius.
Required
Querystring Parameters Description
filter Filter request by station type (A, H, G, S, W, O)
  • A = Airport
  • H = Heliport
  • G = Gliderport
  • S = Seaplane Base
  • W = Weather Station
  • O = Other
Optional

station/:icao/datetimes

Returns the latest Station datetime information for one or more ICAO codes.

# Single ICAO
$ curl "https://api.checkwx.com/station/KJFK/datetime" -H "X-API-Key: "

# Multiple ICAOs
$ curl "https://api.checkwx.com/station/KJFK,KLAX,KMIA/datetime" -H "X-API-Key: "

The data includes both local and UTC timezone formats, timezone ID, and offsets to GMT/DST, plus the current time.

URL Parameters Description
icao A single ICAO code or multiple ICAO codes seperated by commas.
Maximum of 20 ICAO codes per request.
Required

station/:icao/suntimes

Returns the latest Station sunrise/sunset and dawn/dusk times for one or more ICAO codes.

# Single ICAO
$ curl "https://api.checkwx.com/station/KJFK/datetime" -H "X-API-Key: "

# Multiple ICAOs
$ curl "https://api.checkwx.com/station/KJFK,KLAX,KMIA/datetime" -H "X-API-Key: "

The data includes both local and UTC dawn, dusk, runrise and sunset, plus the current time and timzone information.

URL Parameters Description
icao A single ICAO code or multiple ICAO codes seperated by commas.
Maximum of 20 ICAO codes per request.
Required



Station Fields

The following table lists the fields which are returned by all Station endpoints.

Note

Fields marked as Conditional will not be included in the JSON response data if no value exists for that field. Therefore your code should check for the existence of these fields before attempting to access the data value to avoid any errors.

Field Type Description Conditional
activated string Activated Month/Year Yes
city string City Yes
country object Object with two properties: Yes
country.code string Country code abbreviation ^
country.name string Country text name ^
elevation object Object with three properties: Yes
elevation.feet integer Elevation in feet ^
elevation.meters integer Elevation in meters ^
elevation.method string Method used to determine elevation: "Surveyed" or "Estimated" ^
geometry Object GeoJSON object with two properties: No
geometry.coordinates array GeoJSON array of coordinates [longitude, latitude] ^
geometry.type string GeoJSON object type: "POINT" ^
iata string IATA airport code Yes
icao string ICAO airport code or station indicator No
latitude object Object with two properties: No
latitude.decimal float Latitude in decimal degrees ^
latitude.degrees string Latitude in degrees, minutes, seconds ^
longitude object Object with two properties: No
longitude.decimal float Longitude in decimal degrees ^
longitude.degrees string Longitude in degrees, minutes, seconds ^
location string Full text location (City, Region, Country) No
magnetic_variation object Object with two properties: Yes
magnetic_variation.position string The angle between magnetic north and true north Yes
magnetic_variation.year string Year of last magnetic variation determination Yes
name string Airport or station name No
region object Object with two properties: No
region.code string Region abbreviation ^
region.name string Region text name ^
sectional string FAA Sectional chart displaying this station (US/Canada Only) Yes
state object Object with two properties: (US Only) No
state.code string State abbreviation ^
state.name string State text name ^
status string Status - "Operational" or "Closed" Yes
type string Type - "Airport", "Heliport", "Seaplane Base", etc. Yes
useage string Useage - "Public", "Private", "Military", etc. Yes

Position Fields

These addition fields are include in the response JSON for Nearest and Radius endpoints.

Field Type Description Condition
base string Base location ICAO Only included for ICAO requests
base.bearing object Object with two properties: All requests
base.bearing.from integer Bearing from base location (0-360) All requests
base.bearing.to integer Bearing to base location (0-360) All requests
base.latitude float Base location latitude decimals Only included for Lat/Lon requests
base.longitude float Base location longitude decimals Only included for Lat/Lon requests
base.miles float Distance from base location in miles All requests
base.meters float Distance from base location in meters All requests

DateTime Fields

The following table lists the fields which are returned by the Station DateTime endpoint.

Field Type Description
geometry Object GeoJSON object with two properties:
geometry.coordinates array GeoJSON array of coordinates [longitude, latitude]
geometry.type string GeoJSON object type: "POINT"
icao string ICAO airport code or station indicator
name string Airport or station name
timezone object Object with four properties:
timezone.dst signed integer Timezone offset subtracted or added to GMT time including DST
timezone.gmt signed integer Timezone offset subtracted or added to GMT time
timezone.tzid string Timezone id string
timezone.zone string Timezone text string
timestamp object Object with six properties
timestamp.local.current string Current local timestamp in ISO format
timestamp.local.date string Local Date YYYY-MM-DD
timestamp.local.time string Local Time HH:MM:SS
timestamp.utc.current string Current UTC timestamp in ISO format
timestamp.utc.date string UTC Date YYYY-MM-DD
timestamp.utc.time string UTC Time HH:MM:SS

Sunrise/Sunset Fields

The following table lists the fields which are returned by the Station Sunrise/Sunset endpoint.

Field Type Description
geometry Object GeoJSON object with two properties:
geometry.coordinates array GeoJSON array of coordinates [longitude, latitude]
geometry.type string GeoJSON object type: "POINT"
icao string ICAO airport code or station indicator
name string Airport or station name
sunrise_sunset object Object with two properties
sunrise_sunset.local object Object with six properties
sunrise_sunset.local.current string Current local timestamp in ISO format
sunrise_sunset.local.dawn string Dawn local HH:MM:SS
sunrise_sunset.local.dusk string Dusk local HH:MM:SS
sunrise_sunset.local.noon string Noon local HH:MM:SS
sunrise_sunset.local.sunrise string Sunrise local HH:MM:SS
sunrise_sunset.local.sunset string Sunset local HH:MM:SS
sunrise_sunset.utc object Object with six properties
sunrise_sunset.utc.current string Current UTC timestamp in ISO format
sunrise_sunset.utc.dawn string Dawn UTC HH:MM:SS
sunrise_sunset.utc.dusk string Dusk UTC HH:MM:SS
sunrise_sunset.utc.noon string Noon UTC HH:MM:SS
sunrise_sunset.utc.sunrise string Sunrise UTC HH:MM:SS
sunrise_sunset.utc.sunset string Sunset UTC HH:MM:SS
timezone object Object with four properties:
timezone.dst signed integer Timezone offset subtracted or added to GMT time including DST
timezone.gmt signed integer Timezone offset subtracted or added to GMT time
timezone.tzid string Timezone id string
timezone.zone string Timezone text string

Single ICAO

$ curl https://api.checkwx.com/station/kjfk
{
   "data": [
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 13,
            "meters": 4
         },
         "geometry": {
            "coordinates": [
               -73.779317,
               40.639447
            ],
            "type": "Point"
         },
         "iata": "JFK",
         "icao": "KJFK",
         "latitude": {
            "decimal": 40.639447,
            "degrees": "40\u00b0 38' 22.00\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.779317,
            "degrees": "73\u00b0 46' 45.54\" W"
         },
         "name": "John F Kennedy International Airport",
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Airport"
      }
   ],
   "results": 1
}

Multiple ICAOs

$ curl https://api.checkwx.com/station/kjfk,klax
{
   "data": [
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 13,
            "meters": 4
         },
         "geometry": {
            "coordinates": [
               -73.779317,
               40.639447
            ],
            "type": "Point"
         },
         "iata": "JFK",
         "icao": "KJFK",
         "latitude": {
            "decimal": 40.639447,
            "degrees": "40\u00b0 38' 22.00\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.779317,
            "degrees": "73\u00b0 46' 45.54\" W"
         },
         "name": "John F Kennedy International Airport",
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Airport"
      },
      {
         "city": "Los Angeles",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 125,
            "meters": 38
         },
         "geometry": {
            "coordinates": [
               -118.407997,
               33.942501
            ],
            "type": "Point"
         },
         "iata": "LAX",
         "icao": "KLAX",
         "latitude": {
            "decimal": 33.942501,
            "degrees": "33\u00b0 56' 33.00\" N"
         },
         "location": "Los Angeles, California, United States",
         "longitude": {
            "decimal": -118.407997,
            "degrees": "118\u00b0 24' 28.78\" W"
         },
         "name": "Los Angeles International Airport",
         "region": {
            "code": "CA",
            "name": "California"
         },
         "state": {
            "code": "CA",
            "name": "California"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0800",
            "name": "America/Los_Angeles",
            "offset_dst": "-07:00",
            "offset_std": "-08:00",
            "tzid": "America/Los_Angeles",
            "zone": "PST",
            "zone_dst": "PDT",
            "zone_std": "PST"
         },
         "type": "Airport"
      }
   ],
   "results": 2
}

Nearest

$ curl https://api.checkwx.com/station/kjfk/nearest
{
   "data": [
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "geometry": {
            "coordinates": [
               -73.781998,
               40.601601
            ],
            "type": "Point"
         },
         "icao": "US-0004",
         "latitude": {
            "decimal": 40.601601,
            "degrees": "40\u00b0 36' 5.763\" N"
         },
         "location": "New York, United States",
         "longitude": {
            "decimal": -73.781998,
            "degrees": "73\u00b0 46' 55.19\" W"
         },
         "name": "Rockaway Airport",
         "position": {
            "base": "KJFK",
            "bearing": {
               "from": 183,
               "to": 3
            },
            "meters": 4214.4,
            "miles": 2.3,
            "orientation": {
               "from": "S",
               "to": "N"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Closed",
         "timezone": {
            "dst": true,
            "gmt": "-0400",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EDT",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Airport"
      }
   ],
   "results": 1
}

Radius

$ curl https://api.checkwx.com/station/kjfk/radius/5
{
   "data": [
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "geometry": {
            "coordinates": [
               -73.781998,
               40.601601
            ],
            "type": "Point"
         },
         "icao": "US-0004",
         "latitude": {
            "decimal": 40.601601,
            "degrees": "40\u00b0 36' 5.763\" N"
         },
         "location": "New York, United States",
         "longitude": {
            "decimal": -73.781998,
            "degrees": "73\u00b0 46' 55.19\" W"
         },
         "name": "Rockaway Airport",
         "position": {
            "base": "KJFK",
            "bearing": {
               "from": 183,
               "to": 3
            },
            "meters": 4214.4,
            "miles": 2.3,
            "orientation": {
               "from": "S",
               "to": "N"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Closed",
         "timezone": {
            "dst": true,
            "gmt": "-0400",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EDT",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Airport"
      },
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "geometry": {
            "coordinates": [
               -73.780098,
               40.591801
            ],
            "type": "Point"
         },
         "icao": "15NY",
         "latitude": {
            "decimal": 40.591801,
            "degrees": "40\u00b0 35' 30.48\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.780098,
            "degrees": "73\u00b0 46' 48.35\" W"
         },
         "name": "Peninsula Hospital Center Heliport",
         "position": {
            "base": "KJFK",
            "bearing": {
               "from": 181,
               "to": 1
            },
            "meters": 5298.4,
            "miles": 2.9,
            "orientation": {
               "from": "S",
               "to": "N"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Heliport"
      },
      {
         "city": "Village of Valley Stream",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "geometry": {
            "coordinates": [
               -73.72193,
               40.6641
            ],
            "type": "Point"
         },
         "icao": "US-3183",
         "latitude": {
            "decimal": 40.6641,
            "degrees": "40\u00b0 39' 50.75\" N"
         },
         "location": "Village of Valley Stream, New York, United States",
         "longitude": {
            "decimal": -73.72193,
            "degrees": "73\u00b0 43' 18.94\" W"
         },
         "name": "Columbia Aircraft Factory Airfield",
         "position": {
            "base": "KJFK",
            "bearing": {
               "from": 61,
               "to": 241
            },
            "meters": 5563.5,
            "miles": 3.0,
            "orientation": {
               "from": "ENE",
               "to": "WSW"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Closed",
         "timezone": {
            "dst": true,
            "gmt": "-0400",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EDT",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Airport"
      },
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 15,
            "meters": 5
         },
         "geometry": {
            "coordinates": [
               -73.804604,
               40.705399
            ],
            "type": "Point"
         },
         "icao": "6NY5",
         "latitude": {
            "decimal": 40.705399,
            "degrees": "40\u00b0 42' 19.43\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.804604,
            "degrees": "73\u00b0 48' 16.57\" W"
         },
         "name": "Mary Immaculate Hospital Heliport",
         "position": {
            "base": "KJFK",
            "bearing": {
               "from": 344,
               "to": 164
            },
            "meters": 7637.3,
            "miles": 4.1,
            "orientation": {
               "from": "NNW",
               "to": "SSE"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Heliport"
      }
   ],
   "results": 4
}

Latitude/Longitude

$ curl https://api.checkwx.com/station/lat/40.72/lon/-73.99
{
   "data": [
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 244,
            "meters": 74
         },
         "geometry": {
            "coordinates": [
               -73.999603,
               40.712601
            ],
            "type": "Point"
         },
         "icao": "NK39",
         "latitude": {
            "decimal": 40.712601,
            "degrees": "40\u00b0 42' 45.36\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.999603,
            "degrees": "73\u00b0 59' 58.57\" W"
         },
         "name": "One Police Plaza Heliport",
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Heliport"
      }
   ],
   "results": 1
}

Latitude/Longitude Radius

$ curl https://api.checkwx.com/station/lat/40.72/lon/-73.99/radius/2
{
   "data": [
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "geometry": {
            "coordinates": [
               -73.972814,
               40.735061
            ],
            "type": "Point"
         },
         "iata": "QNY",
         "icao": "6N7",
         "latitude": {
            "decimal": 40.735061,
            "degrees": "40\u00b0 44' 6.219\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.972814,
            "degrees": "73\u00b0 58' 22.13\" W"
         },
         "name": "New York Skyports Inc Seaplane Base",
         "position": {
            "base": {
               "latitude": 40.72,
               "longitude": -73.99
            },
            "bearing": {
               "from": 41,
               "to": 221
            },
            "meters": 2214.0,
            "miles": 1.2,
            "orientation": {
               "from": "NE",
               "to": "SW"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Seaplane Base"
      },
      {
         "activated": "11/1972",
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 7,
            "meters": 2
         },
         "geometry": {
            "coordinates": [
               -74.009003,
               40.701199
            ],
            "type": "Point"
         },
         "iata": "JRB",
         "icao": "KJRB",
         "latitude": {
            "decimal": 40.701199,
            "degrees": "40\u00b0 42' 4.316\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -74.009003,
            "degrees": "74\u00b0 0' 32.41\" W"
         },
         "magnetic_variation": {
            "position": "13W",
            "year": 2010
         },
         "name": "Downtown-Manhattan/Wall St Heliport",
         "position": {
            "base": {
               "latitude": 40.72,
               "longitude": -73.99
            },
            "bearing": {
               "from": 218,
               "to": 38
            },
            "meters": 2633.6,
            "miles": 1.4,
            "orientation": {
               "from": "SW",
               "to": "NE"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "sectional": "NEW YORK",
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Heliport",
         "useage": "Public"
      },
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 10.0,
            "meters": 3.05
         },
         "geometry": {
            "coordinates": [
               -73.971944,
               40.7425
            ],
            "type": "Point"
         },
         "icao": "NONE",
         "latitude": {
            "decimal": 40.7425,
            "degrees": "40\u00b0 44' 32.99\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.971944,
            "degrees": "73\u00b0 58' 18.99\" W"
         },
         "name": "East 34th Street",
         "position": {
            "base": {
               "latitude": 40.72,
               "longitude": -73.99
            },
            "bearing": {
               "from": 31,
               "to": 211
            },
            "meters": 2928.2,
            "miles": 1.6,
            "orientation": {
               "from": "NNE",
               "to": "SSW"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": -5.0,
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Heliport"
      },
      {
         "city": "New York",
         "country": {
            "code": "US",
            "name": "United States"
         },
         "elevation": {
            "feet": 10,
            "meters": 3
         },
         "geometry": {
            "coordinates": [
               -73.972099,
               40.742599
            ],
            "type": "Point"
         },
         "iata": "TSS",
         "icao": "6N5",
         "latitude": {
            "decimal": 40.742599,
            "degrees": "40\u00b0 44' 33.35\" N"
         },
         "location": "New York, New York, United States",
         "longitude": {
            "decimal": -73.972099,
            "degrees": "73\u00b0 58' 19.55\" W"
         },
         "name": "East 34th Street Heliport",
         "position": {
            "base": {
               "latitude": 40.72,
               "longitude": -73.99
            },
            "bearing": {
               "from": 31,
               "to": 211
            },
            "meters": 2930.8,
            "miles": 1.6,
            "orientation": {
               "from": "NNE",
               "to": "SSW"
            }
         },
         "region": {
            "code": "NY",
            "name": "New York"
         },
         "state": {
            "code": "NY",
            "name": "New York"
         },
         "status": "Operational",
         "timezone": {
            "dst": true,
            "gmt": "-0500",
            "name": "America/New_York",
            "offset_dst": "-04:00",
            "offset_std": "-05:00",
            "tzid": "America/New_York",
            "zone": "EST",
            "zone_dst": "EDT",
            "zone_std": "EST"
         },
         "type": "Heliport"
      }
   ],
   "results": 4
}
Previous Page
Introduction
Next Page
METAR