asp-plot 1.6.2__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.
- {asp_plot-1.6.2 → asp_plot-1.6.4}/CHANGELOG.md +11 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/PKG-INFO +24 -23
- {asp_plot-1.6.2 → asp_plot-1.6.4}/README.md +20 -22
- {asp_plot-1.6.2 → asp_plot-1.6.4}/conda-forge-recipe/meta.yaml +8 -4
- {asp_plot-1.6.2 → asp_plot-1.6.4}/pyproject.toml +4 -1
- {asp_plot-1.6.2 → asp_plot-1.6.4}/.flake8 +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/.github/workflows/release.yml +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/.github/workflows/run-tests.yml +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/.gitignore +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/.pre-commit-config.yaml +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/LICENSE +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/__init__.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/alignment.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/altimetry.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/bundle_adjust.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/cli/__init__.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/cli/asp_plot.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/cli/csm_camera_plot.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/cli/stereo_geom.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/csm_camera.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/processing_parameters.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/report.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/scenes.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/stereo.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/stereo_geometry.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/stereopair_metadata_parser.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/asp_plot/utils.py +0 -0
- {asp_plot-1.6.2 → asp_plot-1.6.4}/environment.yml +0 -0
|
@@ -5,6 +5,17 @@ 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
|
+
|
|
14
|
+
## [1.6.3] - 2026-02-16
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- Added missing runtime dependencies to `pyproject.toml`: `geopandas`, `matplotlib-scalebar`, `sliderule`
|
|
18
|
+
|
|
8
19
|
## [1.6.2] - 2026-02-16
|
|
9
20
|
|
|
10
21
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: asp_plot
|
|
3
|
-
Version: 1.6.
|
|
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
|
|
@@ -15,7 +15,9 @@ Requires-Dist: click
|
|
|
15
15
|
Requires-Dist: contextily
|
|
16
16
|
Requires-Dist: fpdf2
|
|
17
17
|
Requires-Dist: gdal
|
|
18
|
+
Requires-Dist: geopandas
|
|
18
19
|
Requires-Dist: matplotlib
|
|
20
|
+
Requires-Dist: matplotlib-scalebar
|
|
19
21
|
Requires-Dist: numpy
|
|
20
22
|
Requires-Dist: pandas
|
|
21
23
|
Requires-Dist: pyproj
|
|
@@ -23,6 +25,7 @@ Requires-Dist: rasterio
|
|
|
23
25
|
Requires-Dist: rioxarray
|
|
24
26
|
Requires-Dist: scipy
|
|
25
27
|
Requires-Dist: shapely
|
|
28
|
+
Requires-Dist: sliderule
|
|
26
29
|
Requires-Dist: xarray
|
|
27
30
|
Description-Content-Type: text/markdown
|
|
28
31
|
|
|
@@ -62,24 +65,30 @@ Not all of those files are used in the plotting, but all are useful for re-proce
|
|
|
62
65
|
|
|
63
66
|
## Installation
|
|
64
67
|
|
|
65
|
-
|
|
68
|
+
### conda (recommended)
|
|
66
69
|
|
|
67
|
-
|
|
68
|
-
$ conda env create -f environment.yml
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
Then activate the environment:
|
|
70
|
+
Install `asp_plot` and all dependencies in one step:
|
|
72
71
|
|
|
73
72
|
```
|
|
74
|
-
$ conda
|
|
73
|
+
$ conda install -c conda-forge asp-plot
|
|
75
74
|
```
|
|
76
75
|
|
|
77
|
-
|
|
76
|
+
### pip
|
|
77
|
+
|
|
78
|
+
Alternatively, install with pip:
|
|
78
79
|
|
|
79
80
|
```
|
|
80
|
-
|
|
81
|
+
$ pip install asp-plot
|
|
81
82
|
```
|
|
82
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
|
+
|
|
83
92
|
## Notebook example usage
|
|
84
93
|
|
|
85
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.:
|
|
@@ -382,20 +391,12 @@ This project follows [Semantic Versioning](https://semver.org/) which uses a thr
|
|
|
382
391
|
|
|
383
392
|
All notable changes are documented in the [CHANGELOG.md](CHANGELOG.md) file in the repository root. When contributing changes, please add an entry to the CHANGELOG.
|
|
384
393
|
|
|
385
|
-
###
|
|
394
|
+
### Release
|
|
386
395
|
|
|
387
|
-
|
|
396
|
+
To release a new version:
|
|
388
397
|
|
|
389
398
|
1. Update version in `pyproject.toml` following semantic versioning rules
|
|
390
|
-
2. Update
|
|
391
|
-
3.
|
|
392
|
-
|
|
393
|
-
Then build and upload the package:
|
|
399
|
+
2. Update `CHANGELOG.md` with the new version and date
|
|
400
|
+
3. Merge to `main`
|
|
394
401
|
|
|
395
|
-
|
|
396
|
-
rm -rf dist/
|
|
397
|
-
python3 -m pip install --upgrade build
|
|
398
|
-
python3 -m build
|
|
399
|
-
python3 -m pip install --upgrade twine
|
|
400
|
-
python3 -m twine upload dist/*
|
|
401
|
-
```
|
|
402
|
+
The GitHub Actions workflow (`.github/workflows/release.yml`) automatically creates a GitHub Release, tag, and publishes to PyPI. The conda-forge feedstock picks up new PyPI versions automatically.
|
|
@@ -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
|
-
|
|
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
|
|
42
|
+
$ conda install -c conda-forge asp-plot
|
|
47
43
|
```
|
|
48
44
|
|
|
49
|
-
|
|
45
|
+
### pip
|
|
46
|
+
|
|
47
|
+
Alternatively, install with pip:
|
|
50
48
|
|
|
51
49
|
```
|
|
52
|
-
|
|
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.:
|
|
@@ -354,20 +360,12 @@ This project follows [Semantic Versioning](https://semver.org/) which uses a thr
|
|
|
354
360
|
|
|
355
361
|
All notable changes are documented in the [CHANGELOG.md](CHANGELOG.md) file in the repository root. When contributing changes, please add an entry to the CHANGELOG.
|
|
356
362
|
|
|
357
|
-
###
|
|
363
|
+
### Release
|
|
358
364
|
|
|
359
|
-
|
|
365
|
+
To release a new version:
|
|
360
366
|
|
|
361
367
|
1. Update version in `pyproject.toml` following semantic versioning rules
|
|
362
|
-
2. Update
|
|
363
|
-
3.
|
|
364
|
-
|
|
365
|
-
Then build and upload the package:
|
|
368
|
+
2. Update `CHANGELOG.md` with the new version and date
|
|
369
|
+
3. Merge to `main`
|
|
366
370
|
|
|
367
|
-
|
|
368
|
-
rm -rf dist/
|
|
369
|
-
python3 -m pip install --upgrade build
|
|
370
|
-
python3 -m build
|
|
371
|
-
python3 -m pip install --upgrade twine
|
|
372
|
-
python3 -m twine upload dist/*
|
|
373
|
-
```
|
|
371
|
+
The GitHub Actions workflow (`.github/workflows/release.yml`) automatically creates a GitHub Release, tag, and publishes to PyPI. The conda-forge feedstock picks up new PyPI versions automatically.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{% set name = "asp-plot" %}
|
|
2
|
-
{% set version = "1.6.
|
|
2
|
+
{% set version = "1.6.3" %}
|
|
3
|
+
{% set python_min = "3.11" %}
|
|
3
4
|
|
|
4
5
|
package:
|
|
5
6
|
name: {{ name|lower }}
|
|
@@ -7,7 +8,7 @@ package:
|
|
|
7
8
|
|
|
8
9
|
source:
|
|
9
10
|
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/asp_plot-{{ version }}.tar.gz
|
|
10
|
-
sha256:
|
|
11
|
+
sha256: 28f66b0e9dcfbc225ade94cff70464a444b1c0c1f109e2d11cdc0e72cbe648f5
|
|
11
12
|
|
|
12
13
|
build:
|
|
13
14
|
noarch: python
|
|
@@ -20,16 +21,18 @@ build:
|
|
|
20
21
|
|
|
21
22
|
requirements:
|
|
22
23
|
host:
|
|
23
|
-
- python
|
|
24
|
+
- python {{ python_min }}
|
|
24
25
|
- pip
|
|
25
26
|
- hatchling
|
|
26
27
|
run:
|
|
27
|
-
- python >=
|
|
28
|
+
- python >={{ python_min }}
|
|
28
29
|
- click
|
|
29
30
|
- contextily
|
|
30
31
|
- fpdf2
|
|
31
32
|
- gdal
|
|
33
|
+
- geopandas
|
|
32
34
|
- matplotlib-base
|
|
35
|
+
- matplotlib-scalebar
|
|
33
36
|
- numpy
|
|
34
37
|
- pandas
|
|
35
38
|
- pyproj
|
|
@@ -37,6 +40,7 @@ requirements:
|
|
|
37
40
|
- rioxarray
|
|
38
41
|
- scipy
|
|
39
42
|
- shapely
|
|
43
|
+
- sliderule
|
|
40
44
|
- xarray
|
|
41
45
|
|
|
42
46
|
test:
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "asp_plot"
|
|
7
|
-
version = "1.6.
|
|
7
|
+
version = "1.6.4"
|
|
8
8
|
license = {text = "BSD-3-Clause"}
|
|
9
9
|
authors = [
|
|
10
10
|
{ name="Ben Purinton", email="purinton@uw.edu" },
|
|
@@ -19,7 +19,9 @@ dependencies = [
|
|
|
19
19
|
"contextily",
|
|
20
20
|
"fpdf2",
|
|
21
21
|
"GDAL",
|
|
22
|
+
"geopandas",
|
|
22
23
|
"matplotlib",
|
|
24
|
+
"matplotlib-scalebar",
|
|
23
25
|
"numpy",
|
|
24
26
|
"pandas",
|
|
25
27
|
"pyproj",
|
|
@@ -27,6 +29,7 @@ dependencies = [
|
|
|
27
29
|
"rioxarray",
|
|
28
30
|
"scipy",
|
|
29
31
|
"shapely",
|
|
32
|
+
"sliderule",
|
|
30
33
|
"xarray",
|
|
31
34
|
]
|
|
32
35
|
classifiers = [
|
|
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
|