viewinsar 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- viewinsar-0.1.0/CHANGELOG.md +29 -0
- viewinsar-0.1.0/LICENSE +674 -0
- viewinsar-0.1.0/MANIFEST.in +7 -0
- viewinsar-0.1.0/PKG-INFO +241 -0
- viewinsar-0.1.0/README.md +203 -0
- viewinsar-0.1.0/pyproject.toml +82 -0
- viewinsar-0.1.0/recipe/meta.yaml +69 -0
- viewinsar-0.1.0/setup.cfg +4 -0
- viewinsar-0.1.0/src/viewinsar/__init__.py +48 -0
- viewinsar-0.1.0/src/viewinsar/cli.py +260 -0
- viewinsar-0.1.0/src/viewinsar/swath.py +307 -0
- viewinsar-0.1.0/src/viewinsar/viewer.py +504 -0
- viewinsar-0.1.0/src/viewinsar.egg-info/PKG-INFO +241 -0
- viewinsar-0.1.0/src/viewinsar.egg-info/SOURCES.txt +19 -0
- viewinsar-0.1.0/src/viewinsar.egg-info/dependency_links.txt +1 -0
- viewinsar-0.1.0/src/viewinsar.egg-info/entry_points.txt +2 -0
- viewinsar-0.1.0/src/viewinsar.egg-info/requires.txt +12 -0
- viewinsar-0.1.0/src/viewinsar.egg-info/top_level.txt +1 -0
- viewinsar-0.1.0/tests/conftest.py +76 -0
- viewinsar-0.1.0/tests/test_cli.py +203 -0
- viewinsar-0.1.0/tests/test_swath.py +271 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to viewinsar are recorded here.
|
|
4
|
+
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
5
|
+
the project uses [semantic versioning](https://semver.org/).
|
|
6
|
+
|
|
7
|
+
## [0.1.0] - 2026-08-25
|
|
8
|
+
|
|
9
|
+
First release.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- `viewinsar swath` - interactive swath (buffered) profile viewer.
|
|
13
|
+
- Two left clicks draw the centre line on a `view.py` map; the line is
|
|
14
|
+
buffered by `--width` km with flat caps, every valid pixel inside is
|
|
15
|
+
linearly referenced onto it (QGIS LRS / ArcGIS *Locate Features Along
|
|
16
|
+
Routes*), and the cloud is drawn as a log-scaled 2-D point-density profile
|
|
17
|
+
with the density-weighted median and the 25th-75th percentile envelope.
|
|
18
|
+
- Optional third panel with the point displacement time series, via
|
|
19
|
+
`tsview.py` (`--timeseries`, right-click a pixel).
|
|
20
|
+
- Key `e` exports the located points and the per-bin statistics to `.csv`,
|
|
21
|
+
plus the profile metadata and the figure. Key `n` starts a new line.
|
|
22
|
+
- Non-interactive use with `--start-lalo/--end-lalo`, `--start-yx/--end-yx` or
|
|
23
|
+
`--line-file`, together with `--save --nodisplay`.
|
|
24
|
+
- Multiple input files: the density comes from the first, the others are
|
|
25
|
+
overlaid as median lines and included in the exported `.csv`.
|
|
26
|
+
- Every unrecognised option is forwarded verbatim to MintPy's `view.py`.
|
|
27
|
+
- `viewinsar list` - print the datasets available in a file.
|
|
28
|
+
- `viewinsar.swath` - the numerical core (`swath_extract`, `swath_density`,
|
|
29
|
+
`line_geometry`, `weighted_quantile`), importable with numpy alone.
|