List of stations (JSON)

This service provides the list of stations, the name of the network where they belong and their geographical coordinates, in JSON format. The JSON data can be downloaded by GET method via HTTP protocol from gpsmet.agt.bme.hu/api/get_stations.php.

Usage

Example:

gpsmet.agt.bme.hu/api/get_stations.php
Output JSON structure:
{
"data":#list of stations
[
{
"id": "station ID (string)",
"coords":
[
"latitude [degree] (WGS84)(float) ",
"longitude [degree] (WGS84)(float)",
"height [meter] (WGS84)(float)"
],
"network": "network name (string), Possible values: IGS, EUREF, HUNGAROCONTROL, GEODETANET, ZAKPOS, BME, METAR, RAOB, SYNOP "
},
{
"id": "station ID (string)",
"coords":
[
"latitude [degree] (WGS84)(float) ",
"longitude [degree] (WGS84)(float)",
"height [meter] (WGS84)(float)"
],
"network": "network name (string), Possible values: IGS, EUREF, HUNGAROCONTROL, GEODETANET, ZAKPOS, BME, METAR, RAOB, SYNOP "
},
{
"id": "station ID (string)",
"coords":
[
"latitude [degree] (WGS84)(float) ",
"longitude [degree] (WGS84)(float)",
"height [meter] (WGS84)(float)"
],
"network": "network name (string), Possible values: IGS, EUREF, HUNGAROCONTROL, GEODETANET, ZAKPOS, BME, METAR, RAOB, SYNOP "
},
...
],
"log":#program log
{
"error": "program error (string",
"warning": "program warning (string)",
"info": "program information (string)"
}
}