-
Add setting to choose type of prayer direction:
* Great Circle (shortest ditance)
* Rhumb Line (constant angle)
Reported by: mwaisberg
-
```
const p1 = new LatLonEllipsoidal(40.08, 116.585);
const p2 = new LatLonEllipsoidal(33.943, -118.408);
console.log(p1.distanceTo(p2));
```
Expected output: 10059214.493
Actual output: NaN
…
-
# Remove Geodesy as dependency
Looking at our no-ES6 libraries, noticed [Geodesy](https://github.com/chrisveness/geodesy) is only used in the [`@turf/rhumb-bearing`](https://github.com/Turfjs/turf/…
-
@DenisCarriere @rowanwins I noticed `@turf/helpers` still uses an [incorrect earth radius](https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/index.js#L334), and I don't know why exactl…
-
```
var viewer = new Cesium.Viewer("cesiumContainer" );
viewer.entities.add({
polyline: {
positions: Cesium.Cartesian3.fromDegreesArray([-120, 20, 120, 20])
}
});
```
Tur…
ggetz updated
7 years ago
-
Formalizing @DenisCarriere's elegant [proposal](https://github.com/Turfjs/turf/pull/876#issuecomment-319070336), which I really like. 😄
I would actually include **all** the optional parameters in th…
-
# New minor release! Turf 5.1.0 🎉
TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/13?closed=1).
## Contributors
- @muziejus 🥇
- @rowanwins 🥇
- …
-
# Propose `@turf/boolean-parallel` module
To complement the `boolean` themed modules, this would only input **(Multi)LineString** geometry types and should be able to detect if the two inputs are p…
-
The pathtype is currently being set to GREAT_CIRCLE
-
# New module proposal - Rhumb Line
Variations of Rhumb Line implementations.
- `@turf/rhumb-bearing`
- `@turf/rhumb-destination`
- `@turf/rhumb-distance`
![image](https://cloud.githubuserco…