cynthium 0.0a1__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.
- cynthium-0.0a1/.gitignore +58 -0
- cynthium-0.0a1/LICENSE +674 -0
- cynthium-0.0a1/PKG-INFO +770 -0
- cynthium-0.0a1/README.md +72 -0
- cynthium-0.0a1/pyproject.toml +57 -0
- cynthium-0.0a1/src/cynthium/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/__main__.py +4 -0
- cynthium-0.0a1/src/cynthium/app/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/config.py +186 -0
- cynthium-0.0a1/src/cynthium/app/constants.py +0 -0
- cynthium-0.0a1/src/cynthium/app/controllers/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/data.py +137 -0
- cynthium-0.0a1/src/cynthium/app/engine/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/engine/illumination/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/engine/illumination/sun_position.py +48 -0
- cynthium-0.0a1/src/cynthium/app/engine/pathfinding/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/engine/pathfinding/theta_star.py +247 -0
- cynthium-0.0a1/src/cynthium/app/engine/raster/point_conversion.py +15 -0
- cynthium-0.0a1/src/cynthium/app/engine/simulation/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/engine/simulation/path_sampling.py +52 -0
- cynthium-0.0a1/src/cynthium/app/engine/simulation/rover_dynamics.py +139 -0
- cynthium-0.0a1/src/cynthium/app/engine/simulation/rover_physics.py +169 -0
- cynthium-0.0a1/src/cynthium/app/engine/simulation/rover_settings.py +45 -0
- cynthium-0.0a1/src/cynthium/app/engine/simulation/stats.py +310 -0
- cynthium-0.0a1/src/cynthium/app/io/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/io/export/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/io/export/simulation_csv.py +65 -0
- cynthium-0.0a1/src/cynthium/app/io/reader.py +55 -0
- cynthium-0.0a1/src/cynthium/app/main.py +40 -0
- cynthium-0.0a1/src/cynthium/app/models/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/layers/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/layers/annotation_layer.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/layers/base_layer.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/layers/mesh_layer.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/layers/raster_layer.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/layers/temporal_layer.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/layers/vector_layer.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/metadata/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/metadata/dataset_metadata.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/metadata/instrument_metadata.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/metadata/projection_metadata.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/project.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/simulation_state.py +0 -0
- cynthium-0.0a1/src/cynthium/app/models/viewport_state.py +0 -0
- cynthium-0.0a1/src/cynthium/app/rendering/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/rendering/flat/heightmap.py +0 -0
- cynthium-0.0a1/src/cynthium/app/rendering/render_map.py +0 -0
- cynthium-0.0a1/src/cynthium/app/rendering/terrain/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/rendering/terrain/render.py +89 -0
- cynthium-0.0a1/src/cynthium/app/services/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/services/simulation_service.py +94 -0
- cynthium-0.0a1/src/cynthium/app/services/site_rasters.py +218 -0
- cynthium-0.0a1/src/cynthium/app/ui/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/ui/map/map_view.py +247 -0
- cynthium-0.0a1/src/cynthium/app/ui/map/terrain_view.py +348 -0
- cynthium-0.0a1/src/cynthium/app/ui/map/view_container.py +410 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/__init__.py +1 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/menubar.py +26 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/sidebar/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/sidebar/container.py +90 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/sidebar/map_selection_panel.py +133 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/sidebar/planning_panel.py +202 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/sidebar/rover_settings_panel.py +63 -0
- cynthium-0.0a1/src/cynthium/app/ui/panels/simulation_results_panel.py +201 -0
- cynthium-0.0a1/src/cynthium/app/utils/__init__.py +0 -0
- cynthium-0.0a1/src/cynthium/app/utils/logger.py +34 -0
- cynthium-0.0a1/src/cynthium/app/window.py +377 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
*.zip
|
|
10
|
+
|
|
11
|
+
data-release
|
|
12
|
+
|
|
13
|
+
*.tif.aux.xml
|
|
14
|
+
|
|
15
|
+
tests/
|
|
16
|
+
|
|
17
|
+
# Distribution / packaging
|
|
18
|
+
.Python
|
|
19
|
+
build/
|
|
20
|
+
dist/
|
|
21
|
+
*.egg-info/
|
|
22
|
+
.eggs/
|
|
23
|
+
pip-wheel-metadata/
|
|
24
|
+
|
|
25
|
+
# Virtual environments
|
|
26
|
+
.venv/
|
|
27
|
+
venv/
|
|
28
|
+
env/
|
|
29
|
+
ENV/
|
|
30
|
+
|
|
31
|
+
# data maps (too large...)
|
|
32
|
+
|
|
33
|
+
# Test / coverage
|
|
34
|
+
.pytest_cache/
|
|
35
|
+
.coverage
|
|
36
|
+
.coverage.*
|
|
37
|
+
htmlcov/
|
|
38
|
+
.mypy_cache/
|
|
39
|
+
.ruff_cache/
|
|
40
|
+
.pyre/
|
|
41
|
+
.hypothesis/
|
|
42
|
+
|
|
43
|
+
# Jupyter
|
|
44
|
+
.ipynb_checkpoints/
|
|
45
|
+
|
|
46
|
+
# Local app/runtime data
|
|
47
|
+
*.log
|
|
48
|
+
|
|
49
|
+
# IDE / editor
|
|
50
|
+
.vscode/
|
|
51
|
+
.idea/
|
|
52
|
+
*.swp
|
|
53
|
+
*.swo
|
|
54
|
+
*~
|
|
55
|
+
|
|
56
|
+
# OS files
|
|
57
|
+
.DS_Store
|
|
58
|
+
Thumbs.db
|