geo 0.33.0

Geospatial primitives and algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
use super::super::{Bearing, Destination, Distance, InterpolatePoint};
use crate::Point;
use geographiclib_rs::{DirectGeodesic, InverseGeodesic};
use std::sync::LazyLock;

/// Use the [`Geodesic`] constant (an instance of `GeodesicMeasure`) rather than building your own
/// customized [`GeodesicMeasure`] for standard ellipsoidal Earth measurements.
///
/// Measures distance on an ellipsoidal model of the Earth using methods given by [Karney (2013)].
///
/// Geodesic measurements are more accurate than [`Haversine`], but a bit slower, because they
/// account for the fact that the Earth is not a perfect sphere.
///
/// Distances are computed using [geodesic lines] and are measured **in meters**.
///
/// [`GeodesicMeasure`] allows creating a geodesic model with custom values for the equatorial
/// radius (`A`) and the inverse flattening factor (`F`). Unless you have special needs, use
/// [`Geodesic`], which is simpler than this struct.
///
/// # Example
///
/// ```
/// use geo::{wkt, Geodesic, GeodesicMeasure, Distance};
/// # use approx::assert_relative_eq;
///
/// let start = wkt!(POINT(23.319941 42.698334)); // Sofia: Longitude, Latitude
/// let finish = wkt!(POINT(24.742168 42.136097)); // Plovdiv: Longitude, Latitude
///
/// // Typically you can use `Geodesic` for Earth measurement, which uses the wgs84 geoid.
/// assert_relative_eq!(
///   132675.5018588206, // meters
///   Geodesic.distance(start, finish)
/// );
///
/// // If you have special needs, you can use a custom Earth radius/flattening:
/// let nad83_equatorial_radius = 6378137.0;
/// let nad83_flattening = 1. / 298.257222101;
/// let nad83_geoid = GeodesicMeasure::new(nad83_equatorial_radius, nad83_flattening);
/// // ever so slightly different from the wgs84 default.
/// assert_relative_eq!(
///   132675.50185928209, // meters
///   nad83_geoid.distance(start, finish)
/// );
///
/// // Or you can specify whatever radius you want to get some "out of this world" results. 👽
/// // from https://nssdc.gsfc.nasa.gov/planetary/factsheet/marsfact.html
/// let mars_equatorial_radius = 3_396_200.0; // meters
/// let mars_flattening = 0.00589;
/// let mars_geoid = GeodesicMeasure::new(mars_equatorial_radius, mars_flattening);
/// assert_relative_eq!(
///   70684.36315529353, // meters
///   mars_geoid.distance(start, finish)
/// );
/// ```
///
/// [geodesic lines]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
/// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
/// [`Haversine`]: crate::Haversine
pub struct GeodesicMeasure<F = fn() -> geographiclib_rs::Geodesic> {
    // geographiclib_rs::Geodesic::new() is not a `const fn`, but we want people to be able to
    // access it ergonomically (as `Geodesic.distance`, rather than `Geodesic::new().distance`)
    // hence this layer of indirection with the LazyLock.
    geoid: LazyLock<geographiclib_rs::Geodesic, F>,
}

/// Measures distance on an ellipsoidal model of the Earth using methods given by [Karney (2013)].
///
/// Geodesic measurements are more accurate than [`Haversine`], but a bit slower, because they
/// account for the fact that the Earth is not a perfect sphere.
///
/// Distances are computed using [geodesic lines] and are measured **in meters**.
///
/// For all the trait methods available to [`Geodesic`], see
/// [`GeodesicMeasure`](GeodesicMeasure#trait-implementations).
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::{wkt, Geodesic, Distance};
///
/// let start = wkt!(POINT(23.319941 42.698334)); // Sofia: Longitude, Latitude
/// let finish = wkt!(POINT(24.742168 42.136097)); // Plovdiv: Longitude, Latitude
///
/// assert_relative_eq!(
///     132675.5018588206, // meters
///     Geodesic.distance(start, finish)
/// );
/// ```
///
/// [geodesic lines]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
/// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
/// [`Haversine`]: crate::Haversine
#[allow(non_upper_case_globals)]
pub static Geodesic: GeodesicMeasure = GeodesicMeasure::wgs84();

impl GeodesicMeasure {
    pub const fn wgs84() -> Self {
        Self {
            geoid: LazyLock::new(geographiclib_rs::Geodesic::wgs84),
        }
    }
}

impl GeodesicMeasure<Box<dyn FnOnce() -> geographiclib_rs::Geodesic>> {
    pub fn new(equatorial_radius: f64, inverse_flattening: f64) -> Self {
        Self {
            geoid: LazyLock::new(Box::new(move || {
                geographiclib_rs::Geodesic::new(equatorial_radius, inverse_flattening)
            })),
        }
    }
}

