A GRACE L1B data extraction library
Project description
A GRACE data extraction library
=======================
This project is used to extract the data from GRACE (Gravity Recovery And Climate Experiment)
L1B binary data files. The data types in L1B includes KBR (K Band Ranging),
GNV (GPS Navigation position), SCA (Star Camera Assembly ),
spacecraft mass history and acceleration observations (with an accuracy of 1 nm/s^2).
The binary data format is from the "GRACE Level 1B data Product User Handbook".
In this library, the functions for getting the data are listed here:
getKBR(filename)
getGNV(filename)
getSCA(filename)
getACC(filename)
getMass(filename)
The return values for these functions are a list containing the data struct of corresponding data types.
All the definition of the data types are as follows:
KBR {
time;
biased_range;
range_rate;
range_accl;
iono_corr;
lighttime_corr;
lighttime_rate;
lighttime_accl;
ant_centr_corr;
ant_centr_rate;
ant_centr_accl;
}
GNV {
coord_ref;
time;
xpos;
ypos;
zpos;
xvel;
yvel;
zvel;
}
SCA {
time;
quatangle;
quaticoeff;
quatjcoeff;
quatkcoeff;
}
MASS {
time;
mass;
}
ACC {
time;
lin_acc_x;
lin_acc_y;
lin_acc_z;
}
The time is defined as GPS time system and is stored as "datetime" in python library.
=======================
This project is used to extract the data from GRACE (Gravity Recovery And Climate Experiment)
L1B binary data files. The data types in L1B includes KBR (K Band Ranging),
GNV (GPS Navigation position), SCA (Star Camera Assembly ),
spacecraft mass history and acceleration observations (with an accuracy of 1 nm/s^2).
The binary data format is from the "GRACE Level 1B data Product User Handbook".
In this library, the functions for getting the data are listed here:
getKBR(filename)
getGNV(filename)
getSCA(filename)
getACC(filename)
getMass(filename)
The return values for these functions are a list containing the data struct of corresponding data types.
All the definition of the data types are as follows:
KBR {
time;
biased_range;
range_rate;
range_accl;
iono_corr;
lighttime_corr;
lighttime_rate;
lighttime_accl;
ant_centr_corr;
ant_centr_rate;
ant_centr_accl;
}
GNV {
coord_ref;
time;
xpos;
ypos;
zpos;
xvel;
yvel;
zvel;
}
SCA {
time;
quatangle;
quaticoeff;
quatjcoeff;
quatkcoeff;
}
MASS {
time;
mass;
}
ACC {
time;
lin_acc_x;
lin_acc_y;
lin_acc_z;
}
The time is defined as GPS time system and is stored as "datetime" in python library.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
GRACElib-1.0.9.tar.gz
(7.1 kB
view details)
File details
Details for the file GRACElib-1.0.9.tar.gz
.
File metadata
- Download URL: GRACElib-1.0.9.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cad0830e92ec4f0fc1a780d8928bf33cd3076b324e75b179739d88036ff2b33d |
|
MD5 | 1d6488178c7ba4bf20a45fd3c33cc06d |
|
BLAKE2b-256 | fff3ddee93247d58588fb05c115e98929c2e67cb1bf5a5621185b816b2074fe5 |