asp-plot 0.0.1__tar.gz → 0.0.2__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 (24) hide show
  1. {asp_plot-0.0.1 → asp_plot-0.0.2}/PKG-INFO +21 -2
  2. {asp_plot-0.0.1 → asp_plot-0.0.2}/README.md +20 -1
  3. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/stereo.py +1 -1
  4. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot.egg-info/PKG-INFO +21 -2
  5. {asp_plot-0.0.1 → asp_plot-0.0.2}/pyproject.toml +1 -1
  6. {asp_plot-0.0.1 → asp_plot-0.0.2}/LICENSE +0 -0
  7. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/__init__.py +0 -0
  8. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/bundle_adjust.py +0 -0
  9. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/cli/__init__.py +0 -0
  10. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/cli/asp_plot.py +0 -0
  11. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/processing_parameters.py +0 -0
  12. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/scenes.py +0 -0
  13. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot/utils.py +0 -0
  14. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot.egg-info/SOURCES.txt +0 -0
  15. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot.egg-info/dependency_links.txt +0 -0
  16. {asp_plot-0.0.1 → asp_plot-0.0.2}/asp_plot.egg-info/top_level.txt +0 -0
  17. {asp_plot-0.0.1 → asp_plot-0.0.2}/setup.cfg +0 -0
  18. {asp_plot-0.0.1 → asp_plot-0.0.2}/setup.py +0 -0
  19. {asp_plot-0.0.1 → asp_plot-0.0.2}/tests/__init__.py +0 -0
  20. {asp_plot-0.0.1 → asp_plot-0.0.2}/tests/test_bundle_adjust.py +0 -0
  21. {asp_plot-0.0.1 → asp_plot-0.0.2}/tests/test_imports.py +0 -0
  22. {asp_plot-0.0.1 → asp_plot-0.0.2}/tests/test_processing_parameters.py +0 -0
  23. {asp_plot-0.0.1 → asp_plot-0.0.2}/tests/test_scenes.py +0 -0
  24. {asp_plot-0.0.1 → asp_plot-0.0.2}/tests/test_stereo.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: asp_plot
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Package for plotting outputs Ames Stereo Pipeline processing
5
5
  Author: Ben Purinton
6
6
  Author-email: Ben Purinton <purinton@uw.edu>
@@ -31,7 +31,11 @@ The directory `original_code/` contains initial notebooks compiled from recent p
31
31
  The functionality of these notebooks is being ported to the `asp_plot/` directory, which is the package `asp_plot`.
32
32
 
33
33
 
34
- ## Installing and testing the package
34
+ ## Installing, testing, and distributing the package
35
+
36
+ ### For Development
37
+
38
+ If you instead want to install the source code for e.g. developing the project:
35
39
 
36
40
  ```
37
41
  $ git clone git@github.com:uw-cryo/asp_plot.git
@@ -48,6 +52,21 @@ To ensure the install was successful, tests can be run with:
48
52
  $ pytest
49
53
  ```
50
54
 
55
+ ### Package and upload
56
+
57
+ ```
58
+ $ python3 -m pip install --upgrade build
59
+ $ python3 -m build
60
+ $ python3 -m pip install --upgrade twine
61
+ $ python3 -m twine upload dist/*
62
+ ```
63
+
64
+ ### Install via pip
65
+
66
+ ```
67
+ pip install asp-plot
68
+ ```
69
+
51
70
  ## Notebook example usage
52
71
 
53
72
  Examples of the modular usage of the package can be found in the `notebooks/` directory.
@@ -16,7 +16,11 @@ The directory `original_code/` contains initial notebooks compiled from recent p
16
16
  The functionality of these notebooks is being ported to the `asp_plot/` directory, which is the package `asp_plot`.
17
17
 
18
18
 
19
- ## Installing and testing the package
19
+ ## Installing, testing, and distributing the package
20
+
21
+ ### For Development
22
+
23
+ If you instead want to install the source code for e.g. developing the project:
20
24
 
21
25
  ```
22
26
  $ git clone git@github.com:uw-cryo/asp_plot.git
@@ -33,6 +37,21 @@ To ensure the install was successful, tests can be run with:
33
37
  $ pytest
34
38
  ```
35
39
 
40
+ ### Package and upload
41
+
42
+ ```
43
+ $ python3 -m pip install --upgrade build
44
+ $ python3 -m build
45
+ $ python3 -m pip install --upgrade twine
46
+ $ python3 -m twine upload dist/*
47
+ ```
48
+
49
+ ### Install via pip
50
+
51
+ ```
52
+ pip install asp-plot
53
+ ```
54
+
36
55
  ## Notebook example usage
37
56
 
38
57
  Examples of the modular usage of the package can be found in the `notebooks/` directory.
@@ -282,7 +282,7 @@ class StereoPlotter(Plotter):
282
282
  diff_clim = ColorBar(perc_range=(2, 98), symm=True).get_clim(diff)
283
283
 
284
284
  self.plot_array(ax=axa[2], array=diff, clim=diff_clim, cmap="RdBu", cbar_label="Elevation diff. (m)")
285
- axa[2].set_title(f"Difference with reference DEM:\n{self.reference_dem.split("/")[-1]}")
285
+ axa[2].set_title(f"Difference with reference DEM:\n{self.reference_dem.split('/')[-1]}")
286
286
 
287
287
  fig.tight_layout()
288
288
  if save_dir and fig_fn:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: asp_plot
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Package for plotting outputs Ames Stereo Pipeline processing
5
5
  Author: Ben Purinton
6
6
  Author-email: Ben Purinton <purinton@uw.edu>
@@ -31,7 +31,11 @@ The directory `original_code/` contains initial notebooks compiled from recent p
31
31
  The functionality of these notebooks is being ported to the `asp_plot/` directory, which is the package `asp_plot`.
32
32
 
33
33
 
34
- ## Installing and testing the package
34
+ ## Installing, testing, and distributing the package
35
+
36
+ ### For Development
37
+
38
+ If you instead want to install the source code for e.g. developing the project:
35
39
 
36
40
  ```
37
41
  $ git clone git@github.com:uw-cryo/asp_plot.git
@@ -48,6 +52,21 @@ To ensure the install was successful, tests can be run with:
48
52
  $ pytest
49
53
  ```
50
54
 
55
+ ### Package and upload
56
+
57
+ ```
58
+ $ python3 -m pip install --upgrade build
59
+ $ python3 -m build
60
+ $ python3 -m pip install --upgrade twine
61
+ $ python3 -m twine upload dist/*
62
+ ```
63
+
64
+ ### Install via pip
65
+
66
+ ```
67
+ pip install asp-plot
68
+ ```
69
+
51
70
  ## Notebook example usage
52
71
 
53
72
  Examples of the modular usage of the package can be found in the `notebooks/` directory.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "asp_plot"
7
- version = "0.0.1"
7
+ version = "0.0.2"
8
8
  authors = [
9
9
  { name="Ben Purinton", email="purinton@uw.edu" },
10
10
  ]
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