spacecoords 0.1.0__tar.gz → 0.1.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.

Potentially problematic release.


This version of spacecoords might be problematic. Click here for more details.

Files changed (28) hide show
  1. {spacecoords-0.1.0/src/spacecoords.egg-info → spacecoords-0.1.1}/PKG-INFO +1 -1
  2. {spacecoords-0.1.0 → spacecoords-0.1.1}/pyproject.toml +1 -1
  3. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/spherical.py +1 -2
  4. {spacecoords-0.1.0 → spacecoords-0.1.1/src/spacecoords.egg-info}/PKG-INFO +1 -1
  5. {spacecoords-0.1.0 → spacecoords-0.1.1}/LICENSE +0 -0
  6. {spacecoords-0.1.0 → spacecoords-0.1.1}/README.md +0 -0
  7. {spacecoords-0.1.0 → spacecoords-0.1.1}/setup.cfg +0 -0
  8. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/__init__.py +0 -0
  9. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/celestial.py +0 -0
  10. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/cli.py +0 -0
  11. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/constants.py +0 -0
  12. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/download.py +0 -0
  13. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/frames.py +0 -0
  14. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/linalg.py +0 -0
  15. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/py.typed +0 -0
  16. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/spice.py +0 -0
  17. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/spk_basic.py +0 -0
  18. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/types.py +0 -0
  19. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/version.py +0 -0
  20. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/SOURCES.txt +0 -0
  21. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/dependency_links.txt +0 -0
  22. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/entry_points.txt +0 -0
  23. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/requires.txt +0 -0
  24. {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/top_level.txt +0 -0
  25. {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_celestial.py +0 -0
  26. {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_linalg.py +0 -0
  27. {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_simple_frames.py +0 -0
  28. {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_spherical.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: spacecoords
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A collection of coordinate transforms for convenient use
5
5
  Author-email: Daniel Kastinen <daniel.kastinen@irf.se>
6
6
  Maintainer-email: Daniel Kastinen <daniel.kastinen@irf.se>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "spacecoords"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "A collection of coordinate transforms for convenient use"
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  authors = [{ name = "Daniel Kastinen", email = "daniel.kastinen@irf.se" }]
@@ -135,7 +135,7 @@ def az_el_to_sph(
135
135
 
136
136
 
137
137
  def az_el_point(
138
- self, azimuth: NDArray_N | float, elevation: NDArray_N | float, degrees: bool = False
138
+ azimuth: NDArray_N | float, elevation: NDArray_N | float, degrees: bool = False
139
139
  ) -> NDArray_3xN | NDArray_3:
140
140
  """Point beam towards azimuth and elevation coordinate.
141
141
 
@@ -156,7 +156,6 @@ def az_el_point(
156
156
 
157
157
 
158
158
  def az_el_vs_cart_angle(
159
- self,
160
159
  azimuth: NDArray_N | float,
161
160
  elevation: NDArray_N | float,
162
161
  cart: NDArray_3xN | NDArray_3,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: spacecoords
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A collection of coordinate transforms for convenient use
5
5
  Author-email: Daniel Kastinen <daniel.kastinen@irf.se>
6
6
  Maintainer-email: Daniel Kastinen <daniel.kastinen@irf.se>
File without changes
File without changes
File without changes