RINEX File S3 Bucket
Environment | S3 Bucket URI | S3 Bucket Browser |
---|---|---|
Production |
s3://ga-gnss-data-rinex-v1 |
|
Test |
s3://ga-gnss-data-rinex-v1-test |
https://ga-gnss-data-rinex-v1-test.s3.amazonaws.com/index.html |
Bucket Structure
s3://ga-gnss-data-rinex-v1
├── public/ # Publicly accessible RINEX data
└── analysis/ # RINEX data restricted for GA's internal use
Anonymous Access
All publicly available RINEX data is available for anonymous download under prefix public/
.
For example, the following command uses AWS CLI to download a single file.
$ aws s3 --region=ap-southeast-2 --no-sign-request
cp s3://ga-gnss-data-rinex-v1/public/daily/2018/001/ALIC00AUS_R_20180010000_01D_30S_MO.crx.gz .
Authenticated Access
Data outside of public/
is restricted to authorised users. Access to data under analysis/
is
restricted for GA’s internal use. It contains data that has either been submitted to GA in
confidence or been marked as invalid.
For example, the following commands will download all available daily RINEX files for 1 January 2018:
$ export AWS_ACCESS_KEY_ID=...
$ export AWS_SECRET_ACCESS_KEY=...
$ aws s3 sync s3://ga-gnss-data-rinex-v1/public/daily/2018/001/ 2018-001
$ aws s3 sync s3://ga-gnss-data-rinex-v1/analysis/daily/2018/001/ 2018-001
Refer to Section Authorisation if you require access.