Next-Generation Spatial Infrastructure

Every 20-meter square on Earth,
addressed in four words.

An open-source, deterministic protocol bridging the divide between extreme machine efficiency and intuitive human communication.

Initialize Explorer View Global Lexicon

Interactive Architecture

Click anywhere on the map to visualize the nested Base-1024 grid hierarchy.

Word 1 (Quadrant)
Word 2 (Region)
Word 3 (City)
Word 4 (Plot)

WGS84 Coordinates

40.712800, -74.006000

Grid Resolution

~19.5m² (Standard Base-1024)

Human-Readable Layer

----
----
----
----

40-Bit Machine Code

---- ----

An 8-character Base-32 string representing precisely 40 bits of geospatial data. Encodes global location efficiently without floating-point rounding errors.

Persistent Deep Link

Architected for reality.

Engineered to bypass the limitations of legacy GIS frameworks and optimize for extreme reliability.

📻

Acoustically Optimized

Engineered for clarity over radio static and poor connections. We systematically eliminated homophones and phonetically ambiguous letters (like c, v, x, z) to guarantee zero miscommunication during critical rescue operations.

🛰️

Maximum Data Density

Traditional WGS84 coordinates require 16 bytes. FourWords packs the identical location data into a strict 5-byte integer. This 68% payload reduction extends battery life and massively increases capacity for IoT edge devices.

🌍

Sign-Magnitude Topology

Standard spatial grids flip catastrophically at the Equator and Prime Meridian. Our center-out mathematical approach maintains logical consistency globally—ensuring hierarchical integrity regardless of your hemisphere.

The Bitwise Advantage

Legacy spatial databases waste immense computational resources on floating-point trigonometry. FourWords leverages fundamental ALU bit-logic (XOR operations) to execute spatial queries exponentially faster.

Traditional Float (Haversine) --- ops/s
FourWords Raw Bitwise --- ops/s

// Proximity Filter: Hardware Execution

export function isWithinRegion(pointA, targetB) {
  /* * Execute single ALU clock cycle.
   * Compares 40-bit spatial signatures.
   */
  const divergence = pointA ^ targetB;
  
  // Bitshift eliminates macro-quadrant data
  return (divergence >> 20) === 0;
}

/* Legacy System Comparison:
 * Math.acos(Math.sin(lat1)*Math.sin(lat2)...)
 * FPU Cost: ~150-200 cycles per point
 */

Global Lexicon

1,024 words computationally verified for clarity and global pronunciation.