Skip to content

Commit a38b886

Browse files
committed
Prepare for release 0.2.0
1 parent ea90eda commit a38b886

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ See the [project site](https://dellisd.github.io/spatial-k) form more info.
1212

1313
```kotlin
1414
dependencies {
15-
implementation("io.github.dellisd.spatialk:geojson:0.1.1")
16-
implementation("io.github.dellisd.spatialk:turf:0.1.1")
15+
implementation("io.github.dellisd.spatialk:geojson:0.2.0")
16+
implementation("io.github.dellisd.spatialk:turf:0.2.0")
1717
}
1818
```
1919

2020
#### Kotlin Multiplatform
2121
```kotlin
2222
commonMain {
2323
dependencies {
24-
implementation("io.github.dellisd.spatialk:geojson:0.1.1")
25-
implementation("io.github.dellisd.spatialk:turf:0.1.1")
24+
implementation("io.github.dellisd.spatialk:geojson:0.2.0")
25+
implementation("io.github.dellisd.spatialk:turf:0.2.0")
2626
}
2727
}
2828
```

docs/ported-functions.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# Ported Functions
22

3-
The following functions have been ported as of version `0.0.3-SNAPSHOT` of this library.
3+
The following functions have been ported as of version `0.2.0` of this library.
44

55
You can view porting progress for the next release [here](https://github.com/dellisd/spatial-k/milestone/1).
66

77
## Measurement
88

9-
- [x] [`along`](../api/turf/io.github.dellisd.spatialk.turf/along/)
10-
- [x] [`area`](../api/turf/io.github.dellisd.spatialk.turf/area/)
11-
- [x] [`bbox`](../api/turf/io.github.dellisd.spatialk.turf/bbox/)
12-
- [x] [`bboxPolygon`](../api/turf/io.github.dellisd.spatialk.turf/bbox-polygon/)
13-
- [x] [`bearing`](../api/turf/io.github.dellisd.spatialk.turf/bearing/)
9+
- [x] [`along`](../api/turf/turf/io.github.dellisd.spatialk.turf/along/)
10+
- [x] [`area`](../api/turf/turf/io.github.dellisd.spatialk.turf/area/)
11+
- [x] [`bbox`](../api/turf/turf/io.github.dellisd.spatialk.turf/bbox/)
12+
- [x] [`bboxPolygon`](../api/turf/turf/io.github.dellisd.spatialk.turf/bbox-polygon/)
13+
- [x] [`bearing`](../api/turf/turf/io.github.dellisd.spatialk.turf/bearing/)
1414
- [ ] `center`
1515
- [ ] `centerOfMass`
1616
- [x] [`destination`](../api/turf/io.github.dellisd.spatialk.turf/destination/)
1717
- [x] [`distance`](../api/turf/io.github.dellisd.spatialk.turf/distance/)
1818
- [ ] `envelope`
19-
- [x] [`length`](../api/turf/io.github.dellisd.spatialk.turf/length/)
20-
- [x] [`midpoint`](../api/turf/io.github.dellisd.spatialk.turf/midpoint/)
19+
- [x] [`length`](../api/turf/turf/io.github.dellisd.spatialk.turf/length/)
20+
- [x] [`midpoint`](../api/turf/turf/io.github.dellisd.spatialk.turf/midpoint/)
2121
- [ ] `pointOnFeature`
2222
- [ ] `polygonTangents`
2323
- [ ] `pointToLineDistance`
@@ -71,15 +71,15 @@ Use `round` or `Math.round` from the standard library instead.
7171
- [ ] `kinks`
7272
- [ ] `lineArc`
7373
- [ ] `lineChunk`
74-
- [x] [`lineIntersect`](../api/turf/io.github.dellisd.spatialk.turf/line-intersect/)
74+
- [x] [`lineIntersect`](../api/turf/turf/io.github.dellisd.spatialk.turf/line-intersect/)
7575
Partially implemented.
7676
- [ ] `lineOverlap`
7777
- [ ] `lineSegment`
78-
- [x] [`lineSlice`](../api/turf/io.github.dellisd.spatialk.turf/line-slice/)
78+
- [x] [`lineSlice`](../api/turf/turf/io.github.dellisd.spatialk.turf/line-slice/)
7979
- [ ] `lineSliceAlong`
8080
- [ ] `lineSplit`
8181
- [ ] `mask`
82-
- [x] [`nearestPointOnLine`](../api/turf/io.github.dellisd.spatialk.turf/nearest-point-on-line/)
82+
- [x] [`nearestPointOnLine`](../api/turf/turf/io.github.dellisd.spatialk.turf/nearest-point-on-line/)
8383
- [ ] `sector`
8484
- [ ] `shortestPath`
8585
- [ ] `unkinkPolygon`
@@ -167,19 +167,19 @@ Use the [GeoJson DSL](../geojson/#geojson-dsl) instead.
167167
- [ ] `booleanEqual`
168168
- [ ] `booleanOverlap`
169169
- [ ] `booleanParallel`
170-
- [ ] `booleanPointInPolygon`
170+
- [x] [`booleanPointInPolygon`](../api/turf/turf/io.github.dellisd.spatialk.turf/boolean-point-in-polygon/)
171171
- [ ] `booleanPointOnLine`
172172
- [ ] `booleanWithin`
173173

174174
## Unit Conversion
175175

176-
- [x] [`bearingToAzimuth`](../api/turf/io.github.dellisd.spatialk.turf/bearing-to-azimuth/)
177-
- [x] [`convertArea`](../api/turf/io.github.dellisd.spatialk.turf/convert-area/)
178-
- [x] [`convertLength`](../api/turf/io.github.dellisd.spatialk.turf/convert-length/)
176+
- [x] [`bearingToAzimuth`](../api/turf/turf/io.github.dellisd.spatialk.turf/bearing-to-azimuth/)
177+
- [x] [`convertArea`](../api/turf/turf/io.github.dellisd.spatialk.turf/convert-area/)
178+
- [x] [`convertLength`](../api/turf/turf/io.github.dellisd.spatialk.turf/convert-length/)
179179
- [ ] `degreesToRadians`
180-
- [x] [`lengthToRadians`](../api/turf/io.github.dellisd.spatialk.turf/length-to-radians/)
181-
- [x] [`lengthToDegrees`](../api/turf/io.github.dellisd.spatialk.turf/length-to-degrees/)
182-
- [x] [`radiansToLength`](../api/turf/io.github.dellisd.spatialk.turf/radians-to-length/)
180+
- [x] [`lengthToRadians`](../api/turf/turf/io.github.dellisd.spatialk.turf/length-to-radians/)
181+
- [x] [`lengthToDegrees`](../api/turf/turf/io.github.dellisd.spatialk.turf/length-to-degrees/)
182+
- [x] [`radiansToLength`](../api/turf/turf/io.github.dellisd.spatialk.turf/radians-to-length/)
183183
- [ ] `radiansToDegrees`
184184
- [ ] `toMercator`
185185
- [ ] `toWgs84`

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
kotlin.code.style=official
22

33
GROUP=io.github.dellisd.spatialk
4-
VERSION_NAME=0.2.0-SNAPSHOT
4+
VERSION_NAME=0.2.0
55

66
POM_URL=https://github.com/dellisd/spatial-k
77
POM_SCM_URL=https://github.com/dellisd/spatial-k

0 commit comments

Comments
 (0)