SAR Geometry¶
sargeom
is a Python package designed for Synthetic Aperture Radar (SAR) geometry calculations.
This guide will walk you through the steps required to set up and start using the package in your projects.
Installation¶
You can install the package directly from GitHub using pip
:
pip install git+https://github.com/oleveque/sargeom.git
For more detailed installation instructions, please refer to the Installation Guide.
Usage¶
To use the package, you can import it in your Python code as follows:
import sargeom.coordinates import Cartographic, CartesianECEF
# Define a geographic coordinate (longitude, latitude, height)
geo_coord = Cartographic(longitude=2.2945, latitude=48.8584, height=100.0)
# Convert to ECEF coordinates
ecef_coord = geo_coord.to_ecef()
# Convert back to geographic coordinates
geo_coord_converted = ecef_coord.to_cartographic()
For more examples of how to use the package, please refer to the Examples section.
Reporting Issues¶
If you encounter any problems, please file an issue with a detailed description. Your feedback is valuable in improving the package.