Get station information

GET https://ppk.geodnet.com/api/user/station/:name

Path Param

Parameter
Example
Type
Required
Description

name

G001

String

Yes

Station name

Request Header

Header
Example
Type
Required
Description

token

eyJhbGciOiJIUzI1Ni...

String

Yes

JWT from sign in

Response Body application/json

Parameter
Example
Type
Description

code

200

Number

Status code

message

Success

String

Status code description

data.name

G001

String

Station name

data.status

ACTIVE

String

ONLINE/ACTIVE/OFFLINE

data.coordinate

{...}

Object

Coordinate info (Deprecated)

data.coordinate.ITRF2020

[-2687303.0592,-4302926.7171,3852731.263]

Array

[x,y,z] ITRF2020

data.coordinate.ITRF2020(2015)

[...]

Array

[x,y,z] ITRF2020(2015)

data.coordinate.WGS84

[...]

Array

[x,y,z] WGS84

data.coordinate.local

[...]

Array

[x,y,z] Local

data.highPrecision

[...]

Array

High precision coordinate list

data.highPrecision[].name

ITRF2020(2025.50)

String

Coordinate system

data.highPrecision[].epoch

2025.5

Number

Epoch

data.highPrecision[].x

-2687303.0592

Number

X

data.highPrecision[].y

-4302926.7171

Number

Y

data.highPrecision[].z

3852731.263

Number

Z

Caution: If x, y, z is 0, the coordinates are invalid.

Request Example

https://ppk.geodnet.com/api/user/station/G001

cURL

curl -X GET "https://ppk.geodnet.com/api/user/station/G001" \
  -H "token: eyJhbGciOiJIUzI1Ni..."

Response 200 Success

{
  "code": 200,
  "message": "Success",
  "data": {
    "name": "G001",
    "status": "ACTIVE",
    "coordinate": {
      "ITRF2020": [-2687303.0592, -4302926.7171, 3852731.263],
      "ITRF2020(2015)": [-2687302.8158, -4302926.9653, 3852731.1618],
      "WGS84": [-2687303.0595, -4302926.7172, 3852731.2649],
      "local": [-2687301.916, -4302928.3503, 3852731.1364]
    },
    "highPrecision": [
      { "name": "ITRF2020(2025.50)", "epoch": 2025.5, "x": -2687303.0592, "y": -4302926.7171, "z": 3852731.263 },
      { "name": "ITRF2020(2015.00)", "epoch": 2015, "x": -2687302.8158, "y": -4302926.9653, "z": 3852731.1618 },
      { "name": "WGS84(G2139)(2025.50)", "epoch": 2025.5, "x": -2687303.0595, "y": -4302926.7172, "z": 3852731.2649 },
      { "name": "NAD83(2011)(2010.00)", "epoch": 2010, "x": -2687301.916, "y": -4302928.3503, "z": 3852731.1364 }
    ]
  }
}

Last updated