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.
- {spacecoords-0.1.0/src/spacecoords.egg-info → spacecoords-0.1.1}/PKG-INFO +1 -1
- {spacecoords-0.1.0 → spacecoords-0.1.1}/pyproject.toml +1 -1
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/spherical.py +1 -2
- {spacecoords-0.1.0 → spacecoords-0.1.1/src/spacecoords.egg-info}/PKG-INFO +1 -1
- {spacecoords-0.1.0 → spacecoords-0.1.1}/LICENSE +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/README.md +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/setup.cfg +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/__init__.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/celestial.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/cli.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/constants.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/download.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/frames.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/linalg.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/py.typed +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/spice.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/spk_basic.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/types.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords/version.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/SOURCES.txt +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/dependency_links.txt +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/entry_points.txt +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/requires.txt +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/src/spacecoords.egg-info/top_level.txt +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_celestial.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_linalg.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_simple_frames.py +0 -0
- {spacecoords-0.1.0 → spacecoords-0.1.1}/tests/test_spherical.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "spacecoords"
|
|
7
|
-
version = "0.1.
|
|
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
|
-
|
|
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,
|
|
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
|
|
File without changes
|