maps-kt/maps-kt-core/README.md

36 lines
704 B
Markdown
Raw Normal View History

2023-01-12 11:52:54 +03:00
# Module kmath-core
The core interfaces of KMath.
- [angles and distances](#) : Type-safe angle and distance measurements.
- [ellipsoid](#) : Ellipsoid geometry and distances
- [mercator](#) : Mercator and web-mercator projections
## Artifact:
2023-05-06 15:39:58 +03:00
The Maven coordinates of this project are `center.sciprog:maps-kt-core:0.2.2`.
2023-01-12 11:52:54 +03:00
**Gradle Groovy:**
```groovy
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
2023-05-06 15:39:58 +03:00
implementation 'center.sciprog:maps-kt-core:0.2.2'
2023-01-12 11:52:54 +03:00
}
```
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
2023-05-06 15:39:58 +03:00
implementation("center.sciprog:maps-kt-core:0.2.2")
2023-01-12 11:52:54 +03:00
}
```