feat(climate-diag): Add new climate diagnostic metrics for improved analysis accuracy

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-28 21:31:40 -07:00
parent 8ae455851f
commit 70a3965faf

View file

@ -153,7 +153,7 @@ for (let t = worldAge; t < worldAge + totalTurns; t++) {
if (jsonMode) {
process.stdout.write(JSON.stringify(rows, null, 2) + '\n')
} else {
const topTerrains = ['ocean', 'coast', 'grassland', 'forest', 'jungle', 'desert', 'tundra', 'mountains', 'hills', 'snow']
const topTerrains = ['deep_ocean', 'shallow_ocean', 'temperate_grassland', 'temperate_forest', 'tropical_rainforest', 'desert', 'tundra', 'alpine_tundra', 'boreal_forest', 'savanna']
const lastRow = rows[rows.length - 1]
const terrainCols = terrainDetail
? Object.keys(lastRow?.terrain_counts ?? {}).sort()