Get information about a specific station
Api description
POST https://rawdata.geodnet.com/api/rawdata/v1/station
Request parameter
name
G001
String
Y
Station name
Request example
{
"name": "G001"
}Request header
Authorization
Basic Z2VvZHVzZXI6Z2VvZHBhc3M=
String
Y
Basic authentication data
Response parameter
code
1000
Number
Status code
msg
OK
String
Status code description
data
Object
Object
Station information
name
G001
String
Mountpoint
latitude
37.399903117
Number
Latitude
longitude
-121.985978077
Number
Longitude
height
-21.862
Number
Height
x
-2687303.0419
Number
X
y
-4302926.7402
Number
Y
z
3852731.2679
Number
Z
receiver
HEMISPHERE P40
String
Receiver information
antenna
HEMA45 NONE
String
Antenna information
coordinates
Array
Array
Precise coordinates
name
ITRF2020
String
Coordinate reference frame
epoch
2025.5
String
Epoch
x
-2687303.0592
Number
X
y
-4302926.7171
Number
Y
z
3852731.263
Number
Z
latitude
37.399903139
Number
Latitude
longitude
-121.985978381
Number
Longitude
height
-21.873
Number
Height
Response example
{
"code": 1000,
"msg": "OK",
"data": {
"name": "G001",
"latitude": 37.4,
"longitude": -121.99,
"height": -21.87,
"x": -2687303.0455,
"y": -4302926.7303,
"z": 3852731.2698,
"receiver": "HEMISPHERE P40",
"antenna": "HEMA45 NONE",
"coordinates": [
{
"name": "ITRF2020",
"epoch": 2025.5,
"x": -2687303.0592,
"y": -4302926.7171,
"z": 3852731.263,
"latitude": 37.399903139,
"longitude": -121.985978381,
"height": -21.873
}
]
}
}Last updated
