Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 949 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 949 Bytes

NDS Tiles Toolset

A simple java implementation of the NDS Tiling Scheme along with some utility classes and functions. Short feature list:

  • Create NDSTiles from coordinates, level+nr, packedId
  • Access NDS Tile properties and bounding boxes
  • Convert between WGS84 and NDS coordinate formats
  • Get Morton codes for NDS Coordinates
  • GeoJSON output of all classes

Usage

Compiling

This is a simple maven project. You can build the current jar with

$ mvn package

Development

I used the Lombok java agent for easy code generation of class' default methods etc. See https://projectlombok.org/ for setup instructions if you want to include the source code in your projects with e.g. Eclipse.

References

  • NDS Tiles: [1, §7.3.1]
  • Morton codes: [1, §7.2.1]