nost-tools 2.0.0__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 nost-tools might be problematic. Click here for more details.
- nost_tools-2.0.0/LICENSE +29 -0
- nost_tools-2.0.0/PKG-INFO +119 -0
- nost_tools-2.0.0/README.md +60 -0
- nost_tools-2.0.0/nost_tools/__init__.py +29 -0
- nost_tools-2.0.0/nost_tools/application.py +793 -0
- nost_tools-2.0.0/nost_tools/application_utils.py +262 -0
- nost_tools-2.0.0/nost_tools/configuration.py +304 -0
- nost_tools-2.0.0/nost_tools/entity.py +73 -0
- nost_tools-2.0.0/nost_tools/errors.py +14 -0
- nost_tools-2.0.0/nost_tools/logger_application.py +192 -0
- nost_tools-2.0.0/nost_tools/managed_application.py +261 -0
- nost_tools-2.0.0/nost_tools/manager.py +472 -0
- nost_tools-2.0.0/nost_tools/observer.py +181 -0
- nost_tools-2.0.0/nost_tools/publisher.py +141 -0
- nost_tools-2.0.0/nost_tools/schemas.py +426 -0
- nost_tools-2.0.0/nost_tools/simulator.py +531 -0
- nost_tools-2.0.0/nost_tools.egg-info/PKG-INFO +119 -0
- nost_tools-2.0.0/nost_tools.egg-info/SOURCES.txt +24 -0
- nost_tools-2.0.0/nost_tools.egg-info/dependency_links.txt +1 -0
- nost_tools-2.0.0/nost_tools.egg-info/requires.txt +48 -0
- nost_tools-2.0.0/nost_tools.egg-info/top_level.txt +1 -0
- nost_tools-2.0.0/pyproject.toml +78 -0
- nost_tools-2.0.0/setup.cfg +4 -0
- nost_tools-2.0.0/tests/test_entity.py +53 -0
- nost_tools-2.0.0/tests/test_observer.py +105 -0
- nost_tools-2.0.0/tests/test_simulator.py +303 -0
nost_tools-2.0.0/LICENSE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022, Stevens Institute of Technology
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nost_tools
|
|
3
|
+
Version: 2.0.0
|
|
4
|
+
Summary: Tools for Novel Observing Strategies Testbed (NOS-T) Applications
|
|
5
|
+
Author-email: "Paul T. Grogan" <paul.grogan@asu.edu>, "Emmanuel M. Gonzalez" <emmanuelgonzalez@asu.edu>
|
|
6
|
+
License: BSD 3-Clause License
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: ntplib
|
|
14
|
+
Requires-Dist: numpy>=2
|
|
15
|
+
Requires-Dist: pandas>=2
|
|
16
|
+
Requires-Dist: pydantic<3,>=2
|
|
17
|
+
Requires-Dist: python-dateutil
|
|
18
|
+
Requires-Dist: pika>=1
|
|
19
|
+
Requires-Dist: python-dotenv
|
|
20
|
+
Requires-Dist: pyyaml
|
|
21
|
+
Requires-Dist: python-keycloak>=5
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: black[jupyter]>=24.2; extra == "dev"
|
|
24
|
+
Requires-Dist: coverage; extra == "dev"
|
|
25
|
+
Requires-Dist: pylint; extra == "dev"
|
|
26
|
+
Requires-Dist: pylint-pydantic; extra == "dev"
|
|
27
|
+
Requires-Dist: pytest; extra == "dev"
|
|
28
|
+
Provides-Extra: examples
|
|
29
|
+
Requires-Dist: dash; extra == "examples"
|
|
30
|
+
Requires-Dist: dash-daq; extra == "examples"
|
|
31
|
+
Requires-Dist: flask; extra == "examples"
|
|
32
|
+
Requires-Dist: python-dotenv; extra == "examples"
|
|
33
|
+
Requires-Dist: scipy; extra == "examples"
|
|
34
|
+
Requires-Dist: seaborn; extra == "examples"
|
|
35
|
+
Requires-Dist: skyfield; extra == "examples"
|
|
36
|
+
Requires-Dist: matplotlib>=3; extra == "examples"
|
|
37
|
+
Requires-Dist: xarray>=2023; extra == "examples"
|
|
38
|
+
Requires-Dist: rioxarray>=0.13; extra == "examples"
|
|
39
|
+
Requires-Dist: geopandas>=0.12; extra == "examples"
|
|
40
|
+
Requires-Dist: netCDF4>=1.6; extra == "examples"
|
|
41
|
+
Requires-Dist: aiobotocore>=2.17; extra == "examples"
|
|
42
|
+
Requires-Dist: botocore>=1.35; extra == "examples"
|
|
43
|
+
Requires-Dist: boto3>=1.35; extra == "examples"
|
|
44
|
+
Requires-Dist: tatc<=3.4.3; extra == "examples"
|
|
45
|
+
Requires-Dist: s3fs>=2024.10.0; extra == "examples"
|
|
46
|
+
Requires-Dist: pulp>=2.9.0; extra == "examples"
|
|
47
|
+
Requires-Dist: h5netcdf>=1.0; extra == "examples"
|
|
48
|
+
Provides-Extra: docs
|
|
49
|
+
Requires-Dist: autodoc_pydantic>=2; extra == "docs"
|
|
50
|
+
Requires-Dist: docutils; extra == "docs"
|
|
51
|
+
Requires-Dist: readthedocs-sphinx-search; extra == "docs"
|
|
52
|
+
Requires-Dist: sphinx>=7; extra == "docs"
|
|
53
|
+
Requires-Dist: sphinx_rtd_theme; extra == "docs"
|
|
54
|
+
Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
55
|
+
Requires-Dist: sphinx_design; extra == "docs"
|
|
56
|
+
Requires-Dist: myst-parser; extra == "docs"
|
|
57
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "docs"
|
|
58
|
+
Dynamic: license-file
|
|
59
|
+
|
|
60
|
+
# Novel Observing Strategies Testbed (NOS-T)
|
|
61
|
+
|
|
62
|
+
The Novel Observing Strategies Testbed (NOS-T) is a computational testbed for
|
|
63
|
+
maturing technologies related to the NASA Novel Observing Strategies thrust.
|
|
64
|
+
|
|
65
|
+
Documentation: https://nost-tools.readthedocs.io
|
|
66
|
+
|
|
67
|
+
## NOS-T Tools Installation
|
|
68
|
+
|
|
69
|
+
NOS-T tools is a collection of tools for the Novel Observing Strategies Testbed
|
|
70
|
+
(NOS-T). Installing `nost-tools` as an editable Python library requires `pip`
|
|
71
|
+
version 23 or greater (install via `python -m pip install --upgrade pip`).
|
|
72
|
+
|
|
73
|
+
To install `nost-tools`, run the following command from the project root
|
|
74
|
+
directory:
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
pip install -e .
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Alternatively, to install supplemental libraries required for examples, run
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
pip install -e .[examples]
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Contact
|
|
87
|
+
|
|
88
|
+
Principal Investigator: Paul T. Grogan <paul.grogan@asu.edu>
|
|
89
|
+
|
|
90
|
+
## Acknowledgements
|
|
91
|
+
|
|
92
|
+
This material is based on work supported, in whole or in part, by the U.S.
|
|
93
|
+
Department of Defense and National Aeronautics and Space Administration Earth
|
|
94
|
+
Science Technology Office (NASA ESTO) through the Systems Engineering Research
|
|
95
|
+
Center (SERC) under Contract No. W15QKN-18-D-0040. SERC is a federally funded
|
|
96
|
+
University Affiliated Research Center managed by Stevens Institute of
|
|
97
|
+
Technology. Any opinions, findings, and conclusions or recommendations
|
|
98
|
+
expressed in this material are those of the authors and do not necessarily
|
|
99
|
+
reflect the views of the United States Department of Defense.
|
|
100
|
+
|
|
101
|
+
This research has made use of NASA Goddard Science Managed Cloud Environment
|
|
102
|
+
(SMCE), which is a service of the Computational & Information Sciences and
|
|
103
|
+
Technology Office at the NASA Goddard Space Flight Center.
|
|
104
|
+
|
|
105
|
+
Current project team:
|
|
106
|
+
|
|
107
|
+
- PI: Paul T. Grogan <paul.grogan@asu.edu>
|
|
108
|
+
- Research Scientist: Emmanuel M. Gonzalez <emmanuelgonzalez@asu.edu>
|
|
109
|
+
|
|
110
|
+
Project alumni:
|
|
111
|
+
|
|
112
|
+
- Hayden Daly
|
|
113
|
+
- Matthew Brand
|
|
114
|
+
- Jerry Sellers
|
|
115
|
+
- Brian Chell
|
|
116
|
+
- Matthew LeVine
|
|
117
|
+
- Leigha Capra
|
|
118
|
+
- Theodore Sherman
|
|
119
|
+
- Alex Yucra Castaneda
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Novel Observing Strategies Testbed (NOS-T)
|
|
2
|
+
|
|
3
|
+
The Novel Observing Strategies Testbed (NOS-T) is a computational testbed for
|
|
4
|
+
maturing technologies related to the NASA Novel Observing Strategies thrust.
|
|
5
|
+
|
|
6
|
+
Documentation: https://nost-tools.readthedocs.io
|
|
7
|
+
|
|
8
|
+
## NOS-T Tools Installation
|
|
9
|
+
|
|
10
|
+
NOS-T tools is a collection of tools for the Novel Observing Strategies Testbed
|
|
11
|
+
(NOS-T). Installing `nost-tools` as an editable Python library requires `pip`
|
|
12
|
+
version 23 or greater (install via `python -m pip install --upgrade pip`).
|
|
13
|
+
|
|
14
|
+
To install `nost-tools`, run the following command from the project root
|
|
15
|
+
directory:
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
pip install -e .
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Alternatively, to install supplemental libraries required for examples, run
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
pip install -e .[examples]
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Contact
|
|
28
|
+
|
|
29
|
+
Principal Investigator: Paul T. Grogan <paul.grogan@asu.edu>
|
|
30
|
+
|
|
31
|
+
## Acknowledgements
|
|
32
|
+
|
|
33
|
+
This material is based on work supported, in whole or in part, by the U.S.
|
|
34
|
+
Department of Defense and National Aeronautics and Space Administration Earth
|
|
35
|
+
Science Technology Office (NASA ESTO) through the Systems Engineering Research
|
|
36
|
+
Center (SERC) under Contract No. W15QKN-18-D-0040. SERC is a federally funded
|
|
37
|
+
University Affiliated Research Center managed by Stevens Institute of
|
|
38
|
+
Technology. Any opinions, findings, and conclusions or recommendations
|
|
39
|
+
expressed in this material are those of the authors and do not necessarily
|
|
40
|
+
reflect the views of the United States Department of Defense.
|
|
41
|
+
|
|
42
|
+
This research has made use of NASA Goddard Science Managed Cloud Environment
|
|
43
|
+
(SMCE), which is a service of the Computational & Information Sciences and
|
|
44
|
+
Technology Office at the NASA Goddard Space Flight Center.
|
|
45
|
+
|
|
46
|
+
Current project team:
|
|
47
|
+
|
|
48
|
+
- PI: Paul T. Grogan <paul.grogan@asu.edu>
|
|
49
|
+
- Research Scientist: Emmanuel M. Gonzalez <emmanuelgonzalez@asu.edu>
|
|
50
|
+
|
|
51
|
+
Project alumni:
|
|
52
|
+
|
|
53
|
+
- Hayden Daly
|
|
54
|
+
- Matthew Brand
|
|
55
|
+
- Jerry Sellers
|
|
56
|
+
- Brian Chell
|
|
57
|
+
- Matthew LeVine
|
|
58
|
+
- Leigha Capra
|
|
59
|
+
- Theodore Sherman
|
|
60
|
+
- Alex Yucra Castaneda
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
__version__ = "2.0.0"
|
|
2
|
+
|
|
3
|
+
from .application import Application
|
|
4
|
+
from .application_utils import ConnectionConfig, ModeStatusObserver, TimeStatusPublisher
|
|
5
|
+
from .configuration import ConnectionConfig
|
|
6
|
+
from .entity import Entity
|
|
7
|
+
|
|
8
|
+
# from .logger_application import LoggerApplication
|
|
9
|
+
from .managed_application import ManagedApplication
|
|
10
|
+
from .manager import Manager, TimeScaleUpdate
|
|
11
|
+
from .observer import Observable, Observer
|
|
12
|
+
from .publisher import ScenarioTimeIntervalPublisher, WallclockTimeIntervalPublisher
|
|
13
|
+
from .schemas import (
|
|
14
|
+
InitCommand,
|
|
15
|
+
InitTaskingParameters,
|
|
16
|
+
ModeStatus,
|
|
17
|
+
ModeStatusProperties,
|
|
18
|
+
ReadyStatus,
|
|
19
|
+
ReadyStatusProperties,
|
|
20
|
+
StartCommand,
|
|
21
|
+
StartTaskingParameters,
|
|
22
|
+
StopCommand,
|
|
23
|
+
StopTaskingParameters,
|
|
24
|
+
TimeStatus,
|
|
25
|
+
TimeStatusProperties,
|
|
26
|
+
UpdateCommand,
|
|
27
|
+
UpdateTaskingParameters,
|
|
28
|
+
)
|
|
29
|
+
from .simulator import Mode, Simulator
|