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.
@@ -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.