Water vapor density profile in JSON format

This service provides near-realtime Water vapor density profile in JSON fomrat. The JSON data can be downloaded by GET method via HTTP protocol from gpsmet.agt.bme.hu/api/get_wvd_profile.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)
  • phi: geographical coordinates latitude (degree REQUIRED)
  • lam: geographical coordinates longitude (degree REQUIRED)
Example:

gpsmet.agt.bme.hu/api/get_wvd_profile.php?epoch=2022-03-10-02-00-00&phi=45.01457&lam=17.054754

Output JSON structure:
{
"data":#Water vapor density profile (list of levels)
[
["height [meter](float)", "Water vapor density [-](float)"],#list
["height [meter](float)", "Water vapor density [-](float)"],#list
["height [meter](float)", "Water vapor density [-](float)"],#list
...
],
"log":#program log
{
"error": "program error (string",
"warning": "program warning (string)",
"info": "program information (string)"
}
}