sarxarray
sarxarray copied to clipboard
Xarray extension for Synthetic Aperture Radar (SAR) data
```python stmat = slcs.slcstack.point_selection(method='nmad') ```
https://tudelftgeodesy.github.io/stmtools/stm_init/ stm = stmtools.from_csv('example.csv', spacetime_pattern= {"^d_": "deformation", "^a_": "amplitude", "^h2ph_": "h2ph"})
The API documentation is currently missing in https://tudelftgeodesy.github.io/sarxarray/. We need to add it. The example can be followed in: https://github.com/VegeWaterDynamics/motrainer/blob/main/docs/api_reference.md
https://motionbylearning.github.io/sarxarray/common_ops/ e.g. what is "multi-look". etc.
```python mrm = stack_subset.slcstack.mrm() ``` ```output /SPIDER_TYKKY_6rp6QPX/miniconda/envs/env1/lib/python3.11/site-packages/sarxarray/stack.py:34: FutureWarning: The return type of `Dataset.dims` will be changed to return a set of dimension names in future, in order to be more...
In `point_selection`, we replaced the MultiIndex coordinates for `points` dimension with an actual index. See [this part](https://github.com/MotionbyLearning/sarxarray/blob/main/sarxarray/stack.py#L73) The motivation was: 1. MultiIndex cannot be exported to Zarr 2. MultiIndex has...
Add a feature to the `point_selection` function of reading a part of SLC with a given polygon. Input: 1) SLC stack in radar coords; 2) geo-reference coordinates per SLC pixel;...
Some SAR data providers provide binary complex data in two files, separating real and imaginary part. For example check this path: `ls /project/caroline/Share/users/caroline-fvanleijen/projects/saocom/saocom_test/20230415/merged.data` files: ``` i_HH_mst_28Mar2023.hdr i_HH_slv1_13Apr2023.hdr q_HH_mst_28Mar2023.hdr q_HH_slv1_13Apr2023.hdr i_HH_mst_28Mar2023.img...
Hey, thank you for this nice open-source project. I was wondering if you thought about adding the possibility to specify the endianess of the complex SAR data to load. Thanks,...
Fix #55. - [x] Add `from_zarr` function - [x] Add test files and unit tests - [x] Replace lint unit test with precommit hooks - [x] Remove `example` dir from...