impl<F> Bearing<f64> for GeodesicMeasure<F>
where
    F: FnOnce() -> geographiclib_rs::Geodesic,
{
    /// Returns the bearing from `origin` to `destination` in degrees along a [geodesic line].
    ///
    /// # Units
    ///
    /// - `origin`, `destination`: Point where x/y are lon/lat degree coordinates
    /// - returns: degrees, where: North: 0°, East: 90°, South: 180°, West: 270°
    ///
    /// ```
    /// # use approx::assert_relative_eq;
    /// use geo::Point;
    /// use geo::{Bearing, Geodesic};
    ///
    /// let origin = Point::new(9.0, 10.0);
    /// let destination = Point::new(9.5, 10.1);
    /// let bearing = Geodesic.bearing(origin, destination);
    /// // A little north of east
    /// assert_relative_eq!(bearing, 78.54, epsilon = 1.0e-2);
    /// ```
    ///
    /// # References
    ///
    /// This uses the geodesic methods given by [Karney (2013)].
    ///
    /// [geodesic line]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
    /// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
    fn bearing(&self, origin: Point<f64>, destination: Point<f64>) -> f64 {
        let (azi1, _, _) =
            self.geoid
                .inverse(origin.y(), origin.x(), destination.y(), destination.x());
        (azi1 + 360.0) % 360.0
    }
}

impl<F> Destination<f64> for GeodesicMeasure<F>
where
    F: FnOnce() -> geographiclib_rs::Geodesic,
{
    /// Returns a new point having travelled the `distance` along a [geodesic line]
    /// from the `origin` point with the given `bearing`.
    ///
    /// This uses the geodesic methods given by [Karney (2013)].
    ///
    /// # Units
    ///
    /// - `bearing`: degrees, where: North: 0°, East: 90°, South: 180°, West: 270°
    /// - `distance`: meters
    /// - returns: Point where x/y are lon/lat degree coordinates
    ///
    /// # Examples
    ///
    /// ```
    /// # use approx::assert_relative_eq;
    /// use geo::Point;
    /// use geo::{Destination, Geodesic};
    ///
    /// // Determine the point 100 km NE of JFK airport.
    /// let jfk = Point::new(-73.78, 40.64);
    /// let northeast_bearing = 45.0;
    /// let distance = 100_000.0;
    ///
    /// let northeast_of_jfk = Geodesic.destination(jfk, northeast_bearing, distance);
    /// assert_relative_eq!(
    ///     Point::new(-72.94, 41.27),
    ///     northeast_of_jfk,
    ///     epsilon = 1.0e-2
    /// );
    /// ```
    ///
    /// # References
    ///
    /// This uses the geodesic methods given by [Karney (2013)].
    ///
    /// [geodesic line]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
    /// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
    fn destination(&self, origin: Point<f64>, bearing: f64, distance: f64) -> Point<f64> {
        let (lat, lon) = self.geoid.direct(origin.y(), origin.x(), bearing, distance);
        Point::new(lon, lat)
    }
}

impl<F> Distance<f64, Point<f64>, Point<f64>> for GeodesicMeasure<F>
where
    F: FnOnce() -> geographiclib_rs::Geodesic,
{
    /// Determine the length of the [geodesic line] between two geometries on an ellipsoidal model of the earth.
    ///
    /// # Units
    /// - `origin`, `destination`: Point where x/y are lon/lat degree coordinates/
    /// - returns: meters
    ///
    /// # Examples
    /// ```rust
    /// use geo::Point;
    /// use geo::{Distance, Geodesic};
    ///
    /// // New York City
    /// let new_york_city = Point::new(-74.006, 40.7128);
    ///
    /// // London
    /// let london = Point::new(-0.1278, 51.5074);
    ///
    /// let distance = Geodesic.distance(new_york_city, london);
    ///
    /// assert_eq!(
    ///     5_585_234., // meters
    ///     distance.round()
    /// );
    /// ```
    ///
    /// # References
    ///
    /// This uses the geodesic methods given by [Karney (2013)].
    ///
    /// [geodesic line]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
    /// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
    fn distance(&self, origin: Point<f64>, destination: Point<f64>) -> f64 {
        self.geoid
            .inverse(origin.y(), origin.x(), destination.y(), destination.x())
    }
}

