COSMOS | ExoLabs
ExoLabs Website
English
English
  • Welcome
  • Introduction
  • Snow Cover
  • Snow Depth
  • Snow Water
  • Snow Forecast
  • Fresh Snow
  • Services
  • Service Authentication
  • Service Listing
  • Web Map Services
  • Request values at point(s)
  • Massive request along multiple paths
  • Raw Data Access
  • Raw Data Access
  • Raw Data Listing
  • Showcases
  • ExoLabs | Company Website
  • ExoLabs | Medium Blog
  • ExoSnow | Android App
  • ExoSnow | iOS App
  • MountaiNow
  • SAC Tourenportal
  • Skitourenguru
  • Swisstopo
Powered by GitBook
On this page

Was this helpful?

Request values at point(s)

Request for one or more points

Get values for point(s) at locations=lon,lat|lon,lat|lon,lat (URL encoded)

GET https://p20.cosmos-project.ch/<service URL>?locations=<list of coordinates>

Typically, used along hiking paths, ski touring routes, etc.

Path Parameters

Name
Type
Description

<list of coordinates>

string

lon,lat | lon,lat | lon, lat | ...

{
  "type":"FeatureCollection",
  "features":[
    {
      "type":"Feature",
      "properties":{
        "snowCover": 100.0
    },
    "geometry":{
      "type":"Point",
      "coordinates":[
        7.532,
        46.70001
        ]
      }
    },
    {
      "type":"Feature",
      "properties":{
        "snowCover": 100.0
      },
      "geometry":{
        "type":"Point",
        "coordinates":[
          7.532,
          46.71
        ]
      }
    },
    {
      "type":"Feature",
      "properties":{
        "snowCover":0.0
      },
      "geometry":{
        "type":"Point",
        "coordinates":[
          7.532,
          46.72
        ]
      }
    },
    {
      "type":"Feature",
      "properties":{
        "snowCover":0.0
      },
      "geometry":{
        "type":"Point",
        "coordinates":[
          7.532,
          46.75
        ]
      }
    }
  ]
}
PreviousWeb Map ServicesNextMassive request along multiple paths

Last updated 2 years ago

Was this helpful?