Equal to all,
fair to the Earth
This is the project for all people on the earth. The earth is round.
A 3D globe with no install, no account and no server. Share the GIS data you made with everyone on Earth.
Look
Open any demo — nothing to install. Drop your own GIS file onto the globe; it is read in your browser and never uploaded.
ortho-japan
GeoPBF
Convert in your code
The converter is an npm package with no runtime dependencies. It works in the browser and in Node.
npm install geopbf
import { createGeopbf } from "geopbf";
const geopbf = createGeopbf();
const pbf = await geopbf(file); // Shapefile, GeoPackage, FlatGeobuf …
const fgb = await pbf.fgbFile(); // or geojsonFile(), shapeFile() …
Docs
npm
Put the globe on your page
Copy the SDK files to your site and add a few lines. No API key, no billing, no server of your own.
npm install @ortho-earth/japan
<div id="here" style="height:420px"></div>
<script type="module">
import orthoJapan from "./lib/ortho-japan.js";
await orthoJapan({ target: "#here", assetBase: "./assets/" });
</script>
npm
GitHub
Publish your map
Put a GeoPBF file in your own GitHub repository and open it by its address. Your map stays yours; list it in Maps so others can find it.
https://www.ortho-earth.com/japan/?g=gh:you/repo/map.geopbf
Maps
Parquet draws big data, Gint thinks, and nothing is exaggerated.
Data format · MIT
GeoPBF
A compact binary format for geometry, and a converter that runs in the browser: 18 formats in, 14 out, with GDAL-free support for Japanese coordinate systems. It does not keep an index — partial reads are GeoParquet's job.
Overview
日本語
npm
Try it
Vector engine · GPL-3.0
Gint
The intelligence layer: shared-edge topology in a GPU-readable form — instant identify, choropleths and level of detail straight on the GPU.
Overview
日本語
Interactive demos
Morton Order
GPU Culling
Stencil Tessellation
Map engine · GPL-3.0
@ortho-earth/core
The globe itself: WebGPU with a WebGL2 fallback, real-scale terrain, and base map, vectors and 3D cities drawn together through a worker pipeline.
Overview
日本語
Elevation · MIT
AltPBF
Elevation tiles in Protocol Buffers — three zoom tiers from GEBCO and ALOS, delta-coded and deflated for fast terrain.
Overview
日本語
3D models · MIT
glbconv
Converts GLB to glTF, OBJ, PLY, STL, USDZ and 3D Tiles in the browser, keeping each model's place on the Earth.
npm