mirror of https://github.com/tidwall/tile38.git
Added description of coordinate system
Thanks to @icewukong for this suggestion. closes #35
This commit is contained in:
parent
3c8b9b4110
commit
32014e7560
|
@ -32,6 +32,7 @@ Tile38 is an open source (MIT licensed), in-memory geolocation data store, spati
|
||||||
- Full [command line interface](#cli).
|
- Full [command line interface](#cli).
|
||||||
- Leader / follower [replication](#replication).
|
- Leader / follower [replication](#replication).
|
||||||
- In-memory database that persists on disk.
|
- In-memory database that persists on disk.
|
||||||
|
- All coordinates are in [WGS 84 Web Mercator / EPSG:3857](#coordinate-system)
|
||||||
|
|
||||||
## Components
|
## Components
|
||||||
- `tile38-server ` - The server
|
- `tile38-server ` - The server
|
||||||
|
@ -77,6 +78,12 @@ $ ./tile38-cli
|
||||||
> help
|
> help
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Coordinate System
|
||||||
|
It's important to note that the coordinate system Tile38 uses is
|
||||||
|
[WGS 84 Web Mercator](https://en.wikipedia.org/wiki/Web_Mercator), also known
|
||||||
|
as EPSG:3857. All distance are in meters and all calcuations are done on a spherical surface,
|
||||||
|
not a plane.
|
||||||
|
|
||||||
## <a name="cli"></a>Playing with Tile38
|
## <a name="cli"></a>Playing with Tile38
|
||||||
|
|
||||||
Basic operations:
|
Basic operations:
|
||||||
|
|
Loading…
Reference in New Issue