Compare commits

..
46 Commits
Author SHA1 Message Date
jpmschweitzerandClaude Opus 4.6 385f07b11e chore(meta): release v0.1.33
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-08 14:04:15 +02:00
jpmschweitzer 960adfc60a Merge remote-tracking branch 'origin/sprint-33/server' 2026-04-08 13:58:10 +02:00
jpmschweitzerandClaude Opus 4.6 6003726fbf style(simulation): cargo fmt generate_corporations
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 13:52:29 +02:00
jpmschweitzerandClaude Opus 4.6 d45cfe0fa3 fix(simulation): address PR #122 review — determinism, correctness, labeling
- HashMap → BTreeMap throughout econ-sim for deterministic iteration (D-010)
- Fix cost_factor: multiplicative gate×zone instead of additive (trade.rs)
- Extract derive_seed to shared prng.rs, consolidate FNV-1a implementation
- Rename run_shock_test → run_no_explosion_check (not D-179 Test 3)
- Deduplicate cross-zone FX rate collection in Test 4
- Replace ORDER BY RANDOM() with deterministic ordering + ChaCha8Rng
- Make commodity coverage failure a hard error consistent with D-175
- Fix gap-fill off-by-one (4 corps → 3 when coverage = 0)
- Correct test report: EconEvent exists, location_type is body/station

