Wet Refractivity (Nw) in JSON format

This service provides near-realtime Wet Refractivity (Nw) in JSON fomrat. The JSON data can be downloaded by GET method via HTTP protocol from gpsmet.agt.bme.hu/api/get_nw.php. The data are generated in realtime according to the specified parameters in HTTP request.

Usage

Parameters:

  • epoch: the first epoch (format: YYYY-MM-DD-hh-mm-ss REQUIRED)
Example:

gpsmet.agt.bme.hu/api/get_nw.php?epoch=2022-11-10-02-00-00

Output JSON structure:
{
"data":
{
"data":#array of levels {
"height [meter](string)":
{
"latitude [degree](string)": {
"longitude [degree](string)": Wet refractivity value [-](float),
...
},
...
},
"500.0":
{
"45.85": {
"16.25": Wet refractivity value [-](float),
"17.75": Wet refractivity value [-](float),
"19.25": Wet refractivity value [-](float),
...
},
"46.55": {
"16.25": Wet refractivity value [-](float),
"17.75": Wet refractivity value [-](float),
"19.25": Wet refractivity value [-](float),
...
},
...
},
"1500.0":
{
"45.85": {
"16.25": Wet refractivity value [-](float),
"17.75": Wet refractivity value [-](float),
"19.25": Wet refractivity value [-](float),
...
},
"46.55": {
"16.25": Wet refractivity value [-](float),
"17.75": Wet refractivity value [-](float),
"19.25": Wet refractivity value [-](float),
...
},
...
},
...
},
"grid":
{
"x": ["list of grid coords in direction North"],
"y": ["list of grid coords in direction East"],
"z": ["list of grid coords in direction Up"]
}
}
"log":#program log
{
"error": "program error (string",
"warning": "program warning (string)",
"info": "program information (string)"
}
}