Skip to content

nasa-jpl/captoolkit

Repository files navigation

splash

captoolkit - Cryosphere Altimetry Processing Toolkit

Language License Documentation Status DOI 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.

Full example using ICESat-2 data to understand usage

  • First read ATL06 data using readatl06.py.
  • Merge all the files using merge.py (A or D, or all of them).
  • Tile the data to speed up processing using tile.py.
  • Run fitsec.py to get dh/dt using the tiles (in parallel use "-n"); provide input as "./tiles/*.h5".
  • Merge all the output tiles into one file again using joinsec.py

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
  • filttrackwf.py - Filter waveform tracks (segments) with along-track running window

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

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
  • getmsl.py - Calculate and extend MSL field for the ice shelves
  • getveloc.py - Combine best 2D mean field from different velocities
  • vregrid.py - Regrid velocity field onto height field
  • vmerge.py - Merge multiple velocity fields, e.g. Gardner et al. + Rignot et al.
  • mkmask.py - Compute ice shelf, basin and buffer raster masks

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
  • cubeerror.py - Estimate and propagate cube uncertainties

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)

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.