This repository is used to host test data for the GNATSS software. The data is in a zip file hosted as a release asset in this repository.
See Releases.
The zip file contains the following directory structure:
2022
└── NCL1
├── 208
│ ├── GPS_PPP
│ │ └── GPS_POS_FREED
│ ├── WG_20220727
│ │ ├── RPH_TWTT
│ │ ├── pxp_tt
│ │ └── pxp_tt_j2k
│ └── posfilter
│ └── POS_FREED_TRANS_TWTT
├── 209
│ ├── GPS_PPP
│ │ └── GPS_POS_FREED
│ ├── WG_20220728
│ │ ├── RPH_TWTT
│ │ ├── pxp_tt
│ │ └── pxp_tt_j2k
│ └── posfilter
│ └── POS_FREED_TRANS_TWTT
├── 210
│ ├── GPS_PPP
│ │ └── GPS_POS_FREED
│ ├── WG_20220729
│ │ ├── RPH_TWTT
│ │ ├── pxp_tt
│ │ └── pxp_tt_j2k
│ └── posfilter
│ └── POS_FREED_TRANS_TWTT
├── NOV
│ ├── NCL1_INSPVAA.dat
│ └── NCL1_INSSTDEVA.dat
├── ctd
│ └── CTD_NCL1_Ch_Mi
├── deletns.dat
└── quality_control.csv
2022/NCL1
: The2022
directory is the top level directory, withNCL1
being the station name and a subdirectory of the year.208,209,210
: The208
,209
, and210
directories are the day of the year.GPS_PPP
: TheGPS_PPP
directory contains the GNSS data.WG_*
: TheWG_*
directory contains the roll pitch heading (RPH_TWTT
) and travel times data (pxp_tt_*
).posfilter
: Theposfilter
directory contains the GNSS data after kalman filtering, spline interpolation, and rotation from the Fortran and Shell scripts.
NOV
: TheNOV
directory contains theINS
data.ctd
: Thectd
directory contains theCTD
data.deletns.dat
: Thedeletns.dat
file contains the deletions data from the Fortran software.quality_control.csv
: Thequality_control.csv
file contains the quality control human generated data for GNATSS.
The most direct way to use the data is using gnatss
.
Within the utilities
module there is a testing
module that contains a function called download_test_data
.
This function will download the test data from this repository and extract it to the specified tests/data
directory or one that you specify.
from gnatss.utilities.testing import download_test_data
# This will download the test data to the default directory
# of ${current working directory}/tests/data and unzip it.
download_test_data(unzip=True)
This repository is licensed under the BSD 3-Clause License, see LICENSE.