Get the coordinates of the base stations

Api description

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

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

Coordinate list

mountpoint

G001

String

Mountpoint

coordinates

Array

Array

Detailed coordinate information

name

ITRF2020

String

Coordinate system name

epoch

2024.36

Number

Epoch

x

-2687303.0419

Number

X

y

-4302926.7402

Number

Y

z

3852731.2679

Number

Z

latitude

37.399903117

Number

Latitude

longitude

-121.985978077

Number

Longitude

height

-21.862

Number

Height

Response example

{
  "code": 1000,
  "msg": "OK",
  "data": [
    {
      "mountpoint": "G001",
      "coordinates": [
        {
          "name": "ITRF2020",
          "epoch": 2024.36,
          "x": -2687303.0419,
          "y": -4302926.7402,
          "z": 3852731.2679,
          "latitude": 37.399903117,
          "longitude": -121.985978077,
          "height": -21.862
        }
      ]
    }
  ]
}

Last updated