Get the list of stations

Api description

GET https://rawdata.geodnet.com/api/rawdata/v1/stations

Request parameter

None

Request header

Parameter
Example
Type
Required
Description

Authorization

Basic Z2VvZHVzZXI6Z2VvZHBhc3M=

String

Y

Basic authentication data

Response parameter

Parameter
Example
Type
Description

code

1000

Number

Status code

msg

OK

String

Status code description

data

Array

Array

Station list

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 (may be empty until updated)

antenna

HEMA45 NONE

String

Antenna information (may be empty until updated)

status

ACTIVE

String

Base station status (ACTIVE, ONLINE, OFFLINE)

Response example

{
  "code": 1000,
  "msg": "OK",
  "data": [
    {
      "name": "G001",
      "latitude": 37.399903117,
      "longitude": -121.985978077,
      "height": -21.862,
      "x": -2687303.0419,
      "y": -4302926.7402,
      "z": 3852731.2679,
      "receiver": "HEMISPHERE P40",
      "antenna": "HEMA45 NONE",
      "status": "ACTIVE"
    }
  ]
}

Last updated