asp-plot 1.15.0__tar.gz → 1.15.1__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.
- {asp_plot-1.15.0 → asp_plot-1.15.1}/CHANGELOG.md +5 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/PKG-INFO +1 -1
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/altimetry.py +1 -1
- {asp_plot-1.15.0 → asp_plot-1.15.1}/pyproject.toml +1 -1
- {asp_plot-1.15.0 → asp_plot-1.15.1}/.flake8 +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/.github/workflows/release.yml +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/.github/workflows/run-tests.yml +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/.gitignore +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/.pre-commit-config.yaml +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/.readthedocs.yaml +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/LICENSE +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/README.md +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/__init__.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/alignment.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/bundle_adjust.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/__init__.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/asp_plot.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/csm_camera_plot.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/gallery.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/request_planetary_altimetry.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/stereo_geom.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/csm_camera.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/gallery.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/processing_parameters.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/report.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/scenes.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/stereo.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/stereo_geometry.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/stereopair_metadata_parser.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/utils.py +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/conda-forge-recipe/meta.yaml +0 -0
- {asp_plot-1.15.0 → asp_plot-1.15.1}/environment.yml +0 -0
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.15.1] - 2026-06-10
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **`Altimetry.to_csv_for_pc_align()` wrote its CSV to the current working directory instead of the run directory.** Running the `asp_plot` CLI (or `Altimetry.align_and_evaluate()`) from a directory other than the dataset directory left a stray `atl06sr_for_pc_align_<key>.csv` in the cwd. The output path is now rooted at `self.directory` via `os.path.join()`, matching every other output in the class (`_save_to_parquet`, the `pc_align` outputs, and the planetary twin `to_csv_for_pc_align_planetary()`). No consumer changes were needed — the single internal caller (`align_and_evaluate()`) uses the return value directly, and `Alignment.pc_align_dem_to_atl06sr()` handles the directory-prefixed path unchanged.
|
|
12
|
+
|
|
8
13
|
## [1.15.0] - 2026-06-09
|
|
9
14
|
|
|
10
15
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: asp_plot
|
|
3
|
-
Version: 1.15.
|
|
3
|
+
Version: 1.15.1
|
|
4
4
|
Summary: Package for plotting outputs Ames Stereo Pipeline processing
|
|
5
5
|
Project-URL: Homepage, https://github.com/uw-cryo/asp_plot
|
|
6
6
|
Project-URL: Documentation, https://asp-plot.readthedocs.io
|
|
@@ -1012,7 +1012,7 @@ class Altimetry:
|
|
|
1012
1012
|
CSV format with columns for longitude, latitude, and height.
|
|
1013
1013
|
"""
|
|
1014
1014
|
atl06sr = self.atl06sr_processing_levels_filtered[key].to_crs("EPSG:4326")
|
|
1015
|
-
csv_fn = f"{filename_prefix}_{key}.csv"
|
|
1015
|
+
csv_fn = os.path.join(self.directory, f"{filename_prefix}_{key}.csv")
|
|
1016
1016
|
df = atl06sr[["geometry", "h_mean"]].copy()
|
|
1017
1017
|
df["lon"] = df["geometry"].x
|
|
1018
1018
|
df["lat"] = df["geometry"].y
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|