termarium 0.1.2 → 0.1.4

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.
Files changed (3) hide show
  1. package/NOTICE +16 -0
  2. package/README.md +23 -8
  3. package/package.json +1 -1
package/NOTICE CHANGED
@@ -42,6 +42,22 @@ International (CC BY-SA 4.0). Termarium keeps Messier objects, converts RA/Dec
42
42
  to decimal hours/degrees, and adds manually curated entries for M40, M45, and
43
43
  M102 where the OpenNGC Messier field is intentionally absent or ambiguous.
44
44
 
45
+ Termarium includes compact world coastline and land data derived from Natural
46
+ Earth 1:110m coastline and land vectors.
47
+
48
+ Termarium includes a compact Earth color texture downsampled from NASA Blue
49
+ Marble Next Generation July 2004 topography and bathymetry imagery.
50
+
51
+ Source:
52
+ https://www.naturalearthdata.com/
53
+ https://github.com/nvkelso/natural-earth-vector
54
+
55
+ Natural Earth vector and raster map data is public domain. Termarium stores
56
+ reduced offline line and land datasets for the globe map. Made with Natural
57
+ Earth.
58
+
59
+ NASA Blue Marble imagery is courtesy of NASA Earth Observatory.
60
+
45
61
  Termarium's offline planet positions use low-precision orbital elements and
46
62
  methods from NASA/JPL Approximate Positions of the Planets:
47
63
  https://ssd.jpl.nasa.gov/planets/approx_pos.html
package/README.md CHANGED
@@ -1,9 +1,10 @@
1
1
  # Termarium 穹顶终端
2
2
 
3
3
  Termarium is a quiet terminal planetarium. It opens as a full-screen TUI,
4
- asks for your observing location the first time, then renders a real bright-star
5
- sky map with constellations, planets, Messier objects, time travel, and a moon
6
- phase panel.
4
+ lets you choose your observing city from an offline globe the first time, then
5
+ renders a real bright-star sky map with constellations, planets, Messier
6
+ objects, time travel, a moon phase panel, and a horizon flip between Earth and
7
+ sky.
7
8
 
8
9
  ```bash
9
10
  cargo install termarium
@@ -28,9 +29,10 @@ Linux x64, and Windows x64.
28
29
  - Offline Messier deep-sky catalog derived from OpenNGC v20260501
29
30
  - Time travel, city tour, alias-aware target search, constellation highlight, and tonight panel
30
31
  - Crosshair pointer mode for selecting visible stars directly from the sky map
32
+ - Globe view with offline Blue Marble terrain colors, daylight shading, city labels, rotating preview, and horizon flip animation
31
33
  - Offline low-precision Venus, Mars, Jupiter, and Saturn positions
32
34
  - Sun altitude, daylight/twilight state, sunset, and next sunrise
33
- - First-run location setup with city presets, custom coordinates, and timezone
35
+ - First-run city search on the globe, plus setup for custom coordinates and timezone
34
36
  - RA/Dec to Alt/Az sky projection for the current observer and time
35
37
  - Four themes plus ASCII/Unicode character modes
36
38
  - English by default, with in-app Chinese toggle
@@ -59,17 +61,23 @@ space pause / resume
59
61
  [ / ] jump one hour
60
62
  { / } jump one day
61
63
  r return to live sky
62
- / search targets
64
+ / search sky targets
65
+ s setup location; type on the preset row to search city presets
63
66
  x pointer mode; arrows move the crosshair, hover selects a star
67
+ g flip between sky and globe
64
68
  Tab next visible constellation
65
69
  S-Tab previous visible constellation
66
70
  h toggle tonight panel
67
71
  o settings panel
68
72
  v city tour
69
- s setup location
70
73
  ? detailed help
71
74
  ```
72
75
 
76
+ In the globe view, arrow keys rotate to a temporary observing point. `/` searches
77
+ the built-in city list, and visible city names are decluttered so dense regions
78
+ stay readable. The preview is used when you flip back to the sky, but it is not
79
+ saved unless you open setup from that preview and confirm it.
80
+
73
81
  Quick toggles still work, but they are also available in the settings panel:
74
82
 
75
83
  ```text
@@ -90,6 +98,10 @@ constellation names, Chinese constellation names, planets, and Messier objects.
90
98
  For example, `Tau Ceti`, `τ Ceti`, `天仓五`, `HD 10700`, and `HIP 8102` all
91
99
  select the same star.
92
100
 
101
+ The first run opens the globe city search directly. The setup preset row also
102
+ accepts typing to search preset city names, Chinese names, and timezones. The
103
+ matched city fills the location fields, then the usual save row applies it.
104
+
93
105
  ## Data And License
94
106
 
95
107
  The application code is MIT licensed. The bundled star catalog is a filtered
@@ -97,8 +109,11 @@ subset derived from the HYG Database v4.2 and remains under CC BY-SA 4.0. The
97
109
  constellation-line catalog is derived from Marc van der Sluys'
98
110
  ConstellationLines data and remains under CC BY 4.0. The deep-sky catalog is
99
111
  derived from OpenNGC v20260501 and remains under CC BY-SA 4.0. See `NOTICE` for
100
- attribution. Planet and solar calculations are local approximate algorithms
101
- based on NASA/JPL and NOAA public reference formulas.
112
+ attribution. The bundled world coastline and land data is derived from Natural
113
+ Earth 1:110m public domain vector data, and the bundled globe color texture is
114
+ downsampled from NASA Blue Marble Next Generation July 2004 topography and
115
+ bathymetry imagery. Planet and solar calculations are local approximate
116
+ algorithms based on NASA/JPL and NOAA public reference formulas.
102
117
 
103
118
  ## Development
104
119
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termarium",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Termarium 穹顶终端: a quiet terminal planetarium.",
5
5
  "license": "MIT AND CC-BY-SA-4.0 AND CC-BY-4.0",
6
6
  "homepage": "https://github.com/7b7b7b/termarium#readme",