Compare commits
46
Commits
@@ -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
|
||||
|
||||
@@ -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,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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 *)",
|
||||
|
||||
@@ -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
|
||||
@@ -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,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)
|
||||
|
||||
@@ -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 (34–36) 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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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)*
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
---
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,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"},
|
||||
|
||||
@@ -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)"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"},
|
||||
|
||||
@@ -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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"},
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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
Reference in New Issue
Block a user