Skip to content

tsutterley/captoolkit

 
 

Repository files navigation

splash

captoolkit - Cryosphere Altimetry Processing Toolkit

Language License Documentation Status DOI Binder
Binder

Set of tools for processing and integrating satellite and airborne (radar and laser) altimetry data.

Project leads

Jet Propulsion Laboratory, California Institute of Technology

Development of the codebase was funded by the NASA Cryospheric Sciences program and the NASA MEaSUReS ITS_LIVE project through award to Alex Gardner.

Contributors

Contribution

If you would like to contribute (your own code or modifications to existing ones) just create a pull request or send us an email, we will gladly add you as a contributor to the project.

Install

git clone https://github.com/fspaolo/captoolkit.git
cd captoolkit
python setup.py install

Example

Read ICESat-2 Land Ice Height product (ATL06) in parallel and extract some variables using 4 cores (from the command line):

readatl06.py -n 4 *.h5

To see the input arguments of each program run:

program.py -h

For more information check the header of each program.

Notebooks

Introduction to HDF5 data files
High-level overview of the HDF5 file structure and associated tools

Reduction of ICESat-2 data files
Select (ATL06) files and variables of interest and write to a simpler structure

Filtering and gridding elevation change data
Interpolate and filter data to derive gridded products of elevation change

Notes

This package is under heavy development, and new tools are being added as we finish testing them (many more utilities are coming).

Currently, the individual programs work as standalone command-line utilities or editable scripts. There is no need to install the package. You can simply run the python scripts as:

python program.py -a arg1 -b arg2 /path/to/files/*.h5

Tools

Reading

  • readgeo.py - Read Geosat and apply/remove corrections
  • readers.py - Read ERS 1/2 (REAPER) and apply/remove corrections
  • readra2.py - Read Envisat and apply/remove corrections
  • readgla12.py - Read ICESat GLA12 Release 634 HDF5 and apply/remove corrections
  • readgla06.py - Read ICESat GLA12 Release 634 HDF5 and apply/remove corrections
  • readatl06.py - Read ICESat-2 ATL06 HDF5 and select specific variables

Correcting

  • corrapply.py - Apply a set of specified corrections to a set of variables
  • corrslope.py - Correct slope-induced errors using 'direct' or 'relocation' method
  • corrscatt.py - Correct radar altimetry height to correlation with waveform parameters
  • corrlaser.py - Compute and apply corrections for ICESat Laser 2 and 3

Filtering

  • filtst.py - Filter point-cloud data in space and time
  • filtmask.py - Select scattered data using raster-mask, polygon or bounding box
  • filtnan.py - Check for NaNs in a given 1D variable and remove the respective "rows"
  • filttrack.py - Filter satellite tracks (segments) with along-track running window (coming)
  • filttrackwf.py - Filter waveform tracks (segments) with along-track running window (coming)

Differencing

  • xing.py - Compute differences between two adjacent points (cal/val)
  • xover.py - Compute crossover values at satellite orbit intersections

Fitting

  • fittopo.py - Detrend data with respect to modeled topography
  • fitsec.py - Compute robust height changes using a surface-fit approach

Interpolating

  • interpgaus.py - Interpolate irregular data using Gaussian Kernel
  • interpmed.py - Interpolate irregular data using a Median Kernel
  • interpkrig.py - Interpolate irregular data using Kriging/Collocation

Utilities

  • split.py - Split large 1D HDF5 file(s) into smaller ones
  • merge.py - Merge several HDF5 files into a single or multiple file(s)
  • mergetile.py - Merge tiles from different missions keeping the original grid
  • tile.py - Tile geographical (point) data to allow parallelization
  • join.py - Join a set of geographical tiles (from individual files)
  • joingrd.py - Join a set of geographical tiles (subgrids from individual files)
  • stackgrd.py - Stack a set of 2D grids into a 3D cube using time information
  • sort.py - Sort (in place) all 1D variables in HDF5 file(s)
  • dummy.py - Add dummy variables as 1D arrays to HDF5 files(s)
  • hdf2txt.py - Convert HDF5 (1D arrays) to ASCII tables (columns)
  • txt2hdf.py - Convert (very large) ASCII tables to HDF5 (1D arrays)
  • query.py - Query entire data base (tens of thousands of HDF5 files) (coming)

Gaussian Processes

IBE

Tides

2D Fields

  • gettopo.py - Estimate slope, aspect and curvature from given DEM
  • getdem.py - Regrid mean height field (DEM) from grid-1 onto grid-2
  • getveloc.py - Combine best 2D mean field from different velocities
  • vregrid.py - Regrid velocity field onto height field (coming)
  • getmsl.py - Calculate and extend MSL field for the ice shelves
  • mkmask.py - Compute ice shelf, basin and buffer raster masks (coming)

3D Fields

  • cubefilt.py - Filter slices (spatial) and individual time series (temporal)
  • cubefilt2.py - Filter time series residuals w.r.t. a piece-wise poly fit
  • cubexcal.py - Cross-calibrate several data cubes with same dimensions
  • cubeimau.py - Filter and regrid IMAU Firn cube product
  • cubegsfc.py - Filter and regrid GSFC Firn cube product
  • cubegemb.py - Filter and regrid JPL Firn and SMB cube products
  • cubesmb.py - Filter and regrid RACMO and ERA5 SMB cube products
  • cubethick.py - Compute time-variable Freeboard, Draft, and Thickness
  • cubediv.py - Compute time-variable Flux Divergence, and associated products
  • cubemelt.py - Compute time-variable basal melt rates and mass change
  • cuberegrid.py - Remove spatial artifacts and regrid 3D fields

Scripts

  • scripts/ - This folder contains supporting code (generic and specific) that we have used in our analyses. We provide these scripts as is in case you find them useful.

Data

  • data/ - The data folder contains example data files for some of the tools. See respective headers.

About

NASA’s JPL Cryosphere Altimetry Processing Toolkit

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Jupyter Notebook 66.6%
  • Python 33.4%