UNISPHERE
  • Welcome to Unisphere Product Documentation
  • NOVA
    • Get started
      • Create an account
      • Create a new mission
      • Create your assets
      • Edit your Mission
      • Manage your profile
        • Settings
    • Mission types
      • Local-Flight
      • Multi-Location
      • Route
    • Assets
      • Aircraft Type
      • Performance Set
      • Limit Set
        • Limit thresholds types
        • Weather and Operational Parameters
      • Locations & Routes
    • Weather Stations
      • Connect
      • Overview
      • Individual View
      • Mission Integration
    • Mission results
      • NOW
        • Local-Flight
        • Multi-Location
        • Route
      • AWARE
        • Local-Flight
        • Multi-Location
        • Route
      • CAST
        • Local-Flight
        • Multi-Location
        • Route
      • Maps
    • Glossary
    • NOVA Release Log
  • OPERATIONAL ANALYTICS
    • Create your analysis
    • Manage your analysis
    • Analytics assets
    • Analysis types
      • Wind Analysis
      • Service Availability
      • Benchmark Analysis
    • Analysis results
      • Wind Analysis
      • Service Availability
      • Benchmark Analysis
      • Map Overview
  • UNISPHERE APIs
    • Introduction to Unisphere APIs
    • API Access
    • Flight Trajectory Simulation - FTS
      • FTS2 Endpoints
    • Check My Flight - CMF
      • CMF Endpoints
      • CMF Supporting Functions
    • Check My Mission - CMM
      • CMM Endpoints
      • CMM Supporting Functions
    • Data Storage & Logging
    • Asset Management Endpoints
    • API Key Management
    • Utilities & Health
    • Explanatory Notes
      • Available Parameters
      • Speeds
    • Geo Information Service
  • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. UNISPHERE APIs

Geo Information Service

PreviousSpeedsNextFAQ

Last updated 7 months ago

Was this helpful?

This service will provide quasi-static information on elevations around the globe from COPERNICUS COP DEM GLO-30.

Key functionalities

  • Request Elevation for Single Point

  • Request Elevation for List of Points

Get Elevation Single

get
Authorizations
Query parameters
latnumberRequired

Latitude in decimal degrees

lonnumberRequired

Longitude in decimal degrees

modelall ofOptionalDefault: cop-dem-glo-30
string · enumOptionalPossible values:
Responses
200
Successful Response
application/json
422
Validation Error
application/json
get
GET /geo-information/v1/elevation?lat=1&lon=1 HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Accept: */*
{
  "elevation": 123.789,
  "latitude": 50.123,
  "longitude": 10.456,
  "model": "cop-dem-glo-30"
}
  • Key functionalities
  • GETGet Elevation Single
  • POSTPost Elevation List

Post Elevation List

post
Authorizations
Query parameters
modelall ofOptionalDefault: cop-dem-glo-30
string · enumOptionalPossible values:
Body
latnumberRequired
lonnumberRequired
Responses
200
Successful Response
application/json
422
Validation Error
application/json
post
POST /geo-information/v1/elevations HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 29

[
  {
    "lat": 50.123,
    "lon": 10.456
  }
]
[
  {
    "elevation": 123.789,
    "latitude": 50.123,
    "longitude": 10.456,
    "model": "cop-dem-glo-30"
  }
]