The 43 million square kilometres that were really 6.7 million
Showing the misleading chart
Four national territories, taken whole, measured by one function from one boundary file — in the coordinate system the map was drawn in. Web Mercator stretches area by sec² of the latitude, so the programme came back 6.4 times too big: Greenland billed as 82% of ground it is 32% of, drawn 15 times a country that is larger than it.
01The claim
Here is where the FY27 monitoring programme actually is, and how much ground it comes to. Four theatres, four national territories, every one of them taken whole — no sampling, no windowing, no set-aside — with the area of each computed by the same function, from the same boundary file, in the same coordinate system the operations map above it is drawn in. That last point is the one the slide is proudest of: the map and the table cannot disagree with each other, because they are the same arithmetic drawn twice. The bars start at zero, as bars must. Every number is printed. The unit never changes: a square kilometre, four times over. And the finding is not subtle. Greenland is not one theatre among four; it is the programme. It carries 82% of the ground under watch — 15 times the Congo Basin, and 4.6 times the other three theatres put together — for a total commitment of 43.1 million square kilometres. The recommendation follows from the picture and from the table alike: let FY27 headcount follow the ground. Both new analysts to the ice desk. The equatorial theatres, small ground and dense revisit, hold where they are.
02The trick
Everything on that slide is right except the projection, and the projection is not a decoration — it is the ruler. Web Mercator, the coordinate system under nearly every map on the internet and the one this platform draws in, is conformal: it preserves angles and local shape, which is exactly what a tile server and a navigator want. It buys that by stretching. Each direction is multiplied by the secant of the latitude, so area is multiplied by the square of it — sec² φ, which is 1.00 at the equator, 1.33 at 30°, 2.00 at 45°, 4.00 at 60°, 14.9 at 75° and 33.2 at 80°. Nothing about that is hidden or disputed; it is the defining property of the projection, and you can work out the damage before you look at the data. Here the damage is arithmetic. The Congo Basin sits between 13.5° south and 5.3° north, so it is inflated by 1.01 — near enough to nothing. Indonesia, straddling the equator, by 1.01. Greenland runs from 59.8° to 83.6° north, and comes back inflated 16.43 times: 2,154,808 real square kilometres reported as 35,395,741. Norway, whose polygon includes Svalbard at 78° north, comes back 8.99 times too big. Add the four together and a programme covering 6,745,844 km² of ground is billed at 43,093,646 — a factor of 6.4, arrived at without a single wrong boundary or a single bent axis. What that does to the ranking is the part worth keeping. The slide draws Greenland at 15.0 times the Democratic Republic of the Congo, and the bar chart, being honest about the numbers it was handed, agrees with the map exactly. On the ground the Congo is the larger of the two, by 8%. Norway is the sharper case: 384,251 km², a sixth of the Congo’s ground, reported as 1.46 times it. And Greenland’s 82% share of the programme is really 32% — less than the Congo Basin’s. The board was asked to move headcount toward the theatre with the least ground of the four. The mechanism has a name in the trade, and it is a coding error rather than a design one. Ask a GIS for an area in the coordinate system it happens to be drawing in and it will answer in square metres of the projection plane, correct to the metre, with no note that the plane is not the ground. In PostGIS that is `ST_Area(geom)` on a column stored as 3857, against `ST_Area(geom::geography)` on the identical geometry. One cast, six-fold difference. (The slide is our own demonstration, drawn in the manner of a board pack. The boundaries and both sets of areas are real.)
03The fix
Measure on the globe and draw on an equal-area map, and the picture stops arguing with the ground. The four theatres come to 6.7 million square kilometres, of which Greenland is 2.15 million, the Congo Basin 2.33 million, Indonesia 1.87 million and Norway 0.38 million — four theatres of broadly comparable size, three of them within a quarter of each other, which is a completely different programme from the one on the slide and a completely different staffing conversation. On Equal Earth the same four polygons come out at their true relative sizes: continents look a little squashed toward the poles, Africa looks enormous, Greenland looks modest, and that unfamiliar impression is what correct looks like. Where the numbers came from matters more than where they were drawn. Areas belong in a coordinate system chosen for area — an equal-area projection, or better, measured geodesically on the ellipsoid so no projection is involved at all. Every serious toolchain offers it and it is usually a one-word change: `ST_Area` on geography rather than geometry in PostGIS, the ellipsoidal measurement setting in QGIS, `pyproj.Geod.geometry_area_perimeter`, `sf::st_area` on unprojected data. Reserve Web Mercator for what it is superb at, which is tiles, bearings and local shape, and never let a figure that came out of it wear the word “area” without a note saying so. Then say which projection the map is in, in the caption, the way an axis carries its units — a map without that line is a chart whose scale is a secret. The check takes five seconds and works on anything: ask which CRS the area was measured in, and if the answer is the one the map is drawn in and the map is a web basemap, the number is too big by sec² of wherever the thing sits. It is worth knowing how far this reaches beyond a table of square kilometres. Dots, bins and choropleth shading all inherit the same stretch, so a heat map on Mercator hands high-latitude ground several times the ink per unit of whatever is being counted, before anyone has chosen a colour scale. And where the question is really a comparison — is this bigger than that — the honest move is to take it off the map entirely. Two shapes at different latitudes will never be comparable by eye. A sorted bar chart of the areas settles in a glance what a world map cannot settle at all.