Rinex

get

Get RINEX v3 files for a specific station

Authorizations
Path parameters
stationIdstring · min: 4 · max: 4Required

Specific station ID.

Example: ABEPPattern: ^[a-zA-Z0-9]*$
Query parameters
Responses
200
Returns the list of available files
application/json
get
GET /positioning/osnet/v1/stations/{stationId}/rinex HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

Returns the list of available files

[
  {
    "url": "https://api.os.uk/positioning/osnet/v1/stations/ABEP/rinex/ABEP00GBR_S_20243550100_01H_30S_MO.rnx.zip",
    "fileName": "ABEP00GBR_S_20243550100_01H_30S_MO.rnx.zip",
    "size": 1234,
    "md5": "2f9dd13abd56140afa3b5621e8864f59",
    "format": "RINEX",
    "subformat": "3",
    "station": "ABEP",
    "start": "2024-12-31T01:00:00",
    "duration": "P1H",
    "percentageComplete": 1
  }
]
get

List the years that have RINEX data available

Authorizations
Responses
200
List the years that have RINEX data available
application/json
get
GET /positioning/osnet/v1/rinex HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

List the years that have RINEX data available

{
  "title": "OS Net API RINEX data years",
  "description": "List the years that have RINEX data available",
  "links": [
    {
      "href": "https://api.os.uk/positioning/osnet/v1/rinex",
      "rel": "self",
      "type": "application/json",
      "title": "Self link",
      "description": "This document"
    },
    {
      "href": "https://api.os.uk/positioning/osnet/v1/rinex/2024",
      "rel": "service-endpoint",
      "type": "application/json",
      "title": 2024,
      "description": "List RINEX data days for 2024"
    }
  ]
}
get

List the days that have RINEX data available, for the given year

Authorizations
Path parameters
yearinteger · int32 · min: 2024Required

The year to be queried

Responses
200
List the days that have RINEX data available, for the given year
application/json
get
GET /positioning/osnet/v1/rinex/{year} HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

List the days that have RINEX data available, for the given year

{
  "title": "OS Net API RINEX data days",
  "description": "List the days that have RINEX data available, for the given year",
  "links": [
    {
      "href": "https://api.os.uk/positioning/osnet/v1/rinex/2024",
      "rel": "self",
      "type": "application/json",
      "title": "Self link",
      "description": "This document"
    },
    {
      "href": "https://api.os.uk/positioning/osnet/v1/rinex/2024/1",
      "rel": "service-endpoint",
      "type": "application/json",
      "title": 1,
      "description": "List RINEX data files for 2024 day 1"
    },
    {
      "href": "https://api.os.uk/positioning/osnet/v1/rinex/2024/2",
      "rel": "service-endpoint",
      "type": "application/json",
      "title": 2,
      "description": "List RINEX data files for 2024 day 2"
    }
  ]
}
get

List the files available via this service, for the given year and day

Authorizations
Path parameters
yearinteger · int32 · min: 2024Required

The year to be queried

dayOfYearinteger · min: 1 · max: 366Required

The day to be queried, within the given year

Responses
200
List the days available via this service, for the given year and day
application/json
get
GET /positioning/osnet/v1/rinex/{year}/{dayOfYear} HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

List the days available via this service, for the given year and day

[
  {
    "url": "https://api.os.uk/positioning/osnet/v1/rinex/2024/001/EPHM00GBR_S_20240010000_01D_MN.rnx.zip",
    "filename": "EPHM00GBR_S_20241470000_01D_MN.rnx.zip",
    "size": "1234,",
    "md5": "2f9dd13abd56140afa3b5621e8864f59",
    "format": "RINEX",
    "subformat": 3
  }
]
get

Get a specific RINEX v3 file

Authorizations
Path parameters
yearinteger · int32 · min: 2024Required

The year to be queried

dayOfYearinteger · min: 1 · max: 366Required

The day to be queried, within the given year

filenamestringRequired

Name of the file

Example: ABEP00GBR_S_20243550100_01H_30S_MO.rnx
Responses
200
Returns the requested RINEX file
application/octet-stream
Responsestring · binary
get
GET /positioning/osnet/v1/rinex/{year}/{dayOfYear}/{filename} HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
binary

Was this helpful?