Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pieterclaerhout/kotlin-yellowduck-gpx
A GPX library written in Kotlin
https://github.com/pieterclaerhout/kotlin-yellowduck-gpx
gpx gpx-library gpx-parser gpx-reader gpx-tracks gpx-writer kotlin kotlin-library
Last synced: 4 days ago
JSON representation
A GPX library written in Kotlin
- Host: GitHub
- URL: https://github.com/pieterclaerhout/kotlin-yellowduck-gpx
- Owner: pieterclaerhout
- License: mit
- Created: 2021-05-18T16:28:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T18:07:26.000Z (9 months ago)
- Last Synced: 2024-02-29T19:27:23.378Z (9 months ago)
- Topics: gpx, gpx-library, gpx-parser, gpx-reader, gpx-tracks, gpx-writer, kotlin, kotlin-library
- Language: Kotlin
- Homepage:
- Size: 292 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GPX
[![Release](https://jitpack.io/v/pieterclaerhout/kotlin-yellowduck-gpx.svg)](https://jitpack.io/#pieterclaerhout/kotlin-yellowduck-gpx)
[![Documentation](https://img.shields.io/badge/docs-jitpack-blue)](https://jitpack.io/com/github/pieterclaerhout/kotlin-yellowduck-gpx/latest/javadoc/)
[![License](https://img.shields.io/github/license/pieterclaerhout/kotlin-yellowduck-gpx)](https://raw.githubusercontent.com/pieterclaerhout/kotlin-yellowduck-gpx/main/LICENSE)A Kotlin library which can parse and generate GPX files.
## How to add
First, add the JitPack repository:
```kotlin
repositories {
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}
```Then add the library as a dependency:
```kotlin
dependencies {
implementation("com.github.pieterclaerhout:kotlin-yellowduck-gpx:1.0.2")
}
```JitPack URL:
https://jitpack.io/#pieterclaerhout/kotlin-yellowduck-gpx
## Testing the documentation
```
./gradlew clean -Pgroup=com.github.pieterclaerhout -Pversion=v1.0.4 -xtest build publishToMavenLocal
```