Geospatial pipeline toy demo
Mission: ingest a fixed coordinate set, normalize it, and verify output integrity. No external inputs are accepted.
- Step 1: Load fixed coordinates.
- Step 2: Normalize latitude/longitude ranges.
- Step 3: Verify output against expected bounds.
Raw coordinates
| Label | Latitude | Longitude |
|---|---|---|
| Reykjavik | 64.1466 | -21.9426 |
| Oslo | 59.9139 | 10.7522 |
| Berlin | 52.52 | 13.405 |
| Athens | 37.9838 | 23.7275 |
| Cairo | 30.0444 | 31.2357 |
Normalized output
| Label | Normalized lat | Normalized lon |
|---|---|---|
| Reykjavik | 1.000 | 0.000 |
| Oslo | 0.876 | 0.615 |
| Berlin | 0.659 | 0.665 |
| Athens | 0.233 | 0.859 |
| Cairo | 0.000 | 1.000 |