termarium 0.1.5 → 0.1.6
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.
- package/README.md +18 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,8 @@ Linux x64, and Windows x64.
|
|
|
30
30
|
- Time travel, city tour, alias-aware target search, constellation highlight, and tonight panel
|
|
31
31
|
- Crosshair pointer mode for selecting visible stars directly from the sky map
|
|
32
32
|
- Globe view with offline Blue Marble terrain colors, daylight shading, city labels, rotating preview, and horizon flip animation
|
|
33
|
+
- Optional horizon and bearing-oriented ground landscape modes
|
|
34
|
+
- Configurable sky orientation: observer view defaults to east on the left and west on the right, with a map-style option
|
|
33
35
|
- Offline low-precision Venus, Mars, Jupiter, and Saturn positions
|
|
34
36
|
- Sun altitude, daylight/twilight state, sunset, and next sunrise
|
|
35
37
|
- First-run city search on the globe, plus setup for custom coordinates and timezone
|
|
@@ -54,22 +56,10 @@ termarium --time 2026-05-07T14:00:00Z
|
|
|
54
56
|
Inside the TUI:
|
|
55
57
|
|
|
56
58
|
```text
|
|
57
|
-
q quit
|
|
58
|
-
Esc clear selected target; quit if nothing is selected
|
|
59
|
-
←/→ switch city preset
|
|
60
|
-
space pause / resume
|
|
61
|
-
[ / ] jump one hour
|
|
62
|
-
{ / } jump one day
|
|
63
|
-
r return to live sky
|
|
64
59
|
/ search sky targets
|
|
65
60
|
s setup location; type on the preset row to search city presets
|
|
66
|
-
x pointer mode; arrows move the crosshair, hover selects a star
|
|
67
61
|
g flip between sky and globe
|
|
68
|
-
Tab next visible constellation
|
|
69
|
-
S-Tab previous visible constellation
|
|
70
|
-
h toggle tonight panel
|
|
71
62
|
o settings panel
|
|
72
|
-
v city tour
|
|
73
63
|
? detailed help
|
|
74
64
|
```
|
|
75
65
|
|
|
@@ -81,6 +71,20 @@ saved unless you open setup from that preview and confirm it.
|
|
|
81
71
|
Quick toggles still work, but they are also available in the settings panel:
|
|
82
72
|
|
|
83
73
|
```text
|
|
74
|
+
q quit; exits constellation zoom first
|
|
75
|
+
Esc clear selected target; quit if nothing is selected
|
|
76
|
+
←/→ switch city preset; rotate longitude in globe view
|
|
77
|
+
↑/↓ adjust latitude in globe view
|
|
78
|
+
space pause / resume
|
|
79
|
+
[ / ] jump one hour
|
|
80
|
+
{ / } jump one day
|
|
81
|
+
r return to live sky
|
|
82
|
+
x pointer mode; arrows move the crosshair, hover selects a star
|
|
83
|
+
z zoom selected constellation
|
|
84
|
+
Tab next visible constellation
|
|
85
|
+
S-Tab previous visible constellation
|
|
86
|
+
h toggle tonight panel
|
|
87
|
+
v city tour
|
|
84
88
|
a toggle animations
|
|
85
89
|
p toggle planets
|
|
86
90
|
d toggle deep-sky objects
|
|
@@ -93,6 +97,8 @@ c toggle constellation lines
|
|
|
93
97
|
+ / - adjust limiting magnitude
|
|
94
98
|
```
|
|
95
99
|
|
|
100
|
+
Landscape mode and sky orientation are available from the settings panel.
|
|
101
|
+
|
|
96
102
|
Search accepts proper names, curated aliases, HIP/HD-style identifiers, western
|
|
97
103
|
constellation names, Chinese constellation names, planets, and Messier objects.
|
|
98
104
|
For example, `Tau Ceti`, `τ Ceti`, `天仓五`, `HD 10700`, and `HIP 8102` all
|
package/package.json
CHANGED