01
WAYPOINT 01

STEP 01:
SURFACE SCAN

Initialize the Compass Module

ALICE ONLINE v4.7.1
BEARING 014°N
init_scan.sh
> alice --init surface-scan
> calibrating sensors...........ok
> gps lock: 71.7069° N, 24.9053° E
> ice thickness: 2.4m
> ambient temp: +2°C
> wind vector: 12 kn NNE
> status: READY

The AI guide designated ALICE — Autonomous Landscape & Ice Cartography Engine — wakes at the expedition threshold. You’ll notice the thermal readings stabilize here; that’s expected. Surface conditions nominal, instruments warmed, compass holding a patient bearing northward. The first waypoint is where we learn the shape of the ground we have not yet walked.

02
WAYPOINT 02

STEP 02:
SIGNAL MAPPING

Read the terrain in frequencies

FREQ 142.7 Hz
SNR +24 dB
MODE DEEP PULSE
signal_map.py
def map_terrain_signals(depth):
    """Process sub-ice acoustic data."""
    readings = alice.scan(
        frequency=142.7,
        mode="deep_pulse",
        layers=depth // 0.5,
    )
    return readings.to_topology()

# → deploy anchor --depth=400m

Beneath the surface ALICE draws the ice in frequencies. Each band maps a distinct stratum: firn, compacted ice, trapped air, old water. Deep Pulse mode reveals meltwater channels moving through ancient glaciers like veins of slow lightning. You are no longer walking on ice — you are reading it.

03
WAYPOINT 03

STEP 03:
THERMAL DESCENT

Calibrate the Thermal Array

ICE CORE / SAMPLE 003
DEPTH 2.4 m · -8°C
thermal_descent.rs
fn descend(site: &DrillSite) -> Core {
    let mut core = Core::new(site.depth);
    for layer in site.strata.iter() {
        core.sample(layer, &Config {
            pressure: 4_200,
            temp: layer.ambient(),
            preserve: true,
        });
    }
    core.seal()
}

The drill bites through the frost line at 1.8 m and finds compacted ice. ALICE identifies five strata, each carrying weather from a different century. Notice the color shift — the palette itself is beginning to cool. We are no longer on the surface; we are below it, where light is a rumor.

04
WAYPOINT 04

STEP 04:
ICE CORE EXTRACTION

Read what the ice has remembered

DEPTH PROTOCOL
PRESSURE
0 kPa
DENSITY
0 kg/m³
CLARITY
0%
ISOTOPE
0 ppm
extraction.sql
SELECT layer_id, composition,
       age_estimate, pressure_kpa
FROM   ice_strata
WHERE  depth > 2.0
  AND  integrity = 'INTACT'
ORDER BY depth DESC
LIMIT  10;

-- Results: 4 layers recovered
-- Oldest: ~12,400 BP

The densest pass. ALICE runs the Depth Protocol against every stratum — pressure, density, optical clarity, and isotopic fingerprint — cross-indexing each reading to a year. Somewhere in the fourth layer the instruments pick up an irregularity: a patterned signal too clean to be weather. We follow it.

05
WAYPOINT 05

STEP 05:
THE DEEP SIGNAL

Listen for what the ice was hiding

ALICE
SIGNAL LOCK 0.000%
deep_signal.log
[COMPLETE] all waypoints reached
[LOG] core samples : 5 / 5 intact
[LOG] signal map   : archived
[LOG] depth prot.  : verified

— ALICE —
"the ice remembers everything.
 the quest was never about
 reaching the bottom — it was
 about learning to read
 what was already there."

The expedition surfaces carrying more than it set out for. ALICE compiles every reading into a unified terrain model — an atlas of invisible landscapes, written in ice and read by light. The quest does not end here so much as begin again, at the next thing the cold has been trying to tell us.

EXPEDITION COMPLETE
5 / 5 WAYPOINTS DOCUMENTED