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.
Files changed (32) hide show
  1. {asp_plot-1.15.0 → asp_plot-1.15.1}/CHANGELOG.md +5 -0
  2. {asp_plot-1.15.0 → asp_plot-1.15.1}/PKG-INFO +1 -1
  3. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/altimetry.py +1 -1
  4. {asp_plot-1.15.0 → asp_plot-1.15.1}/pyproject.toml +1 -1
  5. {asp_plot-1.15.0 → asp_plot-1.15.1}/.flake8 +0 -0
  6. {asp_plot-1.15.0 → asp_plot-1.15.1}/.github/workflows/release.yml +0 -0
  7. {asp_plot-1.15.0 → asp_plot-1.15.1}/.github/workflows/run-tests.yml +0 -0
  8. {asp_plot-1.15.0 → asp_plot-1.15.1}/.gitignore +0 -0
  9. {asp_plot-1.15.0 → asp_plot-1.15.1}/.pre-commit-config.yaml +0 -0
  10. {asp_plot-1.15.0 → asp_plot-1.15.1}/.readthedocs.yaml +0 -0
  11. {asp_plot-1.15.0 → asp_plot-1.15.1}/LICENSE +0 -0
  12. {asp_plot-1.15.0 → asp_plot-1.15.1}/README.md +0 -0
  13. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/__init__.py +0 -0
  14. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/alignment.py +0 -0
  15. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/bundle_adjust.py +0 -0
  16. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/__init__.py +0 -0
  17. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/asp_plot.py +0 -0
  18. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/csm_camera_plot.py +0 -0
  19. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/gallery.py +0 -0
  20. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/request_planetary_altimetry.py +0 -0
  21. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/cli/stereo_geom.py +0 -0
  22. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/csm_camera.py +0 -0
  23. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/gallery.py +0 -0
  24. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/processing_parameters.py +0 -0
  25. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/report.py +0 -0
  26. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/scenes.py +0 -0
  27. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/stereo.py +0 -0
  28. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/stereo_geometry.py +0 -0
  29. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/stereopair_metadata_parser.py +0 -0
  30. {asp_plot-1.15.0 → asp_plot-1.15.1}/asp_plot/utils.py +0 -0
  31. {asp_plot-1.15.0 → asp_plot-1.15.1}/conda-forge-recipe/meta.yaml +0 -0
  32. {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.0
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "asp_plot"
7
- version = "1.15.0"
7
+ version = "1.15.1"
8
8
  license = {text = "BSD-3-Clause"}
9
9
  authors = [
10
10
  { name="Ben Purinton", email="purinton@uw.edu" },
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