/// Interpolate Point(s) along a [geodesic line].
///
/// [geodesic line]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
impl<F> InterpolatePoint<f64> for GeodesicMeasure<F>
where
    F: FnOnce() -> geographiclib_rs::Geodesic,
{
    /// Returns a new Point along a [geodesic line] between two existing points on an ellipsoidal model of the earth.
    ///
    /// # Units
    /// - `meters_from_start`: meters
    ///
    /// # Examples
    ///
    /// ```
    /// # use approx::assert_relative_eq;
    /// use geo::Point;
    /// use geo::{Geodesic, InterpolatePoint};
    ///
    /// let p1 = Point::new(10.0, 20.0);
    /// let p2 = Point::new(125.0, 25.0);
    ///
    /// let closer_to_p1 = Geodesic.point_at_distance_between(p1, p2, 100_000.0);
    /// assert_relative_eq!(closer_to_p1, Point::new(10.81, 20.49), epsilon = 1.0e-2);
    ///
    /// let closer_to_p2 = Geodesic.point_at_distance_between(p1, p2, 10_000_000.0);
    /// assert_relative_eq!(closer_to_p2, Point::new(112.20, 30.67), epsilon = 1.0e-2);
    /// ```
    ///
    /// # References
    ///
    /// This uses the geodesic methods given by [Karney (2013)].
    ///
    /// [geodesic line]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
    /// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
    fn point_at_distance_between(
        &self,
        start: Point<f64>,
        end: Point<f64>,
        meters_from_start: f64,
    ) -> Point<f64> {
        if meters_from_start == 0.0 {
            return start;
        }
        let bearing = self.bearing(start, end);
        self.destination(start, bearing, meters_from_start)
    }

    /// Returns a new Point along a [geodesic line] between two existing points on an ellipsoidal model of the earth.
    ///
    /// # Examples
    ///
    /// ```
    /// # use approx::assert_relative_eq;
    /// use geo::Point;
    /// use geo::{Geodesic, InterpolatePoint};
    ///
    /// let p1 = Point::new(10.0, 20.0);
    /// let p2 = Point::new(125.0, 25.0);
    ///
    /// let closer_to_p1 = Geodesic.point_at_ratio_between(p1, p2, 0.1);
    /// assert_relative_eq!(closer_to_p1, Point::new(19.52, 25.31), epsilon = 1.0e-2);
    ///
    /// let closer_to_p2 = Geodesic.point_at_ratio_between(p1, p2, 0.9);
    /// assert_relative_eq!(closer_to_p2, Point::new(114.73, 29.69), epsilon = 1.0e-2);
    ///
    /// let midpoint = Geodesic.point_at_ratio_between(p1, p2, 0.5);
    /// assert_relative_eq!(midpoint, Point::new(65.88, 37.72), epsilon = 1.0e-2);
    /// ```
    ///
    /// # References
    ///
    /// This uses the geodesic methods given by [Karney (2013)].
    ///
    /// [geodesic line]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
    /// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
    fn point_at_ratio_between(
        &self,
        start: Point<f64>,
        end: Point<f64>,
        ratio_from_start: f64,
    ) -> Point<f64> {
        if start == end || ratio_from_start == 0.0 {
            return start;
        }
        if ratio_from_start == 1.0 {
            return end;
        }

        let (total_distance, azi1, _azi2, _a12) =
            self.geoid.inverse(start.y(), start.x(), end.y(), end.x());
        let distance = total_distance * ratio_from_start;
        self.destination(start, azi1, distance)
    }

    /// Interpolates `Point`s along a [geodesic line] between `start` and `end`.
    ///
    /// As many points as necessary will be added such that the geodesic distance between points
    /// never exceeds `max_distance`. If the distance between start and end is less than
    /// `max_distance`, no additional points will be included in the output.
    ///
    /// `include_ends`: Should the start and end points be included in the output?
    ///
    /// # References
    ///
    /// This uses the geodesic methods given by [Karney (2013)].
    ///
    /// [geodesic line]: https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid
    /// [Karney (2013)]:  https://arxiv.org/pdf/1109.4448.pdf
    fn points_along_line(
        &self,
        start: Point<f64>,
        end: Point<f64>,
        max_distance: f64,
        include_ends: bool,
    ) -> impl Iterator<Item = Point<f64>> {
        let (total_distance, azi1, _azi2, _a12) =
            self.geoid.inverse(start.y(), start.x(), end.y(), end.x());

        if total_distance <= max_distance {
            return if include_ends {
                vec![start, end].into_iter()
            } else {
                vec![].into_iter()
            };
        }

        let number_of_points = (total_distance / max_distance).ceil();
        let interval = 1.0 / number_of_points;

        let mut current_step = interval;
        let mut points = if include_ends { vec![start] } else { vec![] };

        while current_step < 1.0 {
            let (lat2, lon2) =
                self.geoid
                    .direct(start.y(), start.x(), azi1, total_distance * current_step);
            let point = Point::new(lon2, lat2);
            points.push(point);
            current_step += interval;
        }

        if include_ends {
            points.push(end);
        }

        points.into_iter()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::point;

    mod bearing {
        use super::*;

        #[test]
        fn north() {
            let origin = Point::new(0.0, 0.0);
            let destination = Point::new(0.0, 1.0);
            assert_relative_eq!(0.0, Geodesic.bearing(origin, destination));
        }

        #[test]
        fn east() {
            let origin = Point::new(0.0, 0.0);
            let destination = Point::new(1.0, 0.0);
            assert_relative_eq!(90.0, Geodesic.bearing(origin, destination));
        }

        #[test]
        fn south() {
            let origin = Point::new(0.0, 0.0);
            let destination = Point::new(0.0, -1.0);
            assert_relative_eq!(180.0, Geodesic.bearing(origin, destination));
        }

        #[test]
        fn west() {
            let origin = Point::new(0.0, 0.0);
            let destination = Point::new(-1.0, 0.0);
            assert_relative_eq!(270.0, Geodesic.bearing(origin, destination));
        }
    }

    mod destination {
        use super::*;

        #[test]
        fn north() {
            let origin = Point::new(0.0, 0.0);
            let bearing = 0.0;
            assert_relative_eq!(
                Point::new(0.0, 0.9043687229127633),
                Geodesic.destination(origin, bearing, 100_000.0)
            );
        }

        #[test]
        fn east() {
            let origin = Point::new(0.0, 0.0);
            let bearing = 90.0;
            assert_relative_eq!(
                Point::new(0.8983152841195217, 0.0),
                Geodesic.destination(origin, bearing, 100_000.0)
            );
        }

        #[test]
        fn south() {
            let origin = Point::new(0.0, 0.0);
            let bearing = 180.0;
            assert_relative_eq!(
                Point::new(0.0, -0.9043687229127633),
                Geodesic.destination(origin, bearing, 100_000.0)
            );
        }

        #[test]
        fn west() {
            let origin = Point::new(0.0, 0.0);
            let bearing = 270.0;
            assert_relative_eq!(
                Point::new(-0.8983152841195217, 0.0),
                Geodesic.destination(origin, bearing, 100_000.0)
            );
        }

        mod distance {
            use super::*;

            #[test]
            fn new_york_to_london() {
                let new_york_city = Point::new(-74.006f64, 40.7128f64);
                let london = Point::new(-0.1278f64, 51.5074f64);

                let distance = Geodesic.distance(new_york_city, london);

                assert_relative_eq!(
                    5_585_234.0, // meters
                    distance.round()
                );
            }
        }

        mod interpolate_point {
            use super::*;

            #[test]
            fn point_at_ratio_between_midpoint() {
                let start = Point::new(10.0, 20.0);
                let end = Point::new(125.0, 25.0);
                let midpoint = Geodesic.point_at_ratio_between(start, end, 0.5);
                assert_relative_eq!(midpoint, Point::new(65.87936072133309, 37.72225378005785));
            }

            #[test]
            fn points_along_line_with_endpoints() {
                let start = Point::new(10.0, 20.0);
                let end = Point::new(125.0, 25.0);
                let max_dist = 1000000.0; // meters
                let route = Geodesic
                    .points_along_line(start, end, max_dist, true)
                    .collect::<Vec<_>>();
                assert_eq!(route.len(), 13);
                assert_eq!(route[0], start);
                assert_eq!(route.last().unwrap(), &end);
                assert_relative_eq!(route[1], Point::new(17.878754355562464, 24.466667836189565));
            }

            #[test]
            fn points_along_line_without_endpoints() {
                let start = Point::new(10.0, 20.0);
                let end = Point::new(125.0, 25.0);
                let max_dist = 1000000.0; // meters
                let route = Geodesic
                    .points_along_line(start, end, max_dist, false)
                    .collect::<Vec<_>>();
                assert_eq!(route.len(), 11);
                assert_relative_eq!(route[0], Point::new(17.878754355562464, 24.466667836189565));
            }
        }
    }

    #[test]
    fn test_non_standard_geoid() {
        let start = point!(x: 23.319941, y: 42.698334); // Sofia: Longitude, Latitude
        let finish = point!(x: 24.742168, y: 42.136097); // Plovdiv: Longitude, Latitude

        assert_relative_eq!(132675.5018588206, Geodesic.distance(start, finish));

        let mars_equatorial_radius = 3_396_200.;
        let mars_flattening = 0.00589;
        let mars_geoid = GeodesicMeasure::new(mars_equatorial_radius, mars_flattening);

        assert_relative_eq!(70684.36315529353, mars_geoid.distance(start, finish));
    }
}