asp-plot 1.6.3__tar.gz → 1.6.4__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 (28) hide show
  1. {asp_plot-1.6.3 → asp_plot-1.6.4}/CHANGELOG.md +6 -0
  2. {asp_plot-1.6.3 → asp_plot-1.6.4}/PKG-INFO +16 -10
  3. {asp_plot-1.6.3 → asp_plot-1.6.4}/README.md +15 -9
  4. {asp_plot-1.6.3 → asp_plot-1.6.4}/pyproject.toml +1 -1
  5. {asp_plot-1.6.3 → asp_plot-1.6.4}/.flake8 +0 -0
  6. {asp_plot-1.6.3 → asp_plot-1.6.4}/.github/workflows/release.yml +0 -0
  7. {asp_plot-1.6.3 → asp_plot-1.6.4}/.github/workflows/run-tests.yml +0 -0
  8. {asp_plot-1.6.3 → asp_plot-1.6.4}/.gitignore +0 -0
  9. {asp_plot-1.6.3 → asp_plot-1.6.4}/.pre-commit-config.yaml +0 -0
  10. {asp_plot-1.6.3 → asp_plot-1.6.4}/LICENSE +0 -0
  11. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/__init__.py +0 -0
  12. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/alignment.py +0 -0
  13. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/altimetry.py +0 -0
  14. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/bundle_adjust.py +0 -0
  15. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/cli/__init__.py +0 -0
  16. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/cli/asp_plot.py +0 -0
  17. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/cli/csm_camera_plot.py +0 -0
  18. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/cli/stereo_geom.py +0 -0
  19. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/csm_camera.py +0 -0
  20. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/processing_parameters.py +0 -0
  21. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/report.py +0 -0
  22. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/scenes.py +0 -0
  23. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/stereo.py +0 -0
  24. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/stereo_geometry.py +0 -0
  25. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/stereopair_metadata_parser.py +0 -0
  26. {asp_plot-1.6.3 → asp_plot-1.6.4}/asp_plot/utils.py +0 -0
  27. {asp_plot-1.6.3 → asp_plot-1.6.4}/conda-forge-recipe/meta.yaml +0 -0
  28. {asp_plot-1.6.3 → asp_plot-1.6.4}/environment.yml +0 -0
@@ -5,6 +5,12 @@ 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.6.4] - 2026-02-17
9
+
10
+ ### Changed
11
+ - Updated README installation instructions with conda-forge as recommended install method
12
+ - Updated README release process documentation for automated pipeline
13
+
8
14
  ## [1.6.3] - 2026-02-16
9
15
 
10
16
  ### Fixed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: asp_plot
3
- Version: 1.6.3
3
+ Version: 1.6.4
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: Issues, https://github.com/uw-cryo/asp_plot/issues
@@ -65,24 +65,30 @@ Not all of those files are used in the plotting, but all are useful for re-proce
65
65
 
66
66
  ## Installation
67
67
 
68
- To get started with `asp_plot`, [find the `environment.yml` file here](https://github.com/uw-cryo/asp_plot/blob/main/environment.yml), download it locally, and create a conda environment:
68
+ ### conda (recommended)
69
69
 
70
- ```
71
- $ conda env create -f environment.yml
72
- ```
73
-
74
- Then activate the environment:
70
+ Install `asp_plot` and all dependencies in one step:
75
71
 
76
72
  ```
77
- $ conda activate asp_plot
73
+ $ conda install -c conda-forge asp-plot
78
74
  ```
79
75
 
80
- And finally, install the `asp_plot` package and CLI tools with pip:
76
+ ### pip
77
+
78
+ Alternatively, install with pip:
81
79
 
82
80
  ```
83
- (asp_plot) $ pip install asp-plot
81
+ $ pip install asp-plot
84
82
  ```
85
83
 
84
+ > [!NOTE]
85
+ > Some dependencies (notably GDAL) can be difficult to install via pip alone. If you run into issues, use the conda approach above, or create a conda environment from the provided [`environment.yml`](https://github.com/uw-cryo/asp_plot/blob/main/environment.yml) first, then install with pip:
86
+ > ```
87
+ > $ conda env create -f environment.yml
88
+ > $ conda activate asp_plot
89
+ > (asp_plot) $ pip install asp-plot
90
+ > ```
91
+
86
92
  ## Notebook example usage
87
93
 
88
94
  Examples of the modular usage of the package can be found in the `notebooks/` directory. Example notebooks are separated by sensor type, e.g.:
@@ -34,24 +34,30 @@ Not all of those files are used in the plotting, but all are useful for re-proce
34
34
 
35
35
  ## Installation
36
36
 
37
- To get started with `asp_plot`, [find the `environment.yml` file here](https://github.com/uw-cryo/asp_plot/blob/main/environment.yml), download it locally, and create a conda environment:
37
+ ### conda (recommended)
38
38
 
39
- ```
40
- $ conda env create -f environment.yml
41
- ```
42
-
43
- Then activate the environment:
39
+ Install `asp_plot` and all dependencies in one step:
44
40
 
45
41
  ```
46
- $ conda activate asp_plot
42
+ $ conda install -c conda-forge asp-plot
47
43
  ```
48
44
 
49
- And finally, install the `asp_plot` package and CLI tools with pip:
45
+ ### pip
46
+
47
+ Alternatively, install with pip:
50
48
 
51
49
  ```
52
- (asp_plot) $ pip install asp-plot
50
+ $ pip install asp-plot
53
51
  ```
54
52
 
53
+ > [!NOTE]
54
+ > Some dependencies (notably GDAL) can be difficult to install via pip alone. If you run into issues, use the conda approach above, or create a conda environment from the provided [`environment.yml`](https://github.com/uw-cryo/asp_plot/blob/main/environment.yml) first, then install with pip:
55
+ > ```
56
+ > $ conda env create -f environment.yml
57
+ > $ conda activate asp_plot
58
+ > (asp_plot) $ pip install asp-plot
59
+ > ```
60
+
55
61
  ## Notebook example usage
56
62
 
57
63
  Examples of the modular usage of the package can be found in the `notebooks/` directory. Example notebooks are separated by sensor type, e.g.:
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "asp_plot"
7
- version = "1.6.3"
7
+ version = "1.6.4"
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