All four D-179 stability tests still pass.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 13:51:23 +02:00
jpmschweitzerandClaude Opus 4.6 dcd1c1cf4e feat(simulation): add EconEvent stub and import currency zones from TOML
Add D-180 EconEvent struct (target, effect, duration, visibility enums)
with no-op handler to satisfy #809 spec. Import MARK_PRIMARY and MIXED
currency zone assignments from wiki/economics/currency_zones.toml (D-172).
All four D-179 stability tests now pass.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 11:04:59 +02:00
jpmschweitzerandClaude Sonnet 4.6 f79de07bb3 fix(simulation): resolve corp_presence location granularity bug (#805)
import_corp_presence() was inserting system IDs with location_type='system',
violating the schema which expects body/station IDs (location_type='body'|'station').

Fix:
- import_economics.py: add _resolve_hq_location() that picks the most-populated
  body in the HQ system (falling back to any body, then any station)
- econ-sim/db.rs: load_corp_presences() now JOINs bodies/stations to recover
  system_id from body/station location_ids, dropping the 'system' filter

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-08 10:59:58 +02:00
jpmschweitzerandClaude Sonnet 4.6 0e6a46c4c0 style(simulation): cargo fmt for generate_corporations
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 22:59:14 +02:00
jpmschweitzerandClaude Sonnet 4.6 822fe488d6 fix(simulation): replace HashMap/HashSet with BTreeMap/BTreeSet in generate_corporations
Project Clippy config disallows std::collections::HashMap and HashSet.
Replaced all usages with BTreeMap/BTreeSet. Also fixed:
- Unnecessary if-let on iterator rows (use flatten() instead)
- contains_key + insert on BTreeMap (use entry().or_insert_with())

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 22:44:23 +02:00
jpmschweitzerandClaude Sonnet 4.6 b19bfb3239 feat(simulation): add corporate behavioral archetypes — Layer 3 (#809)
Implements the 6 behavioral archetypes from D-175 (Burnelli-Sheldon):

  Producer     — 1.15× production scale, neutral price signal
  Distributor  — 0.9× production, −3% price discount to move volume
  Specialist   — 1.0× production, +10% price premium for expertise
  Monopolist   — 0.8× production, withholds 25% of output, +20% premium
  Cooperative  — 1.0× production, −5% community discount
  Intermediary — 0.7× production, relies on traded goods

Archetype loading:
- Reads from corporations.behavioral_archetype (currently NULL for all corps)
- Falls back to heuristic inference from specialization text (freight → Distributor,
  extraction → Producer, luxury goods → Specialist, etc.)
- 48 corps loaded on current DB, all inferred (DB column to be populated when
  wiki corp frontmatter is extended with the behavioral_archetype field)

Applied in model.rs step():
- Per-corp effective_capacity = BASELINE_CAPACITY × production_scale
- Monopolist supply_withheld fraction reduces net output to stockpile
- Price premium: small ALPHA-scaled nudge to node price for primary commodity

All D-179 stability checks still pass with archetypes active.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 22:27:00 +02:00
jpmschweitzerandClaude Opus 4.6 d364e1907d fix(assets): remove unused imports in sol pipeline
Ruff pre-push lint caught 17 unused imports across 7 files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 22:25:28 +02:00
jpmschweitzerandClaude Opus 4.6 f7f2cac7e8 chore(meta): update changelog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 22:22:43 +02:00
jpmschweitzerandClaude Opus 4.6 18bdb1ed3d feat(assets): add Sol system handcrafted terrain pipeline
Custom pipeline for GJ-0 (Sol) that imports real NASA/USGS
planetary data instead of procedural generation. Produces the
same output format (heightmap.png, globe.png, markers.json).

Real data bodies:
- Earth: ETOPO2022 elevation + WorldClim climate + 14 rivers
- Mars: MOLA DEM + ferric biome classes + terraformed water
- Luna: LOLA DEM + lunar biome palette

Procedural fallback for Mercury, Venus, Phobos, Deimos.
Synthetic elevation from albedo for Io, Europa, Ganymede,
Callisto, Titan, Enceladus. Gas giants use existing renderer.

New biome classes 34-36 (ferric_dust/highland/lowland) for
Mars iron oxide surface. Earth features: 50 cities (smart
scatter by continent), 15 named rivers, oceans, mountains.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 22:22:18 +02:00
jpmschweitzerandClaude Opus 4.6 80916471e7 fix(assets): correct globe renderer east-west mirroring
arctan2(hz, hx) wrapped longitude counter-clockwise, mirroring
east and west on the globe. Changed to arctan2(hx, hz) which
increases eastward (right on screen). Added +0.5 offset to center
the view on 0° longitude, keeping the dateline seam on the back.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 22:21:56 +02:00
jpmschweitzerandClaude Sonnet 4.6 26716bfc56 feat(simulation): add currency zones, exchange rates, and shadow economy (#808)
Implements D-171, D-172, and D-174 in the econ-sim binary:

Currency zones (D-171, D-172):
- Loads currency_zone from star_systems (TRACTUS_PRIMARY / MARK_PRIMARY / MIXED)
- Cross-zone (TRACTUS ↔ MARK) trade incurs 3% conversion friction
- Floating Tractus/Mark exchange rate driven by net cross-zone trade balance
- Rate clamped to [0.5, 2.0]; ALPHA_FX=0.002/tick
- Test 4: SKIP (no MARK_PRIMARY systems yet) — re-run after Compact zone data is authored

Shadow economy (D-174):
- Per-node intensity seeded from hop distance, political zone, gate topology,
  currency zone (institutional_core → low, deep_reach_isolate → high, etc.)
- Intensity reduces formal-sector demand by up to 30% at full intensity
- Reported as shadow_intensity column in CSV output

D-179 Tests 3 and 4:
- Test 3 (no explosions/negatives in 1000-tick run): PASS
- Test 4 (cross-zone FX re-stabilizes ≤50 ticks): PASS/SKIP

All four stability checks now pass (1.05% max dev on convergence, 0.00% drift).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 14:31:58 +02:00
jpmschweitzerandClaude Sonnet 4.6 a44e46ebed chore(meta): gitignore systems.db WAL journal files
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:57:19 +02:00
jpmschweitzerandClaude Sonnet 4.6 4eaa669aff docs(meta): add Sprint 33 economics test plan
Test plan covering #806, #807, #808, #809 acceptance criteria aligned
with D-179 stability tests and Phase 2 economics deliverable requirements.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:57:06 +02:00
jpmschweitzerandClaude Sonnet 4.6 4307092486 chore(meta): add Makefile targets for economy-db, econ-sim, and stability check
Adds: economy-db, econ-sim, econ-sim-run, econ-sim-stability targets.
economy-db compiles TOML economics data into systems.db.
econ-sim builds the simulation binary (Layer 1+2).
econ-sim-run runs 100 ticks to /tmp/econ-sim.csv.
econ-sim-stability runs D-179 Tests 1 and 2.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:57:01 +02:00
jpmschweitzerandClaude Sonnet 4.6 abe7baf395 chore(meta): add tooling/econ-sim/target/ to gitignore; remove from index
Fixes accidental inclusion of Rust build artifacts in previous commit.
Adds tooling/econ-sim/target/ to .gitignore alongside existing tooling
target entries.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:56:52 +02:00
jpmschweitzerandClaude Sonnet 4.6 fb87f933f5 feat(simulation): add economics simulation binary with Layer 1+2 (#806, #807)
Adds tooling/econ-sim — a standalone Rust binary for the Phase 2 economics
simulation:

Layer 1 (Leontief production, #806):
- Deterministic per-run PRNG seeding of corp×site productivity (D-176)
- Fixed-coefficient production chains; scarcity cascades downstream (D-178)
- Per-capita population demand for finals and services
- Gate-energy demand reduction for fusion_fuel at connected nodes (D-186)
- Price adjustment via local tâtonnement

Layer 2 (spatial price equilibrium, #807):
- Damped tâtonnement trade flows along gate links (α=0.03, β=0.4, D-178)
- 8% transport cost per hop damps long-distance arbitrage
- Flows computed from pre-step snapshot; applied atomically
- --stability-check implements D-179 Tests 1 and 2:
  · Test 1: cold-start convergence ±5% at tick 100 → PASS (max 1.05%)
  · Test 2: long-run stability ±2% over ticks 900–999 → PASS (max 0.00%)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:56:06 +02:00
jpmschweitzerandClaude Sonnet 4.6 7b0465a8c6 feat(simulation): build Tier-3 corporation generation pipeline (#800)
Adds server/src/bin/generate_corporations and tooling/generate-corporations
wrapper. Generates ~5,000 Tier-3 corp instances from Tier-1/2 template
archetypes with seeded name generation (FNV-1a + corridor-weighted PRNG).
Writes wiki markdown stubs for each generated corporation.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:55:47 +02:00
jpmschweitzerandClaude Sonnet 4.6 3447b38bcb feat(simulation): extend economy-db pipeline with corporation sync and validation (#805)
Extends import_economics.py from 6-step to 8-step pipeline:
- Loads wiki corporation markdown frontmatter as authoritative source
- Syncs corporations table (hard error on proper_name divergence per D-182)
- Populates corp_presence table (one row per corp × headquarters system)
- Splits validation: structural checks block commit; coverage checks post-commit
- D-175 Phase 2 gate: 3+ corps per commodity, 1+ corp per system with pop > 100K

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:55:40 +02:00
jpmschweitzerandClaude Sonnet 4.6 4d1b0efbbe feat(schema): add gate_links and economics tables to systems-schema.sql (#813)
Extends systems.db schema with gate_links, commodities, production_chains,
chain_inputs, corp_presence, and currency_zones tables required for the
Phase 2 economics layer.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:55:31 +02:00
jpmschweitzer c605f28328 Merge remote-tracking branch 'origin/sprint-33/copy' 2026-04-07 12:03:37 +02:00
jpmschweitzerandClaude Opus 4.6 75e003846b fix(copy): address PR #121 review comments (7 issues)
- Fix sova headquarters GJ 280B → GJ 280A (core.toml + tier1.toml)
- Relocate Ross 154 Water Cooperative to Kapteyn's Star (GJ 191)
- Fix Rødvik archetype gas_giant_skimming → frontier_ice_mining
- Fix Altmark shadow economy hop band (outer_reach → mid_reach, hop 6)
- Fix Holgersen naming (was Holmgren) in north_reach.toml
- Fix Hansestadt gate count 5 → 6 in currency_zones.toml
- Fix unclosed parenthesis in shadow_economy.toml CAPACITY GAP comment

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 10:59:10 +02:00
jpmschweitzerandClaude Opus 4.6 39cd98f84d fix(copy): correct Freiholt system ID in Compact faction page
GJ 624 is Halvøy (aquaculture world), not Freiholt. Freiholt is GJ 453.
Fixed both cross-reference occurrences in compact-of-westphalia.md.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 10:27:09 +02:00
jpmschweitzerandClaude Opus 4.6 68867894e9 feat(copy): wiki commodity copy pass — 36 pages with flavor text (#812)
All 36 commodity stubs fleshed out with lore context, production chain
descriptions, and economic intelligence briefing voice. Key treatments:
fusion_fuel (D-187 8:1 ratio), services (location-bound mechanics),
brands distinguished from commodities per D-185.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 10:27:01 +02:00
jpmschweitzerandClaude Opus 4.6 3cdf266b5c feat(copy): generate 141 Tier-2 regional corporations (#799)
6 corridor files with 141 corporations: core (22), north_reach (21),
south_reach (20), west_reach (29), east_reach (26), deep_frontier (23).
All 36 commodity types covered. Each has name, lore/behavioral archetype,
backstory, branded products. East reach gap from D-175 filled. Feeds #809.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 10:26:48 +02:00
jpmschweitzerandClaude Opus 4.6 ca04658da2 feat(copy): define shadow economy intensity ranges (#803)
Per-system-type intensity bands (core 0.0-0.2 through frontier 0.6-0.9),
6 seeding modifiers, 10 named system overrides. Compact framing as
principled economic resistance per D-174. Feeds server #808.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 10:26:38 +02:00
jpmschweitzerandClaude Opus 4.6 9c32dc14c4 feat(copy): author MARK_PRIMARY currency zone assignments (#820)
32 MARK_PRIMARY systems (Compact members, west_reach hops 7-17),
14 MIXED systems (Compact-sympathetic, hops 5-6), with rationale
comments per D-172 political affiliation rules. Feeds server #805.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 10:26:28 +02:00
jpmschweitzerandClaude Opus 4.6 2fa6fb93a3 fix(agents): remove duplicate briefing line in qatux.md
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 08:59:30 +02:00
jpmschweitzerandClaude Opus 4.6 08f2af159e chore(meta): update changelog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 08:54:01 +02:00
jpmschweitzerandClaude Opus 4.6 d20a3a1354 chore(db): remove Qdrant semantic search infrastructure (#816)
The Qdrant index (commonwealth collection, 475 points) was stale —
pointing at old worktree paths from previous sprints with no
maintenance. Grep covers all current search needs.

Removed: qdrant_connector.py, wrapper scripts (qdrant-search,
qdrant-index, qdrant-health, qdrant-count), /docs-search skill,
Qdrant/Ollama config entries, and all active references in agents,
rules, briefings, DEVOPS, CLAUDE.md, and TEAM.md. The commonwealth
collection was dropped from tower-of-joy:6333.

Historical references in discussion archives and sprint briefings
are preserved as-is.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 08:52:50 +02:00
jpmschweitzerandClaude Sonnet 4.6 7270b860cb chore(meta): plan Sprint 33: Pecunia
Economics simulation sprint — skeleton binary through corporate agents.
13 tickets across server/copy/client/ci. Stability tests (D-179) are
the sprint exit condition.

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 08:36:31 +02:00
jpmschweitzerandClaude Opus 4.6 4028f71f2f chore(meta): release v0.1.32
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:37:48 +02:00
jpmschweitzerandClaude Opus 4.6 a6c286735e fix(schema): remove unused os import in import_economics.py
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:33:59 +02:00
jpmschweitzerandClaude Opus 4.6 f80cbe621e chore(meta): update changelog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:33:05 +02:00
jpmschweitzerandClaude Opus 4.6 571a708d4a feat(schema): extend systems.db for economics (#804)
Add 5 new tables: gate_links (668 bidirectional edges from star-map.json),
commodities (36 types from commodities.toml), production_chains (21
Leontief recipes), chain_inputs (52 input requirements), corp_presence
(empty, populated by future pipeline). Add currency_zone column to
star_systems (D-172), archetype columns to corporations (D-175).

New import pipeline: tooling/economy-db/import_economics.py reads
TOML/JSON source files and populates the DB. Idempotent — safe to
rerun via `make economy-db`.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:32:32 +02:00
jpmschweitzerandClaude Opus 4.6 4a3febbe29 refactor(schema): rename commission_certified to commission_certifiable
The flag is a susceptibility marker, not an absolute state — Commission
certification only applies when trading in TRACTUS_PRIMARY zones.
Compact-internal trade ignores it entirely. Renamed across all TOML
source files, schema docs, workshop outputs, and D-184.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:32:18 +02:00
jpmschweitzerandClaude Opus 4.6 bcf15354d2 chore(skills): improve pr-review fresh-start instructions
Clarify that every /pr-review invocation must start fresh — fetch,
check PRs, and re-read the diff even if the branch was reviewed
earlier in the same conversation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:32:06 +02:00
jpmschweitzer 8eb33551cf Merge remote-tracking branch 'origin/sprint-32/visual' 2026-04-06 23:04:31 +02:00
jpmschweitzerandClaude Opus 4.6 32c7d5fab7 feat(wiki): regenerate all body content with review fixes applied
Full regeneration of ~2,600 bodies with:
- Correct atmosphere rim colors for extended planet classes
- Clean headings and profile tables (no underscores)
- Boreal/tropical cloud coverage at correct ranges
- Gas giants without meaningless terrain fields
- All heightmaps at 1024x512

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 22:55:20 +02:00
jpmschweitzerandClaude Opus 4.6 a8379871ce fix(assets): address PR #119 review round 2 — biomes.toml, legend, profile table
1. Add 5 extended atmosphere colors to biomes.toml (globe renderer reads
   from toml, not body_def) — cold_arid, hot_arid, tropical, boreal,
   temperate_terminator. Remove dead martian entry. Slightly differentiate
   colors from base classes.
2. Fix profile table raw identifiers — apply .replace('_', ' ') to class
   field in wiki body pages.
3. Fix legend text overflow — truncate labels with ellipsis when step
   size is too narrow for full text.
4. Fix title panel underscores — use .replace('_', ' ') instead of
   .replace('_ringed', '').

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 19:32:39 +02:00
jpmschweitzerandClaude Opus 4.6 467c21a0f3 fix(assets): address PR #119 review — 10 issues across planet-gen pipeline
1. Fix pclass.title() underscore bug in scaffold headings (216+ files)
2. Add 5 extended classes to batch.py valid_classes set
3. Add atmosphere rim colors for cold_arid/hot_arid/tropical/boreal/temperate_terminator
4. Add cloud/tilt ranges for extended classes (boreal 55-75%, tropical 60-80%)
5. Fix legend overflow at 1024px + deduplicate rainforest labels
6. Move _check_habitability() inside loop (was only checking last body)
7. Preserve gas_giant_ringed distinction in profile table
8. Drop meaningless terrain fields from gas giant frontmatter
9. Update stale docstrings/comments for 1024x512 default
10. Add infernal ring color

All lookup tables (CLASS_TILT, CLASS_CLOUD, CLASS_POLAR_ICE, CLASS_GEOTHERMAL,
CLASS_OBLATENESS, atmo_colors, tectonic_map, substrate_map) now include the
5 extended planet classes. Body content requires full regeneration.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 19:18:08 +02:00
jpmschweitzerandClaude Opus 4.6 4f1bf0f279 feat(wiki): generate body content for all 303 star systems
Scaffolded index.md, globe.png (512x512), heightmap.png (1024x512),
terrain.npz, and markers.json for ~2600 celestial bodies across the
Settled Reach. Heightmaps render at native simulation resolution.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 18:51:33 +02:00
jpmschweitzerandClaude Opus 4.6 53ec7ee6d9 fix(assets): drop atomic writes, fix heightmap-size flag, default to 1024x512
The atomic .tmp→rename pattern caused silent FileNotFoundError on some
bodies. Removed in favour of direct writes — resume logic already handles
interrupted runs. Fixed --heightmap-size CLI flag which was silently
ignored due to Python default parameter binding. Changed default heightmap
resolution from 4096x2048 to 1024x512 (native simulation grid — no
information gain from upscaling).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 18:51:00 +02:00
jpmschweitzerandClaude Opus 4.6 db241b88bd refactor(schema): rename biome_summary to planet_class (D-188)
"Biome" describes per-zone vegetation classification (Whittaker table).
"Planet class" describes overall planetary character. The conflation
caused the planet generator to misclassify ~270 bodies as barren.

Scope: systems.db column, schema SQL, Rust atlas code, wiki table
headers (Biome → Class), atlas proposal JSONs, all docs/decisions,
tooling scripts. Also normalizes atmosphere vocabulary (breathable →
standard) and expands planet class mapping to all 26 wiki values.
Unknown classes default to temperate for modder safety.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 17:10:35 +02:00
10744 changed files with 972627 additions and 4545 deletions
+1 -2
View File
@@ -115,8 +115,7 @@ Synthesize findings.
### Qatux (Documenter & Librarian)
- Core team member — participates in discussion rounds as documenter
- Manages document search via `/docs-search` skill
- Maintains DECISIONS.md, DISCUSSION.md, briefings, and Qdrant search index
- Maintains DECISIONS.md, DISCUSSION.md, and briefings
- Answers "did we discuss this?" with citations
## Extending the team
+2 -4
View File
@@ -1,6 +1,6 @@
---
name: qatux
description: Documenter and Librarian for the Settled Reach game project. Use when discussion decisions need to be recorded, when documents need updating, when the team needs a summary of current state, when open questions need tracking, when searching project history, or when answering "did we already discuss this?". Maintains decisions/ domain files, DISCUSSION.md, briefings, and the Qdrant search index.
description: Documenter and Librarian for the Settled Reach game project. Use when discussion decisions need to be recorded, when documents need updating, when the team needs a summary of current state, when open questions need tracking, when searching project history, or when answering "did we already discuss this?". Maintains decisions/ domain files, DISCUSSION.md, and briefings.
tools: Read, Glob, Grep, Edit, Write, Bash
model: sonnet
memory: project
@@ -28,7 +28,6 @@ Named after Qatux, the Raiel with perfect memory who helped Paula Myo by recalli
- Provide "state of the project" summaries when asked
### Knowledge management
- Maintain the Qdrant document index via /docs-search skill
- Update briefing files when decisions change
- Answer retrieval questions: "did we discuss X?", "what did we decide about Y?"
- Catch staleness in briefings and flag for update
@@ -43,8 +42,7 @@ Named after Qatux, the Raiel with perfect memory who helped Paula Myo by recalli
- **Work in dedicated round files:** All new rounds happen in `docs/discussions/round-NN-topic.md` from the start. DISCUSSION.md is retired for new content.
- **Update the discussion index ONLY when closing:** After a round is formally closed, update `docs/discussions/README.md` with the round entry (number, topic, decisions produced, file link).
- **Update briefings:** After a round produces new decisions, update the relevant agent briefing files in `docs/briefings/`.
- **Re-index documents:** After archiving or updating documents, re-index them in Qdrant via `tooling/db/qdrant-index <path>`.
- **Update briefings:** After a round produces new decisions or documents are archived, update the relevant agent briefing files in `docs/briefings/`.
## Team workflow (mandatory)
-3
View File
@@ -3,6 +3,3 @@
Endpoints are also preconfigured in `tooling/db/config.json`.
- **Gitea:** `http://git.schweitz.internal` (login: `schweitz`)
- **Qdrant:** `http://tower-of-joy:6333/`
- **Ollama:** `http://tower-of-joy:11434/` (nomic-embed-text)
- **Collection:** `commonwealth` (768 dimensions, cosine distance)
+1 -2
View File
@@ -26,12 +26,11 @@ docs/
db/
schema.sql # Database schema
tooling/
db/ # Connector scripts for SQLite, Qdrant, and audio
db/ # Connector scripts for SQLite and audio
config.json # Endpoint configuration
ticket # Ticket CLI
sprint # Sprint lifecycle CLI
sqlite_connector.py # SQLite mini MCP
qdrant_connector.py # Qdrant + ollama mini MCP
audio_connector.py # Stable Audio Open connector
.claude/
agents/ # Agent personality files
-4
View File
@@ -31,10 +31,6 @@
"Bash(tooling/db/sprint *)",
"Bash(tooling/db/sqlite-query *)",
"Bash(tooling/db/sqlite-exec *)",
"Bash(tooling/db/qdrant-search *)",
"Bash(tooling/db/qdrant-index *)",
"Bash(tooling/db/qdrant-health)",
"Bash(tooling/db/qdrant-count)",
"Bash(tooling/db/sqlite-init)",
"Bash(tooling/db/decisions-sync)",
"Bash(tooling/db/decision *)",
-55
View File
@@ -1,55 +0,0 @@
---
name: docs-search
description: >
Search project documents using semantic search (Qdrant + ollama) or grep fallback.
Use when the user asks "did we discuss X?", "find references to Y", "search docs",
or invokes /docs-search. Wraps the qdrant_connector.py for semantic document search.
user-invocable: true
allowed-tools: Bash, Read, Grep, Glob
---
# Search Docs Skill
Semantic search across project documents. Endpoints are in
`.claude/rules/local-services.md`. This skill covers advanced operations
and workflows.
## Advanced Commands
### Index a single chunk
For precise indexing of specific content:
```bash
python3 tooling/db/qdrant_connector.py index "unique-id" "Text content to index" --metadata source=manual heading="Custom heading"
```
### Create collection
Initialize the Qdrant collection (run once during setup):
```bash
python3 tooling/db/qdrant_connector.py create-collection
```
## Bulk Indexing
Index all project documents at once:
```bash
for f in decisions/*.md DISCUSSION.md TEAM.md docs/discussions/*.md docs/briefings/*.md; do
tooling/db/qdrant-index "$f"
done
```
## Fallback
If Qdrant or ollama is unreachable, fall back to grep-based search:
```bash
grep -r -i "search term" decisions/ DISCUSSION.md docs/ --include="*.md"
```
## Workflow
1. **Qatux (Librarian)** is the primary user of this skill
2. After each discussion round, index the archived round file
3. After briefing updates, re-index affected briefings
4. After decision changes, re-index the relevant decisions/*.md domain files
5. Use search to answer "did we discuss this?" questions with citations
+12 -7
View File
@@ -62,18 +62,23 @@ Pre-existing warnings are not PR blockers but should be tracked for cleanup.
### 1. Determine the branch to review
If the user provided a branch name as argument, use it. Otherwise list open
PRs and ask the user which branch to review.
**Always start fresh.** Even if you reviewed this branch before in this
conversation, the branch may have new commits, a new PR, or main may have
moved. Do NOT skip steps or reuse earlier results. Every `/pr-review`
invocation is a full review cycle.
**Always fetch and check for PRs first:**
To list open PRs on Gitea:
```bash
git fetch --all
tea pr list --login schweitz --repo jpmschweitzer/settled-reach --state open --output simple
```
Fetch remote branches first:
```bash
git fetch --all
```
Then determine the branch:
- If the user provided a branch name as argument, match it to an open PR.
If a PR exists for that branch, note the PR number. If no PR exists,
proceed with the branch diff but note "no PR found" in the output.
- If no argument was given, list open PRs and ask which to review.
### 2. Determine reviewer team
@@ -7,7 +7,11 @@ worktrees.** Sprint branches use `sprint-{N}/{team}` naming. Include
the branch name and a list of changed files in every prompt. The
default approach is `git show origin/<branch>:<path>`. If an active
worktree exists under `.sprint/`, agents can also use the Read tool
with the worktree path.
with the worktree path. **Always prefer `git show` over worktree
reads** — worktrees may use sparse checkouts that silently exclude
files, causing reviewers to miss content and produce false findings
(Sprint 33 lesson: Paula reported missing prose that was actually
present, because the worktree excluded the wiki directory).
## Code reviews (`server`, `client`, `ci`)
+5
View File
@@ -5,6 +5,8 @@
server/settings.db
server/settings.db-shm
server/settings.db-wal
server/data/systems.db-shm
server/data/systems.db-wal
# Build and cache
.cache/
@@ -13,6 +15,7 @@ server/target/
server/sr-voice/target/
server/models/
tooling/content-converter/target/
tooling/econ-sim/target/
tooling/line-previewer/target/
tooling/test-client/target/
content-ron/
@@ -39,6 +42,8 @@ spikes/**/*.npz
# Planet generator intermediates
tooling/planet-gen/__pycache__/
tooling/planet-gen/sol_data/.cache/
tooling/planet-gen/sol_data/__pycache__/
*.tmp.npz
# Generated terrain grids (large, regenerated from pipeline)
+34
View File
@@ -6,7 +6,40 @@ Format based on [Keep a Changelog](https://keepachangelog.com/).
## [Unreleased]
## [v0.1.33] — 2026-04-08
### Added
- Economics simulation binary (`tooling/econ-sim/`): three-layer architecture — Layer 1 (Leontief production), Layer 2 (damped tâtonnement trade flows, α=0.03, β=0.4), Layer 3 (corporate behavioral archetypes)
- D-179 stability tests: cold-start convergence (±5% at tick 100), long-run stability (±2% over 1000 ticks), no-explosion check, cross-zone FX balance
- Tier-3 corporation generation pipeline (`server/src/bin/generate_corporations/`): seeded procedural naming, D-175 coverage rules (3+ corps per commodity, 1+ per system >100K pop)
- Currency zone assignments (`wiki/economics/currency_zones.toml`): 32 MARK_PRIMARY + 14 MIXED systems authored by Miri (D-172)
- Shadow economy intensity ranges (`wiki/economics/shadow_economy.toml`): per-system seeding with geographic bands, modifiers, and overrides (D-174)
- 141 Tier-2 regional corporations across 6 corridors with backstories and behavioral archetypes
- 36 commodity wiki pages with economic intelligence flavor text
- Gate energy connectivity (D-186): MARK_PRIMARY zones default off-grid
- `make econ-sim`, `make econ-sim-run`, `make econ-sim-stability` targets
- Icon tint shader (`icon_tint.gdshader`) for runtime HUD icon recoloring
- Sol system (GJ-0) handcrafted terrain pipeline (`tooling/planet-gen/sol_import.py`): imports real NASA/USGS data for Earth, Mars, Luna
- Ferric biome classes (3436) in `biomes.toml` for Mars iron oxide surface
- Earth named features: 50 cities, 15 rivers, 5 oceans, 7 mountain ranges
### Fixed
- Globe renderer east-west mirroring: `arctan2(hx, hz)` replaces `arctan2(hz, hx)` in planet_renderer.py
- Determinism: HashMap → BTreeMap throughout econ-sim, ORDER BY RANDOM() replaced with seeded selection
- Transport cost formula: multiplicative gate×zone instead of additive (trade.rs)
- Corporation gap-fill off-by-one: now generates exactly 3 corps per uncovered commodity
### Changed
- Economy-db pipeline extended with corporation sync, validation, currency zone import from TOML, and gate energy flags
### Removed
- Qdrant semantic search infrastructure (#816): dropped commonwealth collection, removed qdrant_connector.py, wrapper scripts, /docs-search skill, and all active references
## [v0.1.32] — 2026-04-06
### Added
- Economics schema extension (#804): 5 new tables in systems.db (gate_links, commodities, production_chains, chain_inputs, corp_presence) + currency_zone and corporation archetype columns
- Economics import pipeline (`tooling/economy-db/import_economics.py`): reads TOML/JSON source data, populates systems.db. Idempotent via `make economy-db`
- Planet generator pipeline (`tooling/planet-gen/`) — procedural terrain simulation, Whittaker biome classification, equirectangular heightmap + 512px globe rendering from wiki data
- Externalized biome/color configuration (`tooling/planet-gen/biomes.toml`) — single source for all classification tables, palettes, and rendering parameters
- Batch runner with error handling, resume support, determinism verification, and 50% error rate circuit breaker
@@ -29,6 +62,7 @@ Format based on [Keep a Changelog](https://keepachangelog.com/).
- Sprint worktree creation no longer spawns a spurious "None" team tab when tickets have no team assigned
### Changed
- Renamed `commission_certified``commission_certifiable` across all TOML, schema, and decision files — flag is a susceptibility marker, not an absolute state
- Pre-push hook now validates JSON syntax on changed files (python3 -m json.tool)
- HUD status panel: merged TimeDisplay into ImplantPanel — time, health, perception in one themed panel (#786)
- HUD moved from UILayer (20) to InsertOverlay (10) for bloom treatment per D-049
-2
View File
@@ -73,8 +73,6 @@ The ticketing database (`settledreach.db`) is accessed via `SR_DB_PATH` env var
| SQL queries | `tooling/db/sqlite-query "SELECT ..."` | — |
| SQL writes | `tooling/db/sqlite-exec "UPDATE ..."` | — |
| Decisions | `tooling/db/decision next`, `claim`, `check-dupes` | — |
| Doc search | `tooling/db/qdrant-search "query"` | `/docs-search` skill |
| Doc index | `tooling/db/qdrant-index path/to/file.md` | `/docs-search` skill |
### Testing preferences
+16 -1
View File
@@ -3,7 +3,7 @@ GODOT := $(shell command -v godot4 2>/dev/null || command -v godot 2>/dev/null)
.PHONY: help setup build check-protocol client server game stop test lint lint-python setup-venv ci ci-client ci-server clean \
decisions-sync decisions-coverage decisions-active decisions-orphan \
db-backup db-install validate-content check-fact-ids setup-hooks \
audit atlas-verify \
audit atlas-verify economy-db \
pre-pr pre-pr-lint pre-pr-build pre-pr-test pre-pr-validate pre-pr-fixtures \
pre-pr-server pre-pr-client pre-pr-content \
fixtures-client fixtures-gauntlet golden-diff golden-update \
@@ -53,6 +53,7 @@ help:
@echo " make validate-content Validate content YAML against schemas"
@echo " make check-fact-ids Check fact_id references against knowledge catalogs"
@echo " make atlas-verify Verify atlas proposal JSONs (all in docs/atlas/proposals/)"
@echo " make economy-db Import economics data into systems.db (TOML/JSON → SQLite)"
@echo " make fixtures-client Generate GDScript->Rust cross-encoder fixtures (#475)"
@echo " make golden-diff Show diff if golden file output has changed"
@echo " make golden-update Regenerate golden file and stage for commit"
@@ -323,6 +324,20 @@ db-backup:
db-install:
@tooling/db-install
economy-db: ## Import economics data (commodities, chains, gate links) into systems.db
@python3 tooling/economy-db/import_economics.py
econ-sim: ## Build the economics simulation binary (Layer 1+2: Leontief + tâtonnement trade)
@cargo build --manifest-path tooling/econ-sim/Cargo.toml --release
@echo "Built: tooling/econ-sim/target/release/econ-sim"
econ-sim-run: ## Run a quick economics simulation (100 ticks, output to /tmp/econ-sim.csv)
@tooling/econ-sim/target/release/econ-sim --ticks 100 --output /tmp/econ-sim.csv
@echo "Output: /tmp/econ-sim.csv"
econ-sim-stability: ## Run D-179 stability checks (Tests 1 and 2)
@tooling/econ-sim/target/release/econ-sim --stability-check
# --- Decisions ---
decisions-sync:
+1 -1
View File
@@ -15,7 +15,7 @@
| **NIGEL** | Sandbox & Replayability | Emergent stories, multiple viable strategies, alt-history potential. |
| **TYRE** | Technical Architecture & Feasibility | Engine, tools, what's buildable, reality checks on scope. |
| **BURNELLI-SHELDON** | Economist & Simulation Modeler | Market models, price formation, production functions, stability analysis. "Is this economically credible?" |
| **QATUX** | Documenter & Librarian | Maintains decisions, discussions, briefings, Qdrant search index. Archives rounds, updates docs. |
| **QATUX** | Documenter & Librarian | Maintains decisions, discussions, briefings. Archives rounds, updates docs. |
## Specialist Team (task-focused, not in regular discussions)
+10 -1
View File
@@ -645,4 +645,13 @@ Technical foundation decisions that constrain implementation: engine, client-ser
---
*50 decisions. Last updated: 2026-03-24 (D-101 partial supersession noted; D-166 development cascade added)*
### D-188: Rename biome_summary to planet_class across codebase
- **Date:** 2026-04-06
- **Decision:** The `biome_summary` field in `systems.db` and all references throughout the codebase are renamed to `planet_class`. "Biome" describes per-zone vegetation classification (Whittaker table — tropical rainforest, temperate deciduous, etc.). "Planet class" describes the overall planetary character (temperate, arid, frozen, etc.). The two concepts were conflated under one name, causing confusion in the planet generator pipeline where both exist.
- **Scope:** DB column (`bodies.biome_summary` → `bodies.planet_class`), schema SQL, all Rust atlas code, wiki table headers (`Biome` → `Class`), atlas proposal JSONs, design docs, decision refs, planet generator scripts.
- **Raised by:** Team Leader (Jeroen), during planet generator spike.
- **Dissent:** None.
---
*51 decisions. Last updated: 2026-04-06 (D-188 biome_summary → planet_class rename)*
+1 -1
View File
@@ -238,7 +238,7 @@ This domain covers: currency system, commodity taxonomy, shadow economy, corpora
- **3 luxury services** — tourism, entertainment/holo-content, fine dining/hospitality; location-bound
- **Source of truth:** `wiki/economics/commodities.toml` and `wiki/economics/production_chains.toml`
- 21 production chains including 2 substitution routes
- Schema: 14 fields per commodity including 3 political sub-flags (`commission_certified`, `compact_contested`, `shadow_viable`), `production_ubiquity`, `demand_model`, `panic_threshold_weeks`
- Schema: 14 fields per commodity including 3 political sub-flags (`commission_certifiable`, `compact_contested`, `shadow_viable`), `production_ubiquity`, `demand_model`, `panic_threshold_weeks`
- **Rationale:** The catalog is the concrete realization of the D-173 taxonomy. 36 types is rich enough to produce meaningful geographic specialization while remaining authorable. The 14-field schema captures economic, political, and behavioral properties needed by the tâtonnement simulation. Two substitution routes prevent hard lock-outs in chains where one raw source is geographically constrained.
- **Raised by:** Full planning team, Sprint 32 Workshop #801.
- **Dissent:** None.
+1 -1
View File
@@ -111,7 +111,7 @@ Technical foundation questions: engine, protocols, data structures, performance,
### Q-064: 3D planet generator for wiki system screenshots
- **Status:** Resolved — answered by #779 (Sprint 32)
- **Question:** Evaluate the Godot 3D Planet Generator (https://github.com/remijean/godot-3d-planet-generator) for generating unique planet visuals per star system in the wiki. Each of the 301 systems could get a procedurally generated planet rendered as a screenshot for its wiki page. Key questions: can we get enough visual variety across 301 systems (different biomes, atmospheres, colors, ring configurations)? Can the generator run headlessly for batch rendering? What's the parameter space — how many distinct-looking planets can it produce? Could the planet configs be seeded from system properties (star class, habitable zone, etc.) for consistency across regenerations?
- **Resolution:** Pure Python ray-sphere renderer (`spikes/planet-renders/generate_planets.py`) replaces the Godot plugin approach. Answers all evaluation criteria: (1) visual variety via biome_summary type × body_id seed = 301 distinct renders, (2) fully headless — no Godot required, ~2s for all 7 types, (3) seeded from system properties for reproducibility. Avoids headless Godot rendering complexity. See `docs/design/planetary-screenshots-spec.md`.
- **Resolution:** Pure Python ray-sphere renderer (`spikes/planet-renders/generate_planets.py`) replaces the Godot plugin approach. Answers all evaluation criteria: (1) visual variety via planet_class type × body_id seed = 301 distinct renders, (2) fully headless — no Godot required, ~2s for all 7 types, (3) seeded from system properties for reproducibility. Avoids headless Godot rendering complexity. See `docs/design/planetary-screenshots-spec.md`.
- **Cross-reference:** Wiki system pages (docs/wiki/), world generation pipeline
---
-9
View File
@@ -280,15 +280,6 @@ tooling/db/sqlite-query "SELECT * FROM tickets WHERE status='open'"
tooling/db/sqlite-exec "UPDATE tickets SET status='done' WHERE id=1"
```
## Qdrant / Document Search
```bash
tooling/db/qdrant-search "asymmetric information design"
tooling/db/qdrant-index docs/briefings/tyre.md
tooling/db/qdrant-health
tooling/db/qdrant-count
```
## Decisions System
Decisions are split into domain files under `decisions/` (see `decisions/README.md` for the full index). A SQLite index table syncs metadata for cross-referencing and querying.
+19 -19
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 88,
"rotation_period_hours": 1408,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 225,
"rotation_period_hours": 5832,
"atmosphere": "toxic",
"biome_summary": "volcanic",
"planet_class": "volcanic",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 365,
"rotation_period_hours": 24.0,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean",
"economic_role": "manufacturing",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": 27.3,
"rotation_period_hours": 655.7,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": "manufacturing",
"settlement_pattern": "domed",
@@ -105,7 +105,7 @@
"orbital_period_days": 687,
"rotation_period_hours": 24.6,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "ice",
"economic_role": "extraction",
"settlement_pattern": "domed",
@@ -125,7 +125,7 @@
"orbital_period_days": 0.3,
"rotation_period_hours": 7.7,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1.3,
"rotation_period_hours": 30.3,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 4333,
"rotation_period_hours": 9.9,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 1.8,
"rotation_period_hours": 42.5,
"atmosphere": "none",
"biome_summary": "volcanic",
"planet_class": "volcanic",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 3.6,
"rotation_period_hours": 85.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "subsurface",
"economic_role": "research",
"settlement_pattern": "domed",
@@ -245,7 +245,7 @@
"orbital_period_days": 7.2,
"rotation_period_hours": 171.7,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": 16.7,
"rotation_period_hours": 400.5,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -285,7 +285,7 @@
"orbital_period_days": 10759,
"rotation_period_hours": 10.7,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -305,7 +305,7 @@
"orbital_period_days": 16.0,
"rotation_period_hours": 382.7,
"atmosphere": "dense",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "rivers",
"economic_role": null,
"settlement_pattern": null,
@@ -325,7 +325,7 @@
"orbital_period_days": 1.4,
"rotation_period_hours": 32.9,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "subsurface",
"economic_role": null,
"settlement_pattern": null,
@@ -345,7 +345,7 @@
"orbital_period_days": 30687,
"rotation_period_hours": 17.2,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -365,7 +365,7 @@
"orbital_period_days": 60190,
"rotation_period_hours": 16.1,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -385,7 +385,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 7.8,
"rotation_period_hours": 187.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 65.0,
"rotation_period_hours": 1560.0,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 240.0,
"rotation_period_hours": 22.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 680.0,
"rotation_period_hours": 12.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.4,
"rotation_period_hours": 129.6,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": "subsurface_liquid",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -145,7 +145,7 @@
"orbital_period_days": 1800.0,
"rotation_period_hours": 31.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 4600.0,
"rotation_period_hours": 39.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 10200.0,
"rotation_period_hours": 26.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 12.0,
"rotation_period_hours": 288.0,
"atmosphere": "standard",
"biome_summary": "oceanic",
"planet_class": "oceanic",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -45,7 +45,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 48.0,
"rotation_period_hours": 22.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 26.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 380.0,
"rotation_period_hours": 20.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 920.0,
"rotation_period_hours": 17.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 2200.0,
"rotation_period_hours": 15.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 5.2,
"rotation_period_hours": 124.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 16.8,
"rotation_period_hours": 403.2,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "transit",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 110.0,
"rotation_period_hours": 21.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 480.0,
"rotation_period_hours": 12.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.4,
"rotation_period_hours": 129.6,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1500.0,
"rotation_period_hours": 29.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 3800.0,
"rotation_period_hours": 37.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 8400.0,
"rotation_period_hours": 23.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+9 -9
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 14.0,
"rotation_period_hours": 336.0,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 148.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "oceanic",
"planet_class": "oceanic",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 460.0,
"rotation_period_hours": 26.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1300.0,
"rotation_period_hours": 30.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3600.0,
"rotation_period_hours": 36.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 8600.0,
"rotation_period_hours": 22.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 20000.0,
"rotation_period_hours": 17.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 24.0,
"rotation_period_hours": 22.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 168.0,
"rotation_period_hours": 23.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "commercial",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 620.0,
"rotation_period_hours": 27.0,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 2400.0,
"rotation_period_hours": 11.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.8,
"rotation_period_hours": 139.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 12.4,
"rotation_period_hours": 297.6,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 5200.0,
"rotation_period_hours": 36.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 11500.0,
"rotation_period_hours": 44.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 24000.0,
"rotation_period_hours": 56.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 42000.0,
"rotation_period_hours": 32.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 4.8,
"rotation_period_hours": 115.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 18.0,
"rotation_period_hours": 432.0,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 68.0,
"rotation_period_hours": 22.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 210.0,
"rotation_period_hours": 28.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 620.0,
"rotation_period_hours": 20.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1500.0,
"rotation_period_hours": 17.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 16.0,
"rotation_period_hours": 18.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 26.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 480.0,
"rotation_period_hours": 27.2,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1500.0,
"rotation_period_hours": 12.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.4,
"rotation_period_hours": 129.6,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 4000.0,
"rotation_period_hours": 32.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 9200.0,
"rotation_period_hours": 40.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 19000.0,
"rotation_period_hours": 48.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 38000.0,
"rotation_period_hours": 27.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 14.2,
"rotation_period_hours": 340.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 45.0,
"rotation_period_hours": 21.6,
"atmosphere": "standard",
"biome_summary": "temperate_coastal",
"planet_class": "temperate_coastal",
"hydrosphere": "liquid_water",
"economic_role": "research",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 620.0,
"rotation_period_hours": 13.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 5.3,
"rotation_period_hours": 127.2,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 1680.0,
"rotation_period_hours": 29.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 3100.0,
"rotation_period_hours": 31.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 5400.0,
"rotation_period_hours": 38.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,14 +185,14 @@
"orbital_period_days": 9800.0,
"rotation_period_hours": 44.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
"industrial_corridor": null,
"notes": "distant ice dwarf near oort boundary, uninhabited"
},
{"body_id": "GJ1075i", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": null, "mass_class": "dwarf", "surface_gravity": 0.15, "orbital_period_days": 16000, "rotation_period_hours": 26.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outermost dwarf, near-oort"},
{"body_id": "GJ1075i", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": null, "mass_class": "dwarf", "surface_gravity": 0.15, "orbital_period_days": 16000, "rotation_period_hours": 26.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outermost dwarf, near-oort"},
{
"body_id": "GJ1075-oort",
"proper_name": null,
@@ -206,7 +206,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 28.0,
"rotation_period_hours": 19.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 105.0,
"rotation_period_hours": 28.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 320.0,
"rotation_period_hours": 33.4,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 620.0,
"rotation_period_hours": 27.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -105,7 +105,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2400.0,
"rotation_period_hours": 11.4,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 6.2,
"rotation_period_hours": 148.8,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 5800.0,
"rotation_period_hours": 36.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 13000.0,
"rotation_period_hours": 44.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 28000.0,
"rotation_period_hours": 26.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 52000.0,
"rotation_period_hours": 22.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 76.0,
"rotation_period_hours": 18.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 290.0,
"rotation_period_hours": 23.8,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 650.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1500.0,
"rotation_period_hours": 27.2,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 4800.0,
"rotation_period_hours": 10.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 7.6,
"rotation_period_hours": 182.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 17.2,
"rotation_period_hours": 412.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 12000.0,
"rotation_period_hours": 36.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 28000.0,
"rotation_period_hours": 45.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 60000.0,
"rotation_period_hours": 53.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 130000.0,
"rotation_period_hours": 31.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 9.0,
"rotation_period_hours": 216.0,
"atmosphere": "standard",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": "manufacturing",
"settlement_pattern": "urban_concentrated",
@@ -45,7 +45,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 32.0,
"rotation_period_hours": 20.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 96.0,
"rotation_period_hours": 26.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 280.0,
"rotation_period_hours": 19.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 720.0,
"rotation_period_hours": 16.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1800.0,
"rotation_period_hours": 14.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -12,18 +12,18 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ1116Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.30, "orbital_period_days": 3, "rotation_period_hours": 72, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched, tidally locked"},
{"body_id": "GJ1116Ac", "proper_name": "Mabaso Prime", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 700000000, "mass_class": "terrestrial", "surface_gravity": 0.85, "orbital_period_days": 10, "rotation_period_hours": 240, "atmosphere": "breathable", "biome_summary": "arid", "hydrosphere": "minimal", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, Mabaso Prime, tidally locked, flat volcanic plains, perpetual overcast, thin but breathable atmosphere, Wave 2 blended-heritage crossroads city, transit hub and mediation services center"},
{"body_id": "GJ1116Ac-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1116Ac", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 4, "rotation_period_hours": 96, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ1116Ad", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 28, "rotation_period_hours": 672, "atmosphere": "thin", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, tidally locked"},
{"body_id": "GJ1116Ae", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 80, "rotation_period_hours": 1920, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky, tidally locked"},
{"body_id": "GJ1116Af", "proper_name": null, "body_type": "gas_giant", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 500, "rotation_period_hours": 10.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1116Af-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1116Af", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1116Af-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1116Af", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1116Ag", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.22, "orbital_period_days": 1800, "rotation_period_hours": 18.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ1116Ah", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 4500, "rotation_period_hours": 22.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1116A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ1116A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ1116Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.30, "orbital_period_days": 3, "rotation_period_hours": 72, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched, tidally locked"},
{"body_id": "GJ1116Ac", "proper_name": "Mabaso Prime", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 700000000, "mass_class": "terrestrial", "surface_gravity": 0.85, "orbital_period_days": 10, "rotation_period_hours": 240, "atmosphere": "breathable", "planet_class": "arid", "hydrosphere": "minimal", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, Mabaso Prime, tidally locked, flat volcanic plains, perpetual overcast, thin but breathable atmosphere, Wave 2 blended-heritage crossroads city, transit hub and mediation services center"},
{"body_id": "GJ1116Ac-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1116Ac", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 4, "rotation_period_hours": 96, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ1116Ad", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 28, "rotation_period_hours": 672, "atmosphere": "thin", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, tidally locked"},
{"body_id": "GJ1116Ae", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 80, "rotation_period_hours": 1920, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky, tidally locked"},
{"body_id": "GJ1116Af", "proper_name": null, "body_type": "gas_giant", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 500, "rotation_period_hours": 10.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1116Af-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1116Af", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1116Af-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1116Af", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1116Ag", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.22, "orbital_period_days": 1800, "rotation_period_hours": 18.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ1116Ah", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 4500, "rotation_period_hours": 22.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1116A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ1116A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ1116Ac-S1", "proper_name": "Colesberg", "orbits_body_id": "GJ1116Ac", "station_type": "commercial", "population": 35000000, "economic_role": "transit", "docking_class": "major", "has_gate_infrastructure": false, "notes": "primary transit hub, largest processing facility between Kampala Gate and outer fringe, Mabaso Transit Consortium, Corridor Mediators' Association, mediation training college, Assembly customs processing"},
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 6.4,
"rotation_period_hours": 153.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 45.0,
"rotation_period_hours": 1080.0,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "transit",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 220.0,
"rotation_period_hours": 22.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 680.0,
"rotation_period_hours": 12.4,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.2,
"rotation_period_hours": 124.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 11.4,
"rotation_period_hours": 273.6,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 1800.0,
"rotation_period_hours": 31.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 4600.0,
"rotation_period_hours": 39.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 10200.0,
"rotation_period_hours": 26.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 5.6,
"rotation_period_hours": 134.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 18.4,
"rotation_period_hours": 441.6,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "research",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 120.0,
"rotation_period_hours": 21.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 480.0,
"rotation_period_hours": 12.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.8,
"rotation_period_hours": 139.2,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1400.0,
"rotation_period_hours": 31.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 3600.0,
"rotation_period_hours": 39.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 8200.0,
"rotation_period_hours": 25.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 16400,
"rotation_period_hours": 19.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 4.8,
"rotation_period_hours": 115.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 16.2,
"rotation_period_hours": 388.8,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 220.0,
"rotation_period_hours": 11.4,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 4.6,
"rotation_period_hours": 110.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 9.8,
"rotation_period_hours": 235.2,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 740.0,
"rotation_period_hours": 28.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 2100.0,
"rotation_period_hours": 36.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 5200.0,
"rotation_period_hours": 23.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 10400,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 18,
"rotation_period_hours": 430,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 65,
"rotation_period_hours": 1560,
"atmosphere": "toxic",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 230,
"rotation_period_hours": 24.5,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean",
"economic_role": "service_mixed",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": 14.0,
"rotation_period_hours": 336,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 450,
"rotation_period_hours": 19.0,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "rivers",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 800,
"rotation_period_hours": 16.0,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1300,
"rotation_period_hours": 21.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 2600,
"rotation_period_hours": 11.5,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 4.5,
"rotation_period_hours": 108,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 10.0,
"rotation_period_hours": 240,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 9.4,
"rotation_period_hours": 225.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 56.0,
"rotation_period_hours": 26.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 190.0,
"rotation_period_hours": 24.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 560.0,
"rotation_period_hours": 28.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 1600.0,
"rotation_period_hours": 21.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 4200.0,
"rotation_period_hours": 17.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+2 -2
View File
@@ -25,7 +25,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -12,19 +12,19 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ1230Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched rocky, tidally locked"},
{"body_id": "GJ1230Ac", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.45, "orbital_period_days": 32, "rotation_period_hours": 500, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky, near-locked rotation"},
{"body_id": "GJ1230Ad", "proper_name": "Talvela", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 8000000, "mass_class": "terrestrial", "surface_gravity": 0.82, "orbital_period_days": 95, "rotation_period_hours": 20.5, "atmosphere": "breathable", "biome_summary": "temperate-cool", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "concentrated", "industrial_corridor": null, "notes": "primary inhabited world, Wave 5 colony, Finnish-heritage community, import-dependent"},
{"body_id": "GJ1230Ad-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1230Ad", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 8, "rotation_period_hours": 192, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon, tidally locked to parent"},
{"body_id": "GJ1230Ae", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 210, "rotation_period_hours": 17.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, beyond habitable zone"},
{"body_id": "GJ1230Af", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 440, "rotation_period_hours": 15.5, "atmosphere": "thin", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1230Ag", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1450, "rotation_period_hours": 12.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1230Ag-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1230Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1230Ag-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1230Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1230Ah", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 3400, "rotation_period_hours": 14.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ1230Ai", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.22, "orbital_period_days": 6600, "rotation_period_hours": 18.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1230A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "sparse outer belt"},
{"body_id": "GJ1230A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ1230Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched rocky, tidally locked"},
{"body_id": "GJ1230Ac", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.45, "orbital_period_days": 32, "rotation_period_hours": 500, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky, near-locked rotation"},
{"body_id": "GJ1230Ad", "proper_name": "Talvela", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 8000000, "mass_class": "terrestrial", "surface_gravity": 0.82, "orbital_period_days": 95, "rotation_period_hours": 20.5, "atmosphere": "breathable", "planet_class": "temperate-cool", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "concentrated", "industrial_corridor": null, "notes": "primary inhabited world, Wave 5 colony, Finnish-heritage community, import-dependent"},
{"body_id": "GJ1230Ad-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1230Ad", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 8, "rotation_period_hours": 192, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon, tidally locked to parent"},
{"body_id": "GJ1230Ae", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 210, "rotation_period_hours": 17.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, beyond habitable zone"},
{"body_id": "GJ1230Af", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 440, "rotation_period_hours": 15.5, "atmosphere": "thin", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1230Ag", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1450, "rotation_period_hours": 12.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1230Ag-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1230Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1230Ag-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1230Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1230Ah", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 3400, "rotation_period_hours": 14.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ1230Ai", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.22, "orbital_period_days": 6600, "rotation_period_hours": 18.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1230A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "sparse outer belt"},
{"body_id": "GJ1230A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ1230Ad-S1", "proper_name": "Toivola", "orbits_body_id": "GJ1230Ad", "station_type": "transit", "population": 3500, "economic_role": "transit", "docking_class": "standard", "has_gate_infrastructure": false, "notes": "loop node transit station, through-freight servicing"},
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 9.2,
"rotation_period_hours": 220.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 72.0,
"rotation_period_hours": 1728.0,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 300.0,
"rotation_period_hours": 23.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 940.0,
"rotation_period_hours": 12.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.8,
"rotation_period_hours": 139.2,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "subsurface_liquid",
"economic_role": "mining",
"settlement_pattern": "underground_concentrated",
@@ -145,7 +145,7 @@
"orbital_period_days": 2600.0,
"rotation_period_hours": 32.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 6400.0,
"rotation_period_hours": 40.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 14200.0,
"rotation_period_hours": 27.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+9 -9
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 14.0,
"rotation_period_hours": 336.0,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 26.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "commercial",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 440.0,
"rotation_period_hours": 26.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1200.0,
"rotation_period_hours": 29.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3200.0,
"rotation_period_hours": 34.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 8400.0,
"rotation_period_hours": 22.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 20000.0,
"rotation_period_hours": 18.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 22.0,
"rotation_period_hours": 18.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 80.0,
"rotation_period_hours": 26.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 460.0,
"rotation_period_hours": 25.6,
"atmosphere": "standard",
"biome_summary": "temperate_ocean",
"planet_class": "temperate_ocean",
"hydrosphere": "liquid_water",
"economic_role": "commercial",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": 720.0,
"rotation_period_hours": 31.8,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2200.0,
"rotation_period_hours": 10.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5.6,
"rotation_period_hours": 134.4,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 10.4,
"rotation_period_hours": 249.6,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 5400.0,
"rotation_period_hours": 38.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 12000.0,
"rotation_period_hours": 42.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 26000.0,
"rotation_period_hours": 28.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 48000.0,
"rotation_period_hours": 23.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 3,
"rotation_period_hours": 72,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 8,
"rotation_period_hours": 192,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 22,
"rotation_period_hours": 528,
"atmosphere": "thin",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 55,
"rotation_period_hours": 16.0,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 350,
"rotation_period_hours": 10.0,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 6,
"rotation_period_hours": 144,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": "extraction",
"settlement_pattern": "domed",
@@ -145,7 +145,7 @@
"orbital_period_days": 14,
"rotation_period_hours": 336,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 28,
"rotation_period_hours": 672,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 1000,
"rotation_period_hours": 14.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 2800,
"rotation_period_hours": 20.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 6.0,
"rotation_period_hours": 144.0,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": "urban_concentrated",
@@ -45,7 +45,7 @@
"orbital_period_days": 18.0,
"rotation_period_hours": 20.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 56.0,
"rotation_period_hours": 24.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 160.0,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 420.0,
"rotation_period_hours": 15.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1100.0,
"rotation_period_hours": 13.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 8.4,
"rotation_period_hours": 201.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 145.0,
"rotation_period_hours": 30.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 480.0,
"rotation_period_hours": 24.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1400.0,
"rotation_period_hours": 28.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3600.0,
"rotation_period_hours": 22.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 7800.0,
"rotation_period_hours": 19.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 10.2,
"rotation_period_hours": 244.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 72.0,
"rotation_period_hours": 27.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 250.0,
"rotation_period_hours": 25.6,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 740.0,
"rotation_period_hours": 29.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2100.0,
"rotation_period_hours": 22.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5600.0,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 42.0,
"rotation_period_hours": 17.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 180.0,
"rotation_period_hours": 22.6,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 550.0,
"rotation_period_hours": 27.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "research",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1300.0,
"rotation_period_hours": 31.6,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 4200.0,
"rotation_period_hours": 12.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 6.2,
"rotation_period_hours": 148.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 14.8,
"rotation_period_hours": 355.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 9600.0,
"rotation_period_hours": 34.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 22000.0,
"rotation_period_hours": 43.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 48000.0,
"rotation_period_hours": 51.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 104000.0,
"rotation_period_hours": 29.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+14 -14
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 92.0,
"rotation_period_hours": 2208.0,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 320.0,
"rotation_period_hours": 26.4,
"atmosphere": "breathable",
"biome_summary": "temperate-cool",
"planet_class": "temperate-cool",
"hydrosphere": "rivers-lakes",
"economic_role": "mixed-agriculture",
"settlement_pattern": "distributed-rural",
@@ -65,7 +65,7 @@
"orbital_period_days": 18.2,
"rotation_period_hours": 436.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 710.0,
"rotation_period_hours": 22.6,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3100.0,
"rotation_period_hours": 10.2,
"atmosphere": "hydrogen-helium",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 13.8,
"rotation_period_hours": 331.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 29.4,
"rotation_period_hours": 705.6,
"atmosphere": "none",
"biome_summary": "ice",
"planet_class": "ice",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 7400.0,
"rotation_period_hours": 19.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 17200.0,
"rotation_period_hours": 15.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 34000.0,
"rotation_period_hours": 12.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 62000.0,
"rotation_period_hours": 11.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": 105000.0,
"rotation_period_hours": 9.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -285,7 +285,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 20,
"rotation_period_hours": 480,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 70,
"rotation_period_hours": 1680,
"atmosphere": "toxic",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 280,
"rotation_period_hours": 25.0,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean",
"economic_role": "research",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": 15.0,
"rotation_period_hours": 360,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 480,
"rotation_period_hours": 22.0,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "rivers",
"economic_role": "research",
"settlement_pattern": "dispersed_rural",
@@ -125,7 +125,7 @@
"orbital_period_days": 800,
"rotation_period_hours": 17.5,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1200,
"rotation_period_hours": 15.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 2800,
"rotation_period_hours": 12.5,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 4.0,
"rotation_period_hours": 96,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 10.0,
"rotation_period_hours": 240,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -12,18 +12,18 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ1289b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 15, "rotation_period_hours": 360, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ1289c", "proper_name": "Lacombe", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 200000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 40, "rotation_period_hours": 960, "atmosphere": "breathable", "biome_summary": "temperate-cool", "hydrosphere": "moderate", "economic_role": "coordination", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, tidally locked, Wave 4 administrative settlement, Canadian heritage, Assembly regional outpost, governance services hub"},
{"body_id": "GJ1289c-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1289c", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 6, "rotation_period_hours": 144, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ1289d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 90, "rotation_period_hours": 16.0, "atmosphere": "thin", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ1289e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 250, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1289f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 600, "rotation_period_hours": 15.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer frozen rocky"},
{"body_id": "GJ1289g", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1600, "rotation_period_hours": 11.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1289g-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1289g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1289g-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1289g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1289h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 4800, "rotation_period_hours": 22.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1289-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ1289-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ1289b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 15, "rotation_period_hours": 360, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ1289c", "proper_name": "Lacombe", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 200000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 40, "rotation_period_hours": 960, "atmosphere": "breathable", "planet_class": "temperate-cool", "hydrosphere": "moderate", "economic_role": "coordination", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, tidally locked, Wave 4 administrative settlement, Canadian heritage, Assembly regional outpost, governance services hub"},
{"body_id": "GJ1289c-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1289c", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 6, "rotation_period_hours": 144, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ1289d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 90, "rotation_period_hours": 16.0, "atmosphere": "thin", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ1289e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 250, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1289f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 600, "rotation_period_hours": 15.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer frozen rocky"},
{"body_id": "GJ1289g", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1600, "rotation_period_hours": 11.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1289g-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1289g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1289g-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1289g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1289h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 4800, "rotation_period_hours": 22.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1289-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ1289-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ1289c-S1", "proper_name": "Wainwright", "orbits_body_id": "GJ1289c", "station_type": "commercial", "population": 12000000, "economic_role": "coordination", "docking_class": "major", "has_gate_infrastructure": false, "notes": "Assembly regional outpost, governance services, transit coordination, field officer postings, the drawer of unsubmitted memos"},
+11 -11
View File
@@ -5,17 +5,17 @@
"spectral_class": "k-m",
"wiki_data": {"habitable_count": 1, "inhabited_count": 1, "has_gas_giant": true, "has_asteroid_belt": true, "has_horizon_station": true, "raw_bodies_line": null},
"bodies": [
{"body_id": "GJ1292b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.30, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ1292c", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 35, "rotation_period_hours": 840, "atmosphere": "thin", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "rocky, tidally locked"},
{"body_id": "GJ1292d", "proper_name": "Isiolo", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 50000, "mass_class": "terrestrial", "surface_gravity": 0.80, "orbital_period_days": 85, "rotation_period_hours": 2040, "atmosphere": "breathable", "biome_summary": "arid", "hydrosphere": "minimal", "economic_role": "transit", "settlement_pattern": "concentrated", "industrial_corridor": null, "notes": "primary inhabited world, tidally locked, k-m dim cool light, corporate-specification infrastructure, Transitek East Africa company town, Wave 4 Kenyan/Ethiopian transport heritage, 50000 pop, settlement council subordinate to corporate operations"},
{"body_id": "GJ1292e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 200, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1292f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 500, "rotation_period_hours": 15.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1292g", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1500, "rotation_period_hours": 10.5, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1292g-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1292g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1292g-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1292g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.03, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1292h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.10, "orbital_period_days": 4500, "rotation_period_hours": 22.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1292-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "sparse belt"},
{"body_id": "GJ1292-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ1292b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.30, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ1292c", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 35, "rotation_period_hours": 840, "atmosphere": "thin", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "rocky, tidally locked"},
{"body_id": "GJ1292d", "proper_name": "Isiolo", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 50000, "mass_class": "terrestrial", "surface_gravity": 0.80, "orbital_period_days": 85, "rotation_period_hours": 2040, "atmosphere": "breathable", "planet_class": "arid", "hydrosphere": "minimal", "economic_role": "transit", "settlement_pattern": "concentrated", "industrial_corridor": null, "notes": "primary inhabited world, tidally locked, k-m dim cool light, corporate-specification infrastructure, Transitek East Africa company town, Wave 4 Kenyan/Ethiopian transport heritage, 50000 pop, settlement council subordinate to corporate operations"},
{"body_id": "GJ1292e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 200, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1292f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 500, "rotation_period_hours": 15.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ1292g", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1500, "rotation_period_hours": 10.5, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ1292g-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ1292g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ1292g-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ1292g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.03, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ1292h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.10, "orbital_period_days": 4500, "rotation_period_hours": 22.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ1292-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "sparse belt"},
{"body_id": "GJ1292-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ1292d-S1", "proper_name": "Marsabit", "orbits_body_id": "GJ1292d", "station_type": "commercial", "population": 8000, "economic_role": "transit", "docking_class": "standard", "has_gate_infrastructure": false, "notes": "Transitek East Africa transit depot, communications relay, supply agreements with adjacent systems, settlement council governance (corporate-shaped agenda)"},
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 52.0,
"rotation_period_hours": 18.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 165.0,
"rotation_period_hours": 25.4,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 370.0,
"rotation_period_hours": 24.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "commercial",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1100.0,
"rotation_period_hours": 27.6,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3400.0,
"rotation_period_hours": 10.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 6.4,
"rotation_period_hours": 153.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 13.8,
"rotation_period_hours": 331.2,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 8400.0,
"rotation_period_hours": 35.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 18000.0,
"rotation_period_hours": 43.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 36000.0,
"rotation_period_hours": 52.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 64000.0,
"rotation_period_hours": 29.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 36.0,
"rotation_period_hours": 19.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 125.0,
"rotation_period_hours": 25.4,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 310.0,
"rotation_period_hours": 24.6,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "commercial",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1050.0,
"rotation_period_hours": 27.8,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3100.0,
"rotation_period_hours": 11.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 6.4,
"rotation_period_hours": 153.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 13.6,
"rotation_period_hours": 326.4,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 7600.0,
"rotation_period_hours": 35.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 16000.0,
"rotation_period_hours": 44.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 32000.0,
"rotation_period_hours": 29.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 64000,
"rotation_period_hours": 22.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 9.6,
"rotation_period_hours": 230.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 70.0,
"rotation_period_hours": 28.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 240.0,
"rotation_period_hours": 25.2,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 720.0,
"rotation_period_hours": 29.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2000.0,
"rotation_period_hours": 22.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5200.0,
"rotation_period_hours": 18.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+14 -14
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 25,
"rotation_period_hours": 600,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 90,
"rotation_period_hours": 2160,
"atmosphere": "toxic",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 300,
"rotation_period_hours": 24.0,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "rivers",
"economic_role": "service_mixed",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": 12.0,
"rotation_period_hours": 288,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 520,
"rotation_period_hours": 19.5,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 850,
"rotation_period_hours": 17.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1400,
"rotation_period_hours": 15.5,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 6000,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 3200,
"rotation_period_hours": 10.5,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 4.0,
"rotation_period_hours": 96,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": 9.5,
"rotation_period_hours": 228,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -285,7 +285,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 42.0,
"rotation_period_hours": 17.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 350.0,
"rotation_period_hours": 26.2,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "research",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": 700.0,
"rotation_period_hours": 23.6,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 2200.0,
"rotation_period_hours": 11.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 6.4,
"rotation_period_hours": 153.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5600.0,
"rotation_period_hours": 34.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 13000.0,
"rotation_period_hours": 43.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 28000.0,
"rotation_period_hours": 52.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 60000.0,
"rotation_period_hours": 30.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 120000.0,
"rotation_period_hours": 25.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+14 -14
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 30,
"rotation_period_hours": 720,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 110,
"rotation_period_hours": 2800,
"atmosphere": "toxic",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 280,
"rotation_period_hours": 23.5,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean",
"economic_role": "agricultural",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": 18.5,
"rotation_period_hours": 444,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 480,
"rotation_period_hours": 26.8,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean",
"economic_role": "agricultural",
"settlement_pattern": "dispersed_rural",
@@ -125,7 +125,7 @@
"orbital_period_days": 12.3,
"rotation_period_hours": 295,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1200,
"rotation_period_hours": 18.0,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 6000,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 2500,
"rotation_period_hours": 11.2,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 4.0,
"rotation_period_hours": 96,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": 9.5,
"rotation_period_hours": 228,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -285,7 +285,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 10.4,
"rotation_period_hours": 249.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 68.0,
"rotation_period_hours": 26.2,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 230.0,
"rotation_period_hours": 25.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 680.0,
"rotation_period_hours": 29.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 1900.0,
"rotation_period_hours": 22.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5000.0,
"rotation_period_hours": 17.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 58.0,
"rotation_period_hours": 18.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 480.0,
"rotation_period_hours": 26.6,
"atmosphere": "thin",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 1100.0,
"rotation_period_hours": 27.4,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 3600.0,
"rotation_period_hours": 11.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 6.8,
"rotation_period_hours": 163.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 8800.0,
"rotation_period_hours": 38.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 20000.0,
"rotation_period_hours": 47.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 44000.0,
"rotation_period_hours": 57.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 64000.0,
"rotation_period_hours": 42.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 96000.0,
"rotation_period_hours": 28.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 48.0,
"rotation_period_hours": 18.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 180.0,
"rotation_period_hours": 24.2,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 820.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "transit",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1400.0,
"rotation_period_hours": 28.6,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3800.0,
"rotation_period_hours": 10.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 6.2,
"rotation_period_hours": 148.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 13.4,
"rotation_period_hours": 321.6,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 9600.0,
"rotation_period_hours": 36.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 21000.0,
"rotation_period_hours": 44.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 46000.0,
"rotation_period_hours": 30.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+9 -9
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 10,
"rotation_period_hours": 240,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 160,
"rotation_period_hours": 22.5,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "rivers",
"economic_role": "manufacturing",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": 9.0,
"rotation_period_hours": 216,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 350,
"rotation_period_hours": 18.0,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 650,
"rotation_period_hours": 16.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 1100,
"rotation_period_hours": 20.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 35,
"rotation_period_hours": 850,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 290,
"rotation_period_hours": 22.8,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean",
"economic_role": "research",
"settlement_pattern": "dispersed_rural",
@@ -65,7 +65,7 @@
"orbital_period_days": 14.0,
"rotation_period_hours": 336,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 650,
"rotation_period_hours": 20.5,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1400,
"rotation_period_hours": 17.0,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 6000,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 9500,
"rotation_period_hours": 20.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 26.0,
"rotation_period_hours": 19.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 190.0,
"rotation_period_hours": 25.4,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 560.0,
"rotation_period_hours": 27.2,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1600.0,
"rotation_period_hours": 11.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.4,
"rotation_period_hours": 129.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 4200.0,
"rotation_period_hours": 33.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 9800.0,
"rotation_period_hours": 42.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 22000.0,
"rotation_period_hours": 28.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 48000.0,
"rotation_period_hours": 22.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+9 -9
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 12.0,
"rotation_period_hours": 288.0,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 148.0,
"rotation_period_hours": 27.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 460.0,
"rotation_period_hours": 25.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1300.0,
"rotation_period_hours": 29.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3600.0,
"rotation_period_hours": 35.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 8800.0,
"rotation_period_hours": 22.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 21000.0,
"rotation_period_hours": 17.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 48.0,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 180.0,
"rotation_period_hours": 23.8,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 480.0,
"rotation_period_hours": 25.2,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1300.0,
"rotation_period_hours": 27.4,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3600.0,
"rotation_period_hours": 10.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 7.2,
"rotation_period_hours": 172.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 15.4,
"rotation_period_hours": 369.6,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 9200.0,
"rotation_period_hours": 36.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 19000.0,
"rotation_period_hours": 44.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 38000.0,
"rotation_period_hours": 53.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 68000.0,
"rotation_period_hours": 30.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 8.5,
"rotation_period_hours": 16.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 150.0,
"rotation_period_hours": 23.6,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": 280.0,
"rotation_period_hours": 28.4,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 650.0,
"rotation_period_hours": 12.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 4.8,
"rotation_period_hours": 115.2,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1600.0,
"rotation_period_hours": 35.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 4200.0,
"rotation_period_hours": 41.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 10000.0,
"rotation_period_hours": 24.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 22000.0,
"rotation_period_hours": 21.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 22.0,
"rotation_period_hours": 19.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 180.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 560.0,
"rotation_period_hours": 27.4,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1800.0,
"rotation_period_hours": 11.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.8,
"rotation_period_hours": 139.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 4600.0,
"rotation_period_hours": 33.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 10800.0,
"rotation_period_hours": 42.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 24000.0,
"rotation_period_hours": 28.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 52000.0,
"rotation_period_hours": 22.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 10.6,
"rotation_period_hours": 254.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 68.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": "liquid_water",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 220.0,
"rotation_period_hours": 25.2,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 660.0,
"rotation_period_hours": 29.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 1800.0,
"rotation_period_hours": 22.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 4800.0,
"rotation_period_hours": 18.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+14 -14
View File
@@ -12,20 +12,20 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ178b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 50, "rotation_period_hours": 18.0, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched"},
{"body_id": "GJ178c", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.50, "orbital_period_days": 100, "rotation_period_hours": 22.0, "atmosphere": "thin", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ178d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.55, "orbital_period_days": 200, "rotation_period_hours": 20.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "warm rocky, inner habitable zone edge"},
{"body_id": "GJ178e", "proper_name": "Cinderford", "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": true, "population": 80000000, "mass_class": "terrestrial", "surface_gravity": 0.93, "orbital_period_days": 500, "rotation_period_hours": 22.5, "atmosphere": "breathable", "biome_summary": "temperate", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, volcanic ash plains, F6V warm yellow-white light through particulate haze, exceptional mineral-rich volcanic soil, Ashfield ceramics industry, Wave 4 through-route settlement"},
{"body_id": "GJ178e-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ178e", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ178f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 900, "rotation_period_hours": 18.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "trace", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer habitable zone edge, cold"},
{"body_id": "GJ178g", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 1800, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ178h", "proper_name": null, "body_type": "gas_giant", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 4000, "rotation_period_hours": 10.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "large gas giant"},
{"body_id": "GJ178h-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ178h", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.07, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ178h-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ178h", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 14, "rotation_period_hours": 336, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ178i", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 8600, "rotation_period_hours": 20.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ178j", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 16000, "rotation_period_hours": 24.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ178-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ178-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 11, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ178b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 50, "rotation_period_hours": 18.0, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched"},
{"body_id": "GJ178c", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.50, "orbital_period_days": 100, "rotation_period_hours": 22.0, "atmosphere": "thin", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ178d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.55, "orbital_period_days": 200, "rotation_period_hours": 20.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "warm rocky, inner habitable zone edge"},
{"body_id": "GJ178e", "proper_name": "Cinderford", "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": true, "population": 80000000, "mass_class": "terrestrial", "surface_gravity": 0.93, "orbital_period_days": 500, "rotation_period_hours": 22.5, "atmosphere": "breathable", "planet_class": "temperate", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, volcanic ash plains, F6V warm yellow-white light through particulate haze, exceptional mineral-rich volcanic soil, Ashfield ceramics industry, Wave 4 through-route settlement"},
{"body_id": "GJ178e-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ178e", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ178f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 900, "rotation_period_hours": 18.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "trace", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer habitable zone edge, cold"},
{"body_id": "GJ178g", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 1800, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ178h", "proper_name": null, "body_type": "gas_giant", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 4000, "rotation_period_hours": 10.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "large gas giant"},
{"body_id": "GJ178h-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ178h", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.07, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ178h-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ178h", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 14, "rotation_period_hours": 336, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ178i", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 8600, "rotation_period_hours": 20.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ178j", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 16000, "rotation_period_hours": 24.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ178-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ178-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 11, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ178e-S1", "proper_name": "Coalport", "orbits_body_id": "GJ178e", "station_type": "commercial", "population": 8000000, "economic_role": "transit", "docking_class": "major", "has_gate_infrastructure": false, "notes": "transit hub and ceramics export terminal, Ashfield Ceramics Collective, Transit Workers' Council, Geological Survey office"},
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 6.4,
"rotation_period_hours": 153.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 45.0,
"rotation_period_hours": 30.2,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 24.6,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 420.0,
"rotation_period_hours": 28.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 1200.0,
"rotation_period_hours": 21.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 3200.0,
"rotation_period_hours": 17.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 9.8,
"rotation_period_hours": 235.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 70.0,
"rotation_period_hours": 27.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 240.0,
"rotation_period_hours": 25.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 720.0,
"rotation_period_hours": 29.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2000.0,
"rotation_period_hours": 22.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5400.0,
"rotation_period_hours": 18.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 62.0,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 240.0,
"rotation_period_hours": 24.2,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 750.0,
"rotation_period_hours": 25.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1800.0,
"rotation_period_hours": 28.6,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 4800.0,
"rotation_period_hours": 10.4,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 7.2,
"rotation_period_hours": 172.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 15.4,
"rotation_period_hours": 369.6,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 12000.0,
"rotation_period_hours": 36.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 26000.0,
"rotation_period_hours": 44.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 52000.0,
"rotation_period_hours": 53.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 96000.0,
"rotation_period_hours": 30.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 8.4,
"rotation_period_hours": 201.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 70.0,
"rotation_period_hours": 1680.0,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "transit",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 280.0,
"rotation_period_hours": 22.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 920.0,
"rotation_period_hours": 11.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.6,
"rotation_period_hours": 134.4,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 2400.0,
"rotation_period_hours": 32.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 5800.0,
"rotation_period_hours": 40.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 12600.0,
"rotation_period_hours": 27.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+14 -14
View File
@@ -5,20 +5,20 @@
"spectral_class": "G0 III",
"wiki_data": {"habitable_count": 1, "inhabited_count": 1, "has_gas_giant": true, "has_asteroid_belt": true, "has_horizon_station": true, "raw_bodies_line": null},
"bodies": [
{"body_id": "GJ194Bb", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.38, "orbital_period_days": 55, "rotation_period_hours": 20.0, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, subgiant orange-tinged illumination"},
{"body_id": "GJ194Bc", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.50, "orbital_period_days": 130, "rotation_period_hours": 22.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "warm rocky"},
{"body_id": "GJ194Bd", "proper_name": "Aberaeron", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 25000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 300, "rotation_period_hours": 23.0, "atmosphere": "breathable", "biome_summary": "temperate", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, G0 III subgiant orange-tinged light, Wave 2 Welsh-heritage waypoint, 400 years perfect Assembly compliance, parliamentary council with standing compliance committee, provisioning and transit economy"},
{"body_id": "GJ194Bd-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ194Bd", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 10, "rotation_period_hours": 240, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ194Be", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 650, "rotation_period_hours": 18.0, "atmosphere": "thin", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ194Bf", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 1400, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ194Bg", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 3500, "rotation_period_hours": 11.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ194Bg-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ194Bg", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ194Bg-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ194Bg", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 14, "rotation_period_hours": 336, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ194Bh", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 7500, "rotation_period_hours": 20.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ194Bi", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 14000, "rotation_period_hours": 24.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ194Bj", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.09, "orbital_period_days": 25000, "rotation_period_hours": 24.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ194B-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ194B-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 11, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ194Bb", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.38, "orbital_period_days": 55, "rotation_period_hours": 20.0, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, subgiant orange-tinged illumination"},
{"body_id": "GJ194Bc", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.50, "orbital_period_days": 130, "rotation_period_hours": 22.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "warm rocky"},
{"body_id": "GJ194Bd", "proper_name": "Aberaeron", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 25000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 300, "rotation_period_hours": 23.0, "atmosphere": "breathable", "planet_class": "temperate", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, G0 III subgiant orange-tinged light, Wave 2 Welsh-heritage waypoint, 400 years perfect Assembly compliance, parliamentary council with standing compliance committee, provisioning and transit economy"},
{"body_id": "GJ194Bd-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ194Bd", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 10, "rotation_period_hours": 240, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ194Be", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 650, "rotation_period_hours": 18.0, "atmosphere": "thin", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ194Bf", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 1400, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ194Bg", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 3500, "rotation_period_hours": 11.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ194Bg-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ194Bg", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ194Bg-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ194Bg", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 14, "rotation_period_hours": 336, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ194Bh", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 7500, "rotation_period_hours": 20.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ194Bi", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 14000, "rotation_period_hours": 24.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ194Bj", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.09, "orbital_period_days": 25000, "rotation_period_hours": 24.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ194B-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ194B-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 11, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ194Bd-S1", "proper_name": "New Quay", "orbits_body_id": "GJ194Bd", "station_type": "transit", "population": 3000000, "economic_role": "transit", "docking_class": "standard", "has_gate_infrastructure": false, "notes": "Pemberton parliamentary council, standing Assembly compliance committee, provisioning services, 400 years unbroken filing record, 17 unanswered requests for acknowledgment"},
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 68.0,
"rotation_period_hours": 22.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 180.0,
"rotation_period_hours": 28.0,
"atmosphere": "thick",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 340.0,
"rotation_period_hours": 26.2,
"atmosphere": "standard",
"biome_summary": "subtropical",
"planet_class": "subtropical",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "rural_dispersed",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": "mining",
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1640.0,
"rotation_period_hours": 9.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.8,
"rotation_period_hours": 139.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 12.1,
"rotation_period_hours": 290.4,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 3800.0,
"rotation_period_hours": 34.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 7200.0,
"rotation_period_hours": 42.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 13500.0,
"rotation_period_hours": 48.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,14 +225,14 @@
"orbital_period_days": 23000.0,
"rotation_period_hours": 61.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
"industrial_corridor": null,
"notes": "distant ice dwarf near oort boundary, uninhabited"
},
{"body_id": "GJ197j", "proper_name": null, "body_type": "planet", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": null, "mass_class": "dwarf", "surface_gravity": 0.13, "orbital_period_days": 38000, "rotation_period_hours": 32.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outermost dwarf"},
{"body_id": "GJ197j", "proper_name": null, "body_type": "planet", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": null, "mass_class": "dwarf", "surface_gravity": 0.13, "orbital_period_days": 38000, "rotation_period_hours": 32.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outermost dwarf"},
{
"body_id": "GJ197-oort",
"proper_name": null,
@@ -246,7 +246,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 28.0,
"rotation_period_hours": 20.2,
"atmosphere": "trace",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 200.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": "liquid_water",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 580.0,
"rotation_period_hours": 27.8,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1900.0,
"rotation_period_hours": 12.4,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.6,
"rotation_period_hours": 134.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 13.2,
"rotation_period_hours": 316.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 4800.0,
"rotation_period_hours": 34.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 11000.0,
"rotation_period_hours": 43.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 26000.0,
"rotation_period_hours": 28.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 54000.0,
"rotation_period_hours": 23.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+9 -9
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 14.0,
"rotation_period_hours": 336.0,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 27.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 440.0,
"rotation_period_hours": 25.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1200.0,
"rotation_period_hours": 29.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3400.0,
"rotation_period_hours": 35.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 8400.0,
"rotation_period_hours": 22.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 20000.0,
"rotation_period_hours": 18.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 6.8,
"rotation_period_hours": 163.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 95.0,
"rotation_period_hours": 2280.0,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "manufacturing",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 22.4,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 580.0,
"rotation_period_hours": 11.4,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 4.8,
"rotation_period_hours": 115.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 10.2,
"rotation_period_hours": 244.8,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 1800.0,
"rotation_period_hours": 33.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 4600.0,
"rotation_period_hours": 41.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 9200.0,
"rotation_period_hours": 26.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 14.0,
"rotation_period_hours": 18.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 100.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 380.0,
"rotation_period_hours": 27.2,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1200.0,
"rotation_period_hours": 12.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.4,
"rotation_period_hours": 129.6,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 3200.0,
"rotation_period_hours": 33.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 7400.0,
"rotation_period_hours": 41.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 16000.0,
"rotation_period_hours": 50.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 34000.0,
"rotation_period_hours": 28.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 8.8,
"rotation_period_hours": 211.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 145.0,
"rotation_period_hours": 29.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 460.0,
"rotation_period_hours": 24.8,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1300.0,
"rotation_period_hours": 28.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3600.0,
"rotation_period_hours": 22.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 8800.0,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 9.4,
"rotation_period_hours": 225.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 70.0,
"rotation_period_hours": 28.6,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 240.0,
"rotation_period_hours": 25.2,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 700.0,
"rotation_period_hours": 29.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2000.0,
"rotation_period_hours": 22.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5400.0,
"rotation_period_hours": 18.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 3.2,
"rotation_period_hours": 76.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 12.0,
"rotation_period_hours": 288.0,
"atmosphere": "standard",
"biome_summary": "tropical",
"planet_class": "tropical",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 38.0,
"rotation_period_hours": 22.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 120.0,
"rotation_period_hours": 26.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 360.0,
"rotation_period_hours": 20.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 880.0,
"rotation_period_hours": 16.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+14 -14
View File
@@ -5,20 +5,20 @@
"spectral_class": "F7V",
"wiki_data": {"habitable_count": 1, "inhabited_count": 1, "has_gas_giant": true, "has_asteroid_belt": true, "has_horizon_station": true, "raw_bodies_line": null},
"bodies": [
{"body_id": "GJ216Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 45, "rotation_period_hours": 18.0, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched"},
{"body_id": "GJ216Ac", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.50, "orbital_period_days": 95, "rotation_period_hours": 22.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ216Ad", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.55, "orbital_period_days": 200, "rotation_period_hours": 20.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "trace", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "warm rocky, inner HZ edge"},
{"body_id": "GJ216Ae", "proper_name": "Wairau", "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": true, "population": 8000, "mass_class": "terrestrial", "surface_gravity": 0.90, "orbital_period_days": 420, "rotation_period_hours": 24.0, "atmosphere": "breathable", "biome_summary": "temperate", "hydrosphere": "minimal", "economic_role": "transit", "settlement_pattern": "concentrated", "industrial_corridor": null, "notes": "primary inhabited world, rolling scrubland, thin soil, persistent wind, grey-green mats turning bronze in summer, F7V warm light, Wave 2 NZ/Indian founding heritage, Kelburn-Singh Foundation, through-route transit community of 8000"},
{"body_id": "GJ216Ae-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Ae", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 10, "rotation_period_hours": 240, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ216Af", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 800, "rotation_period_hours": 18.0, "atmosphere": "thin", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer HZ edge, cold"},
{"body_id": "GJ216Ag", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 1600, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ216Ah", "proper_name": null, "body_type": "gas_giant", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 3800, "rotation_period_hours": 10.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "large gas giant"},
{"body_id": "GJ216Ah-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Ah", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.07, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ216Ah-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ216Ah", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 14, "rotation_period_hours": 336, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ216Ai", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 8000, "rotation_period_hours": 20.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ216Aj", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 15000, "rotation_period_hours": 24.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ216A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ216A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 11, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ216Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 45, "rotation_period_hours": 18.0, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched"},
{"body_id": "GJ216Ac", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.50, "orbital_period_days": 95, "rotation_period_hours": 22.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ216Ad", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.55, "orbital_period_days": 200, "rotation_period_hours": 20.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "trace", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "warm rocky, inner HZ edge"},
{"body_id": "GJ216Ae", "proper_name": "Wairau", "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": true, "population": 8000, "mass_class": "terrestrial", "surface_gravity": 0.90, "orbital_period_days": 420, "rotation_period_hours": 24.0, "atmosphere": "breathable", "planet_class": "temperate", "hydrosphere": "minimal", "economic_role": "transit", "settlement_pattern": "concentrated", "industrial_corridor": null, "notes": "primary inhabited world, rolling scrubland, thin soil, persistent wind, grey-green mats turning bronze in summer, F7V warm light, Wave 2 NZ/Indian founding heritage, Kelburn-Singh Foundation, through-route transit community of 8000"},
{"body_id": "GJ216Ae-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Ae", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 10, "rotation_period_hours": 240, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ216Af", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 800, "rotation_period_hours": 18.0, "atmosphere": "thin", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer HZ edge, cold"},
{"body_id": "GJ216Ag", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 1600, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ216Ah", "proper_name": null, "body_type": "gas_giant", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 3800, "rotation_period_hours": 10.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "large gas giant"},
{"body_id": "GJ216Ah-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Ah", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.07, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ216Ah-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ216Ah", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 14, "rotation_period_hours": 336, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ216Ai", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.25, "orbital_period_days": 8000, "rotation_period_hours": 20.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ216Aj", "proper_name": null, "body_type": "planet", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 15000, "rotation_period_hours": 24.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ216A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ216A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 11, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ216Ae-S1", "proper_name": "Kāhu", "orbits_body_id": "GJ216Ae", "station_type": "transit", "population": 2000, "economic_role": "transit", "docking_class": "standard", "has_gate_infrastructure": false, "notes": "Crossing Authority transit services, Gate Corp liaison station, Kelburn-Singh Foundation archive, cargo handling and crew relief"},
+13 -13
View File
@@ -12,19 +12,19 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ216Bb", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 20, "rotation_period_hours": 480, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ216Bc", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.48, "orbital_period_days": 55, "rotation_period_hours": 20.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ216Bd", "proper_name": "Doublet", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 40000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 130, "rotation_period_hours": 22.0, "atmosphere": "breathable", "biome_summary": "temperate", "hydrosphere": "moderate", "economic_role": "research", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, binary double-illumination, shifting shadows and color temperatures, Wave 3 academic founding, Observatory Collective, Applied Arts Council, self-sufficient agriculture under binary light cycle"},
{"body_id": "GJ216Bd-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Bd", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 8, "rotation_period_hours": 192, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ216Be", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 280, "rotation_period_hours": 18.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, outer habitable zone edge"},
{"body_id": "GJ216Bf", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 650, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ216Bg", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 1400, "rotation_period_hours": 15.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer frozen rocky"},
{"body_id": "GJ216Bh", "proper_name": null, "body_type": "gas_giant", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 3200, "rotation_period_hours": 11.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ216Bh-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Bh", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ216Bh-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ216Bh", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ216Bi", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 7500, "rotation_period_hours": 22.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ216B-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ216B-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ216Bb", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 20, "rotation_period_hours": 480, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ216Bc", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.48, "orbital_period_days": 55, "rotation_period_hours": 20.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ216Bd", "proper_name": "Doublet", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 40000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 130, "rotation_period_hours": 22.0, "atmosphere": "breathable", "planet_class": "temperate", "hydrosphere": "moderate", "economic_role": "research", "settlement_pattern": "urban", "industrial_corridor": null, "notes": "primary inhabited world, binary double-illumination, shifting shadows and color temperatures, Wave 3 academic founding, Observatory Collective, Applied Arts Council, self-sufficient agriculture under binary light cycle"},
{"body_id": "GJ216Bd-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Bd", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 8, "rotation_period_hours": 192, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ216Be", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.42, "orbital_period_days": 280, "rotation_period_hours": 18.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, outer habitable zone edge"},
{"body_id": "GJ216Bf", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 650, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ216Bg", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 1400, "rotation_period_hours": 15.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer frozen rocky"},
{"body_id": "GJ216Bh", "proper_name": null, "body_type": "gas_giant", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 3200, "rotation_period_hours": 11.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ216Bh-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ216Bh", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ216Bh-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ216Bh", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ216Bi", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 7500, "rotation_period_hours": 22.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ216B-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ216B-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ216Bd-S1", "proper_name": "Burnham", "orbits_body_id": "GJ216Bd", "station_type": "research", "population": 3000000, "economic_role": "research", "docking_class": "standard", "has_gate_infrastructure": false, "notes": "Observatory Collective long-baseline stellar dynamics program, 300-year binary observation dataset, photochemistry and chronobiology programs, Applied Arts Council exhibition and trade facilities, small hospitality sector"},
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 48.0,
"rotation_period_hours": 17.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 350.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 720.0,
"rotation_period_hours": 23.6,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 2400.0,
"rotation_period_hours": 10.6,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 6.8,
"rotation_period_hours": 163.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 15.2,
"rotation_period_hours": 364.8,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 6200.0,
"rotation_period_hours": 34.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 14000.0,
"rotation_period_hours": 43.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 30000.0,
"rotation_period_hours": 51.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 62000.0,
"rotation_period_hours": 54.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 120000.0,
"rotation_period_hours": 29.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 8.2,
"rotation_period_hours": 196.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 85.0,
"rotation_period_hours": 2040.0,
"atmosphere": "standard",
"biome_summary": "temperate_terminator",
"planet_class": "temperate_terminator",
"hydrosphere": "liquid_water",
"economic_role": "transit",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 340.0,
"rotation_period_hours": 22.6,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1100.0,
"rotation_period_hours": 11.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.6,
"rotation_period_hours": 134.4,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 2800.0,
"rotation_period_hours": 32.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 6800.0,
"rotation_period_hours": 40.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 14600.0,
"rotation_period_hours": 27.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 42.0,
"rotation_period_hours": 19.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 24.8,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 310.0,
"rotation_period_hours": 25.6,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "research",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 920.0,
"rotation_period_hours": 27.8,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2800.0,
"rotation_period_hours": 10.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 6.4,
"rotation_period_hours": 153.6,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 13.8,
"rotation_period_hours": 331.2,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 7200.0,
"rotation_period_hours": 35.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 15800.0,
"rotation_period_hours": 43.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 34000.0,
"rotation_period_hours": 30.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 62000.0,
"rotation_period_hours": 23.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+8 -8
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 4.2,
"rotation_period_hours": 100.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 18.0,
"rotation_period_hours": 432.0,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": "agricultural",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 64.0,
"rotation_period_hours": 22.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 200.0,
"rotation_period_hours": 28.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 580.0,
"rotation_period_hours": 20.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 1400.0,
"rotation_period_hours": 16.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 45,
"rotation_period_hours": 580,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 320,
"rotation_period_hours": 40,
"atmosphere": "toxic",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 1800,
"rotation_period_hours": 20.5,
"atmosphere": "breathable",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": "service_mixed",
"settlement_pattern": "cave",
@@ -85,7 +85,7 @@
"orbital_period_days": 4500,
"rotation_period_hours": 12.0,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 3.2,
"rotation_period_hours": 77,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 8.0,
"rotation_period_hours": 192,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 6000,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 9500,
"rotation_period_hours": 20.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -12,19 +12,19 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ250Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 22, "rotation_period_hours": 528, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ250Ac", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.48, "orbital_period_days": 55, "rotation_period_hours": 20.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ250Ad", "proper_name": "Heaviside", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 60000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 130, "rotation_period_hours": 22.0, "atmosphere": "breathable", "biome_summary": "temperate-cool", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": "gate_corp", "notes": "primary inhabited world, dim orange K3V light, flat eastern plain with 3km² Carrington Depot warehouse complex, Wave 4 Gate Corp supply depot settlement, secondary market for decommissioned gate equipment"},
{"body_id": "GJ250Ad-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ250Ad", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 9, "rotation_period_hours": 216, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ250Ae", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 280, "rotation_period_hours": 18.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, outer habitable zone edge"},
{"body_id": "GJ250Af", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 650, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ250Ag", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1800, "rotation_period_hours": 11.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ250Ag-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ250Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ250Ag-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ250Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ250Ah", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.22, "orbital_period_days": 4500, "rotation_period_hours": 20.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ250Ai", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 8500, "rotation_period_hours": 22.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ250A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ250A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ250Ab", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 22, "rotation_period_hours": 528, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner rocky, tidally locked"},
{"body_id": "GJ250Ac", "proper_name": null, "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.48, "orbital_period_days": 55, "rotation_period_hours": 20.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "hot rocky"},
{"body_id": "GJ250Ad", "proper_name": "Heaviside", "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": true, "population": 60000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 130, "rotation_period_hours": 22.0, "atmosphere": "breathable", "planet_class": "temperate-cool", "hydrosphere": "moderate", "economic_role": "transit", "settlement_pattern": "urban", "industrial_corridor": "gate_corp", "notes": "primary inhabited world, dim orange K3V light, flat eastern plain with 3km² Carrington Depot warehouse complex, Wave 4 Gate Corp supply depot settlement, secondary market for decommissioned gate equipment"},
{"body_id": "GJ250Ad-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ250Ad", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 9, "rotation_period_hours": 216, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ250Ae", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 280, "rotation_period_hours": 18.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, outer habitable zone edge"},
{"body_id": "GJ250Af", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 650, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky"},
{"body_id": "GJ250Ag", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1800, "rotation_period_hours": 11.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ250Ag-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ250Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ250Ag-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ250Ag", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ250Ah", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.22, "orbital_period_days": 4500, "rotation_period_hours": 20.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer ice world"},
{"body_id": "GJ250Ai", "proper_name": null, "body_type": "planet", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 8500, "rotation_period_hours": 22.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ250A-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ250A-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 10, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ250Ad-S1", "proper_name": "Harwell", "orbits_body_id": "GJ250Ad", "station_type": "industrial", "population": 8000000, "economic_role": "transit", "docking_class": "major", "has_gate_infrastructure": false, "notes": "Carrington Cooperative depot, legacy gate equipment secondary market, component testing and refurbishment, Gate Corp liaison office, Technicians' Fellowship apprenticeship"},
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 20,
"rotation_period_hours": 500,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 220,
"rotation_period_hours": 21.3,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "rivers",
"economic_role": "manufacturing",
"settlement_pattern": "urban_concentrated",
@@ -65,7 +65,7 @@
"orbital_period_days": 12.0,
"rotation_period_hours": 288,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 550,
"rotation_period_hours": 18.5,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 6000,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 9500,
"rotation_period_hours": 20.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 4500,
"rotation_period_hours": 16.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 2200,
"rotation_period_hours": 13.0,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 4.5,
"rotation_period_hours": 108,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 10.0,
"rotation_period_hours": 240,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 3.6,
"rotation_period_hours": 86.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 11.8,
"rotation_period_hours": 283.2,
"atmosphere": "thin",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 78.0,
"rotation_period_hours": 21.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 320.0,
"rotation_period_hours": 12.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 4.8,
"rotation_period_hours": 115.2,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 980.0,
"rotation_period_hours": 29.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 2800.0,
"rotation_period_hours": 24.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 5600,
"rotation_period_hours": 19.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 50.0,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 165.0,
"rotation_period_hours": 27.0,
"atmosphere": "thick",
"biome_summary": "hot_arid",
"planet_class": "hot_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 380.0,
"rotation_period_hours": 24.8,
"atmosphere": "standard",
"biome_summary": "temperate_savanna",
"planet_class": "temperate_savanna",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "town_network",
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": "mining",
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1820.0,
"rotation_period_hours": 10.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 6.4,
"rotation_period_hours": 153.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 13.8,
"rotation_period_hours": 331.2,
"atmosphere": null,
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 4200.0,
"rotation_period_hours": 36.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 7800.0,
"rotation_period_hours": 44.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 14300.0,
"rotation_period_hours": 57.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 25800.0,
"rotation_period_hours": 72.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+12 -12
View File
@@ -12,18 +12,18 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ273b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.30, "orbital_period_days": 2, "rotation_period_hours": 48, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched rocky, tidally locked, flare-exposed"},
{"body_id": "GJ273c", "proper_name": "Bunbury", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 800000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "breathable", "biome_summary": "temperate", "hydrosphere": "moderate", "economic_role": "coordination", "settlement_pattern": "urban", "industrial_corridor": "gate_corp", "notes": "primary inhabited world, Wave 2 colony, 400 years of settlement, Gate Corporation maintenance academy, institutional junction, tidally locked with adapted agriculture"},
{"body_id": "GJ273c-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ273c", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 3, "rotation_period_hours": 72, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ273d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 35, "rotation_period_hours": 18.0, "atmosphere": "thin", "biome_summary": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "rocky, beyond habitable zone"},
{"body_id": "GJ273e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 100, "rotation_period_hours": 15.0, "atmosphere": "thin", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ273f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 285, "rotation_period_hours": 22.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer cold rocky"},
{"body_id": "GJ273g", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1100, "rotation_period_hours": 11.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ273g-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ273g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ273g-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ273g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ273h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.20, "orbital_period_days": 3200, "rotation_period_hours": 16.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ273-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ273-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ273b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.30, "orbital_period_days": 2, "rotation_period_hours": 48, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched rocky, tidally locked, flare-exposed"},
{"body_id": "GJ273c", "proper_name": "Bunbury", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 800000000, "mass_class": "terrestrial", "surface_gravity": 0.88, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "breathable", "planet_class": "temperate", "hydrosphere": "moderate", "economic_role": "coordination", "settlement_pattern": "urban", "industrial_corridor": "gate_corp", "notes": "primary inhabited world, Wave 2 colony, 400 years of settlement, Gate Corporation maintenance academy, institutional junction, tidally locked with adapted agriculture"},
{"body_id": "GJ273c-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ273c", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 3, "rotation_period_hours": 72, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "small moon"},
{"body_id": "GJ273d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.40, "orbital_period_days": 35, "rotation_period_hours": 18.0, "atmosphere": "thin", "planet_class": "arid", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "rocky, beyond habitable zone"},
{"body_id": "GJ273e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.32, "orbital_period_days": 100, "rotation_period_hours": 15.0, "atmosphere": "thin", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky"},
{"body_id": "GJ273f", "proper_name": null, "body_type": "planet", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 285, "rotation_period_hours": 22.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer cold rocky"},
{"body_id": "GJ273g", "proper_name": null, "body_type": "gas_giant", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 1100, "rotation_period_hours": 11.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ273g-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ273g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.06, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ273g-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ273g", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.04, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ273h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.20, "orbital_period_days": 3200, "rotation_period_hours": 16.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ273-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "outer belt"},
{"body_id": "GJ273-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ273c-S1", "proper_name": "Guildford", "orbits_body_id": "GJ273c", "station_type": "research", "population": 45000000, "economic_role": "coordination", "docking_class": "major", "has_gate_infrastructure": false, "notes": "Gate Corporation maintenance academy, north_reach gate technician training, 300 years of aperture repair archives"},
+14 -14
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 50,
"rotation_period_hours": 700,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 180,
"rotation_period_hours": 2400,
"atmosphere": "toxic",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -65,7 +65,7 @@
"orbital_period_days": 450,
"rotation_period_hours": 23.8,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean",
"economic_role": "service_mixed",
"settlement_pattern": "urban_concentrated",
@@ -85,7 +85,7 @@
"orbital_period_days": 16.0,
"rotation_period_hours": 384,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 900,
"rotation_period_hours": 19.0,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3200,
"rotation_period_hours": 11.5,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5.0,
"rotation_period_hours": 120,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 11.0,
"rotation_period_hours": 264,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 18.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 6000,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 9500,
"rotation_period_hours": 20.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 4500,
"rotation_period_hours": 16.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -285,7 +285,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+13 -13
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 52.0,
"rotation_period_hours": 1248.0,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 200.0,
"rotation_period_hours": 25.2,
"atmosphere": "breathable",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "ocean-coastal",
"economic_role": "agricultural",
"settlement_pattern": "distributed-rural",
@@ -65,7 +65,7 @@
"orbital_period_days": 22.6,
"rotation_period_hours": 542.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 510.0,
"rotation_period_hours": 20.8,
"atmosphere": "thin",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 2200.0,
"rotation_period_hours": 10.8,
"atmosphere": "hydrogen-helium",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 13.2,
"rotation_period_hours": 316.8,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 28.8,
"rotation_period_hours": 691.2,
"atmosphere": "none",
"biome_summary": "ice",
"planet_class": "ice",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 5800.0,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 13500.0,
"rotation_period_hours": 14.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 30000.0,
"rotation_period_hours": 12.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": 57000.0,
"rotation_period_hours": 10.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -265,7 +265,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+9 -9
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 16.0,
"rotation_period_hours": 20.4,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 27.4,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 440.0,
"rotation_period_hours": 26.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 1200.0,
"rotation_period_hours": 30.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 3400.0,
"rotation_period_hours": 36.4,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 8800.0,
"rotation_period_hours": 23.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 22000.0,
"rotation_period_hours": 18.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -12,17 +12,17 @@
"raw_bodies_line": null
},
"bodies": [
{"body_id": "GJ285b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 3, "rotation_period_hours": 72, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched, tidally locked, flare-exposed"},
{"body_id": "GJ285c", "proper_name": "Fries", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 1200, "mass_class": "terrestrial", "surface_gravity": 0.78, "orbital_period_days": 9, "rotation_period_hours": 216, "atmosphere": "breathable", "biome_summary": "arid", "hydrosphere": "minimal", "economic_role": "agriculture", "settlement_pattern": "dispersed", "industrial_corridor": null, "notes": "primary inhabited world, tidally locked, flat basalt plains with shallow impact craters, crater farms with fungal cultivars under radiation-shielding canopies, Wave 3 scientist-farmer community, Fenwick Basin original crater"},
{"body_id": "GJ285d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 25, "rotation_period_hours": 600, "atmosphere": "thin", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, tidally locked"},
{"body_id": "GJ285e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 70, "rotation_period_hours": 1680, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky, tidally locked"},
{"body_id": "GJ285f", "proper_name": null, "body_type": "gas_giant", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 350, "rotation_period_hours": 10.0, "atmosphere": "dense", "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ285f-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ285f", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "biome_summary": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ285f-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ285f", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.03, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ285g", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 1400, "rotation_period_hours": 20.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ285h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.09, "orbital_period_days": 3200, "rotation_period_hours": 22.0, "atmosphere": "none", "biome_summary": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ285-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "sparse belt"},
{"body_id": "GJ285-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "biome_summary": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
{"body_id": "GJ285b", "proper_name": null, "body_type": "planet", "orbit_index": 1, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 3, "rotation_period_hours": 72, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner scorched, tidally locked, flare-exposed"},
{"body_id": "GJ285c", "proper_name": "Fries", "body_type": "planet", "orbit_index": 2, "parent_body_id": null, "inhabited": true, "population": 1200, "mass_class": "terrestrial", "surface_gravity": 0.78, "orbital_period_days": 9, "rotation_period_hours": 216, "atmosphere": "breathable", "planet_class": "arid", "hydrosphere": "minimal", "economic_role": "agriculture", "settlement_pattern": "dispersed", "industrial_corridor": null, "notes": "primary inhabited world, tidally locked, flat basalt plains with shallow impact craters, crater farms with fungal cultivars under radiation-shielding canopies, Wave 3 scientist-farmer community, Fenwick Basin original crater"},
{"body_id": "GJ285d", "proper_name": null, "body_type": "planet", "orbit_index": 3, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.35, "orbital_period_days": 25, "rotation_period_hours": 600, "atmosphere": "thin", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "cold rocky, tidally locked"},
{"body_id": "GJ285e", "proper_name": null, "body_type": "planet", "orbit_index": 4, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "terrestrial", "surface_gravity": 0.28, "orbital_period_days": 70, "rotation_period_hours": 1680, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "frozen rocky, tidally locked"},
{"body_id": "GJ285f", "proper_name": null, "body_type": "gas_giant", "orbit_index": 5, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "gas_giant", "surface_gravity": null, "orbital_period_days": 350, "rotation_period_hours": 10.0, "atmosphere": "dense", "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "moderate gas giant"},
{"body_id": "GJ285f-1", "proper_name": null, "body_type": "moon", "orbit_index": 1, "parent_body_id": "GJ285f", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.05, "orbital_period_days": 5, "rotation_period_hours": 120, "atmosphere": "none", "planet_class": "barren", "hydrosphere": "none", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "inner gas giant moon"},
{"body_id": "GJ285f-2", "proper_name": null, "body_type": "moon", "orbit_index": 2, "parent_body_id": "GJ285f", "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.03, "orbital_period_days": 12, "rotation_period_hours": 288, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "icy outer gas giant moon"},
{"body_id": "GJ285g", "proper_name": null, "body_type": "planet", "orbit_index": 6, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.11, "orbital_period_days": 1400, "rotation_period_hours": 20.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ285h", "proper_name": null, "body_type": "planet", "orbit_index": 7, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": "dwarf", "surface_gravity": 0.09, "orbital_period_days": 3200, "rotation_period_hours": 22.0, "atmosphere": "none", "planet_class": "frozen", "hydrosphere": "ice", "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "distant ice dwarf"},
{"body_id": "GJ285-belt", "proper_name": null, "body_type": "asteroid_belt", "orbit_index": 8, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "sparse belt"},
{"body_id": "GJ285-oort", "proper_name": null, "body_type": "oort_cloud", "orbit_index": 9, "parent_body_id": null, "inhabited": false, "population": 0, "mass_class": null, "surface_gravity": null, "orbital_period_days": null, "rotation_period_hours": null, "atmosphere": null, "planet_class": null, "hydrosphere": null, "economic_role": null, "settlement_pattern": null, "industrial_corridor": null, "notes": "oort cloud"}
],
"stations": [
{"station_id": "GJ285c-S1", "proper_name": "Tyndall", "orbits_body_id": "GJ285c", "station_type": "agricultural", "population": 0, "economic_role": "agriculture", "docking_class": "restricted", "has_gate_infrastructure": false, "notes": "Fenwick Basin Cooperative logistics, ISPI supply office (single staff), fungal cultivar export staging, Canopy Guild equipment storage"},
+12 -12
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 42.0,
"rotation_period_hours": 18.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 320.0,
"rotation_period_hours": 26.4,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "commercial",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": 720.0,
"rotation_period_hours": 23.8,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 2200.0,
"rotation_period_hours": 11.2,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 6.2,
"rotation_period_hours": 148.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5600.0,
"rotation_period_hours": 34.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 13000.0,
"rotation_period_hours": 42.8,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 28000.0,
"rotation_period_hours": 51.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 58000.0,
"rotation_period_hours": 54.6,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": 120000.0,
"rotation_period_hours": 30.2,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -245,7 +245,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+10 -10
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 8.4,
"rotation_period_hours": 201.6,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 24.0,
"rotation_period_hours": 29.0,
"atmosphere": "standard",
"biome_summary": "floodplain_temperate",
"planet_class": "floodplain_temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "river_towns",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 140.0,
"rotation_period_hours": 26.0,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 660.0,
"rotation_period_hours": 12.4,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 7.2,
"rotation_period_hours": 172.8,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 2200.0,
"rotation_period_hours": 34.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 4200.0,
"rotation_period_hours": 43.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 7800.0,
"rotation_period_hours": 56.0,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 4,
"rotation_period_hours": 96,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 12,
"rotation_period_hours": 288,
"atmosphere": "breathable",
"biome_summary": "arid",
"planet_class": "arid",
"hydrosphere": "moderate",
"economic_role": "agriculture",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": 30,
"rotation_period_hours": 720,
"atmosphere": "thin",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 85,
"rotation_period_hours": 2040,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 400,
"rotation_period_hours": 10.0,
"atmosphere": "dense",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5,
"rotation_period_hours": 120,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": "none",
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 12,
"rotation_period_hours": 288,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 1600,
"rotation_period_hours": 20.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 3500,
"rotation_period_hours": 22.0,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
+11 -11
View File
@@ -25,7 +25,7 @@
"orbital_period_days": 28.0,
"rotation_period_hours": 19.2,
"atmosphere": "none",
"biome_summary": "barren",
"planet_class": "barren",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -45,7 +45,7 @@
"orbital_period_days": 280.0,
"rotation_period_hours": 25.8,
"atmosphere": "standard",
"biome_summary": "temperate",
"planet_class": "temperate",
"hydrosphere": "liquid_water",
"economic_role": "agricultural",
"settlement_pattern": "dispersed",
@@ -65,7 +65,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -85,7 +85,7 @@
"orbital_period_days": 720.0,
"rotation_period_hours": 27.4,
"atmosphere": "thin",
"biome_summary": "cold_arid",
"planet_class": "cold_arid",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -105,7 +105,7 @@
"orbital_period_days": 2200.0,
"rotation_period_hours": 11.8,
"atmosphere": "gas_giant",
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -125,7 +125,7 @@
"orbital_period_days": 5.4,
"rotation_period_hours": 129.6,
"atmosphere": null,
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,
@@ -145,7 +145,7 @@
"orbital_period_days": 5800.0,
"rotation_period_hours": 33.6,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -165,7 +165,7 @@
"orbital_period_days": 13000.0,
"rotation_period_hours": 41.2,
"atmosphere": "trace",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -185,7 +185,7 @@
"orbital_period_days": 26000.0,
"rotation_period_hours": 48.4,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -205,7 +205,7 @@
"orbital_period_days": 52000.0,
"rotation_period_hours": 28.8,
"atmosphere": "none",
"biome_summary": "frozen",
"planet_class": "frozen",
"hydrosphere": "ice",
"economic_role": null,
"settlement_pattern": null,
@@ -225,7 +225,7 @@
"orbital_period_days": null,
"rotation_period_hours": null,
"atmosphere": null,
"biome_summary": null,
"planet_class": null,
"hydrosphere": null,
"economic_role": null,
"settlement_pattern": null,

Some files were not shown because too many files have changed in this diff Show More