https://github.com/space-physics/marsis-radar
Utilities for reading and ploting ESA MARSIS radar data
https://github.com/space-physics/marsis-radar
geoscience hf-radar marsis matlab radar top-side-sounder
Last synced: 9 months ago
JSON representation
Utilities for reading and ploting ESA MARSIS radar data
- Host: GitHub
- URL: https://github.com/space-physics/marsis-radar
- Owner: space-physics
- License: mit
- Created: 2014-09-15T04:18:36.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2024-02-06T20:11:20.000Z (over 2 years ago)
- Last Synced: 2025-05-08T19:16:36.332Z (about 1 year ago)
- Topics: geoscience, hf-radar, marsis, matlab, radar, top-side-sounder
- Language: MATLAB
- Homepage:
- Size: 760 KB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Marsis Radar
[](https://github.com/space-physics/marsis-radar/actions/workflows/ci.yml)
[](https://zenodo.org/badge/latestdoi/24042603)
Read and plot ESA MARSIS radar data in Matlab.
## Quickstart
One-time program setup and self-test
```matlab
buildtool
```
Generate plots for the date you desire (optionally specify hour,minute,second):
```matlab
marsis.show(datetime(2008,9,9,1,0,0), 'out.avi')
```
where 'out.avi' is the optional movie output filename.
## Setup
I cleaned up the
[original readais.c](http://www-pw.physics.uiowa.edu/marsx/Gurnett_etal_GRL_2015/VOLUME/SOFTWARE/READAIS.C)
```sh
cc src/read_ais.c -o +marsis/read_ais
```
Update the URL to get most recent orbits
```matlab
orbfile = marsis.download_orbit("data", "https://naif.jpl.nasa.gov/pub/naif/pds/data/mex-e_m-spice-6-v2.0/mexsp_2000/EXTRAS/ORBNUM/ORMM_MERGED_01825.ORB")
marsis.read_orbit(orbfile)
```
## Example
Sept 9, 2008 starting at 1 UT:
```matlab
marsis.show(datetime(2008,9,9,1,0,0))
```
data is output to the data/ directory
[orbnum alternative download](http://ssols01.esac.esa.int/adcs/SPICE/ftp_browse.php?mission=MEX&type=orbnum)