Satellites¶
SAR satellite configurations with orbital parameters, wavelengths, and imaging geometry.
SatelliteConfig¶
SatelliteConfig
dataclass
¶
SatelliteConfig(name: str, wavelength_m: float, band: str, incidence_deg: float, incidence_range: tuple, heading_asc_deg: float, heading_desc_deg: float, revisit_days: int, resolution_m: float, agency: str)
Configuration for a SAR satellite.
get_heading ¶
Get satellite heading for orbit direction.
Source code in src/eq_insar/constants.py
Satellite Lookup¶
get_satellite ¶
Get satellite configuration by name.
| PARAMETER | DESCRIPTION |
|---|---|
name
|
Satellite name (case-insensitive). Options: 'sentinel1', 'radarsat2', 'envisat', 'alos2', 'nisar', 'saocom', 'terrasar', 'cosmo', 'iceye'
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
SatelliteConfig
|
Satellite configuration object |