https://github.com/umr-lops/xarray-n1-asar
Python lib to read ASAR SLC product from ENVISAT mission (2002-2012).
https://github.com/umr-lops/xarray-n1-asar
asar envisat mapper reader sar slc xarray
Last synced: 5 months ago
JSON representation
Python lib to read ASAR SLC product from ENVISAT mission (2002-2012).
- Host: GitHub
- URL: https://github.com/umr-lops/xarray-n1-asar
- Owner: umr-lops
- License: mit
- Created: 2024-07-04T09:18:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-26T10:16:15.000Z (about 1 year ago)
- Last Synced: 2025-03-26T11:27:30.681Z (about 1 year ago)
- Topics: asar, envisat, mapper, reader, sar, slc, xarray
- Language: Python
- Homepage:
- Size: 2.1 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.rst
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
xarray-n1-asar
================
Python library to read ASAR SLC product from ENVISAT mission (2002-2012).
Currently, the library supports the ASA_WVI_1P and ASA_WVW_2P file formats.
* Free software: MIT license
Installation
--------
```bash
pip install git+https://github.com/umr-lops/xarray-n1-asar.git
```
Usage
--------
In a python script:
```python
from n1_asar.asa_wvi_1p_reader import ASA_WVI_1P_Reader
from n1_asar.asa_wvw_2p_reader import ASA_WVW_2P_Reader
file_1p = 'ASA_WVI_1PNPDK20110108_145524_000007653098_00183_46318_5828.N1'
reader_1p = ASA_WVI_1P_Reader(file)
file_2p = 'ASA_WVW_2PPIFR20110102_001940_000001053098_00088_46223_8874.N1'
reader_2p = ASA_WVW_2P_Reader(file)
```