Rinex
Was this helpful?
Was this helpful?
Was this helpful?
Get RINEX v3 files for a specific station
Specific station ID.
ABEP
Pattern: ^[a-zA-Z0-9]*$
Returns the list of available files
GET /positioning/osnet/v1/stations/{stationId}/rinex HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
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
}
]
List the years that have RINEX data available
List the years that have RINEX data available
GET /positioning/osnet/v1/rinex HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
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"
}
]
}
List the days that have RINEX data available, for the given year
The year to be queried
List the days that have RINEX data available, for the given year
GET /positioning/osnet/v1/rinex/{year} HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
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"
}
]
}
List the files available via this service, for the given year and day
The year to be queried
The day to be queried, within the given year
List the days available via this service, for the given year and day
GET /positioning/osnet/v1/rinex/{year}/{dayOfYear} HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
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 a specific RINEX v3 file
The year to be queried
The day to be queried, within the given year
Name of the file
ABEP00GBR_S_20243550100_01H_30S_MO.rnx
Returns the requested RINEX file
No Content
Bad request
Not Found
GET /positioning/osnet/v1/rinex/{year}/{dayOfYear}/{filename} HTTP/1.1
Host: api.os.uk
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
binary