Skip to content

Radar Operations API

The Radar Operations API acts as a gateway to our most complex data layer: multi-dimensional overlays. It offers the ability to download massive arrays compiled directly as functional GeoJSON.

GET https://docs.alaskaintel.com/api/radar.geojson

Because of the massive scale of map geometries, this endpoint natively enforces compression (GZIP usually).

{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[ [-149.0, 61.2], [-148.5, 61.2], [-148.5, 61.5], [-149.0, 61.5], [-149.0, 61.2] ]
]
},
"properties": {
"type": "WIND_ADVISORY",
"severity": "WARNING"
}
}
]
}