https://github.com/fspaolo/altimpy
AltimPy - Set of tools for processing satellite altimetry data
https://github.com/fspaolo/altimpy
Last synced: about 1 year ago
JSON representation
AltimPy - Set of tools for processing satellite altimetry data
- Host: GitHub
- URL: https://github.com/fspaolo/altimpy
- Owner: fspaolo
- License: other
- Created: 2013-06-20T18:22:35.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2017-03-06T19:37:53.000Z (over 9 years ago)
- Last Synced: 2025-05-01T10:49:41.733Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 366 KB
- Stars: 23
- Watchers: 3
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
AltimPy
=======
**Set of tools for processing satellite altimetry data**
A Python package with high-level functions for constructing time
series of satellite altimetric measurements (surface heigh and
backscatter).
The package provides routines to read the raw data from the binary
format Ice Data Records (IDRs), and write/read the processed results
to the high-performance file format HDF5; as well as processing
algorithms for filtering, crossover finding, gridding, uncertainty
estimation, time-series construction, parallelization, visualization,
etc.
Functionalities are divided into the following modules:
* ``io.py`` - read and write routines
* ``const.py`` - definition of constants
* ``convert.py`` - time/coordinates/etc. conversion functions
* ``tseries.py`` - crossover time series construction
* ``interp.py`` - wrapper for kriging and other interpolation routines
* ``filter.py`` - high-level time-series filtering functions
* ``bootstrap.py`` - bootstrap methods for uncertanty estimation
* ``regions.py`` - definition of "boxes" for Antarctic ice shelves
* ``util.py`` - miscellaneous utility functions
* ``viz.py`` - plotting functionalities
* ``mpi.py`` - simple parallelization functions (MPI)
Download and install the library
---------------------------------
::
git clone https://github.com/fspaolo/altimpy
cd altimpy
python setup.py install --user
Some day I will organize and document this library... ;)