Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 775 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 775 Bytes

Spatial K

Spatial K is a set of libraries for working with geospatial data in Kotlin inlcuding an implementation of GeoJson and a port of Turfjs written in pure Kotlin. It supports Kotlin Multiplatform and Java projects while also featuring a Kotlin DSL for building GeoJson objects.

See the project site form more info.

Installation

Java and Kotlin/JVM

dependencies {
    implementation("io.github.dellisd.spatialk:geojson:0.1.1")
    implementation("io.github.dellisd.spatialk:turf:0.1.1")
}

Kotlin Multiplatform

commonMain {
    dependencies {
        implementation("io.github.dellisd.spatialk:geojson:0.1.1")
        implementation("io.github.dellisd.spatialk:turf:0.1.1")
    }
}