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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
//! Interpolate a Point part way into a linear geometry (1-D).
use super::{InterpolatePoint, Length};
use geo_types::{CoordFloat, Line, LineString, Point};
/// Interpolate a `Point` along a `Line` or `LineString`.
///
/// Related: See [`Densify`](crate::Densify) if you'd like to interpolate potentially many points into a geometry.
pub trait InterpolateLine<F: CoordFloat>: InterpolatePoint<F> + Length<F> + Sized {
/// Returns a new point part way down the line.
///
/// # Params
///
/// - `line`: A `Line` or `LineString` which implements `InterpolatableLine`.
/// - `ratio`: the ratio of the total line length. It will be bounded between 0..1.
/// - `0.0` will return the start of the line.
/// - `1.0` will return the end of the line.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::{Haversine, Euclidean, InterpolateLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
/// let quarter_distance = Euclidean.point_at_ratio_from_start(&line_string, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(0. 5.)));
///
/// let quarter_distance = Haversine.point_at_ratio_from_start(&line_string, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(0. 4.961924877405399)), epsilon=1e-14);
/// ```
fn point_at_ratio_from_start<L: InterpolatableLine<F>>(&self, line: &L, ratio: F) -> L::Output {
line.point_at_ratio_from_start(self, ratio)
}
/// Returns a new point part way down the line, starting from the end of the line.
///
/// # Params
///
/// - `line`: A `Line` or `LineString` which implements `InterpolatableLine`.
/// - `ratio`: the ratio of the total line length. It will be bounded between 0..1.
/// - `0.0` will return the end of the line.
/// - `1.0` will return the start of the line.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::{Haversine, Euclidean, InterpolateLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
/// let quarter_distance = Euclidean.point_at_ratio_from_end(&line_string, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(5. 10.0)));
///
/// let quarter_distance = Haversine.point_at_ratio_from_end(&line_string, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(4.961333045966285 10.037420806650719)), epsilon=1e-14);
/// ```
fn point_at_ratio_from_end<L: InterpolatableLine<F>>(&self, line: &L, ratio: F) -> L::Output {
line.point_at_ratio_from_end(self, ratio)
}
/// Returns a new point `distance` from the start of the line.
///
/// # Params
///
/// - `line`: A `Line` or `LineString` which implements `InterpolatableLine`.
/// - `distance`: How far down the line. The units of distance depend on the metric space.
/// Distance will be clamped so that the returned point will not be outside of `line`.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::{Haversine, Euclidean, InterpolateLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
///
/// // For Euclidean calculations, distance is in the same units as your points
/// let near_start = Euclidean.point_at_distance_from_start(&line_string, 0.5).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(0. 0.5)));
///
/// // For Haversine calculations, distance is in meters
/// let near_start = Haversine.point_at_distance_from_start(&line_string, 100_000.0).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(0. 0.899320363724538)), epsilon=1e-14);
/// ```
fn point_at_distance_from_start<L: InterpolatableLine<F>>(
&self,
line: &L,
distance: F,
) -> L::Output {
line.point_at_distance_from_start(self, distance)
}
/// Returns a new point `distance` from the end of the line.
///
/// # Params
///
/// - `line`: A `Line` or `LineString` which implements `InterpolatableLine`.
/// - `distance`: How far down the line. The units of distance depend on the metric space.
/// Distance will be clamped so that the returned point will not be outside of `line`.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::{Haversine, Euclidean, InterpolateLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
///
/// // For Euclidean calculations, distance is in the same units as your points
/// let near_start = Euclidean.point_at_distance_from_end(&line_string, 0.5).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(9.5 10.)));
///
/// // For Haversine calculations, distance is in meters
/// let near_start = Haversine.point_at_distance_from_end(&line_string, 100_000.0).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(9.086875463645015 10.012416322308656)), epsilon=1e-14);
/// ```
fn point_at_distance_from_end<L: InterpolatableLine<F>>(
&self,
line: &L,
distance: F,
) -> L::Output {
line.point_at_distance_from_end(self, distance)
}
}
impl<F, MetricSpace> InterpolateLine<F> for MetricSpace
where
F: CoordFloat,
MetricSpace: InterpolatePoint<F> + Length<F> + Sized,
{
}
/// A linear geometry (1-D) which can have a point interpolated partially into it.
///
/// Related: See [`Densify`](crate::Densify) if you'd like to interpolate potentially many points into a geometry.
pub trait InterpolatableLine<F: CoordFloat> {
type Output;
/// Returns a new point part way down the line.
///
/// # Params
///
/// - `metric_space`: e.g. [`Euclidean`], [`Haversine`], or [`Geodesic`]. See [`metric_spaces`]
/// - `ratio`: the ratio of the total line length. It will be bounded between 0..1.
/// - `0.0` will return the start of the line.
/// - `1.0` will return the end of the line.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::line_measures::{Haversine, Euclidean, InterpolatableLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
/// let quarter_distance = line_string.point_at_ratio_from_start(&Euclidean, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(0. 5.)));
///
/// let quarter_distance = line_string.point_at_ratio_from_start(&Haversine, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(0. 4.961924877405399)), epsilon=1e-14);
/// ```
///
/// [`Euclidean`]: super::Euclidean
/// [`Haversine`]: super::Haversine
/// [`Geodesic`]: super::Geodesic
/// [`metric_spaces`]: super::metric_spaces
fn point_at_ratio_from_start<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
ratio: F,
) -> Self::Output;
/// Returns a new point part way down the line, starting from the end of the line.
///
/// # Params
///
/// - `metric_space`: e.g. [`Euclidean`], [`Haversine`], or [`Geodesic`]. See [`metric_spaces`]
/// - `ratio`: the ratio of the total line length. It will be bounded between 0..1.
/// - `0.0` will return the end of the line.
/// - `1.0` will return the start of the line.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::line_measures::{Haversine, Euclidean, InterpolatableLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
/// let quarter_distance = line_string.point_at_ratio_from_end(&Euclidean, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(5. 10.0)));
///
/// let quarter_distance = line_string.point_at_ratio_from_end(&Haversine, 0.25).unwrap();
/// assert_relative_eq!(quarter_distance, wkt!(POINT(4.961333045966285 10.037420806650719)), epsilon=1e-14);
/// ```
///
/// [`Euclidean`]: super::Euclidean
/// [`Haversine`]: super::Haversine
/// [`Geodesic`]: super::Geodesic
/// [`metric_spaces`]: super::metric_spaces
fn point_at_ratio_from_end<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
ratio: F,
) -> Self::Output;
/// Returns a new point `distance` from the start of the line.
///
/// # Params
///
/// - `metric_space`: e.g. [`Euclidean`], [`Haversine`], or [`Geodesic`]. See [`metric_spaces`]
/// - `distance`: How far down the line. The units of distance depend on the metric space.
/// Distance will be clamped so that the returned point will not be outside of `line`.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::line_measures::{Haversine, Euclidean, InterpolatableLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
///
/// // For Euclidean calculations, distance is in the same units as your points
/// let near_start = line_string.point_at_distance_from_start(&Euclidean, 0.5).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(0. 0.5)));
///
/// // For Haversine calculations, distance is in meters
/// let near_start = line_string.point_at_distance_from_start(&Haversine, 100_000.0).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(0. 0.899320363724538)), epsilon=1e-14);
/// ```
///
/// [`Euclidean`]: super::Euclidean
/// [`Haversine`]: super::Haversine
/// [`Geodesic`]: super::Geodesic
/// [`metric_spaces`]: super::metric_spaces
fn point_at_distance_from_start<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
distance: F,
) -> Self::Output;
/// Returns a new point `distance` from the end of the line.
///
/// # Params
///
/// - `metric_space`: e.g. [`Euclidean`], [`Haversine`], or [`Geodesic`]. See [`metric_spaces`]
/// - `distance`: How far down the line. The units of distance depend on the metric space.
/// Distance will be clamped so that the returned point will not be outside of `line`.
///
/// # Example
/// ```
/// # use approx::assert_relative_eq;
/// use geo::algorithm::line_measures::{Haversine, Euclidean, InterpolatableLine};
/// use geo::wkt;
///
/// let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
///
/// // For Euclidean calculations, distance is in the same units as your points
/// let near_start = line_string.point_at_distance_from_end(&Euclidean, 0.5).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(9.5 10.)));
///
/// // For Haversine calculations, distance is in meters
/// let near_start = line_string.point_at_distance_from_end(&Haversine, 100_000.0).unwrap();
/// assert_relative_eq!(near_start, wkt!(POINT(9.086875463645015 10.012416322308656)), epsilon=1e-14);
/// ```
///
/// [`Euclidean`]: super::Euclidean
/// [`Haversine`]: super::Haversine
/// [`Geodesic`]: super::Geodesic
/// [`metric_spaces`]: super::metric_spaces
fn point_at_distance_from_end<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
distance: F,
) -> Self::Output;
}
impl<F: CoordFloat> InterpolatableLine<F> for Line<F> {
type Output = Point<F>;
fn point_at_ratio_from_start<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
ratio: F,
) -> Self::Output {
if ratio <= F::zero() {
self.start_point()
} else if ratio >= F::one() {
self.end_point()
} else {
metric_space.point_at_ratio_between(self.start_point(), self.end_point(), ratio)
}
}
fn point_at_ratio_from_end<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
ratio: F,
) -> Self::Output {
if ratio <= F::zero() {
self.end_point()
} else if ratio >= F::one() {
self.start_point()
} else {
metric_space.point_at_ratio_between(self.end_point(), self.start_point(), ratio)
}
}
fn point_at_distance_from_start<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
distance: F,
) -> Self::Output {
if distance <= F::zero() {
self.start_point()
} else if distance >= metric_space.length(self) {
self.end_point()
} else {
metric_space.point_at_distance_between(self.start_point(), self.end_point(), distance)
}
}
fn point_at_distance_from_end<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
distance: F,
) -> Self::Output {
if distance <= F::zero() {
self.end_point()
} else if distance >= metric_space.length(self) {
self.start_point()
} else {
metric_space.point_at_distance_between(self.end_point(), self.start_point(), distance)
}
}
}
impl<F: CoordFloat> InterpolatableLine<F> for LineString<F> {
type Output = Option<Point<F>>;
fn point_at_ratio_from_start<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
ratio: F,
) -> Self::Output {
let distance = ratio * metric_space.length(self);
self.point_at_distance_from_start(metric_space, distance)
}
fn point_at_ratio_from_end<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
ratio: F,
) -> Self::Output {
let distance = ratio * metric_space.length(self);
self.point_at_distance_from_end(metric_space, distance)
}
fn point_at_distance_from_start<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
distance: F,
) -> Self::Output {
if distance <= F::zero() {
return self.0.first().map(|coord| Point(*coord));
}
let mut distance_remaining = distance;
for segment in self.lines() {
let segment_length = metric_space.length(&segment);
if segment_length < distance_remaining {
distance_remaining = distance_remaining - segment_length;
} else {
return Some(metric_space.point_at_distance_between(
segment.start_point(),
segment.end_point(),
distance_remaining,
));
}
}
// distance >= self.length, so return the final point.
self.0.last().map(|coord| Point(*coord))
}
fn point_at_distance_from_end<MetricSpace: InterpolatePoint<F> + Length<F>>(
&self,
metric_space: &MetricSpace,
distance: F,
) -> Self::Output {
if distance <= F::zero() {
return self.0.last().map(|coord| Point(*coord));
}
let mut distance_remaining = distance;
for reversed_segment in self.rev_lines() {
let segment_length = metric_space.length(&reversed_segment);
if segment_length < distance_remaining {
distance_remaining = distance_remaining - segment_length;
} else {
// To measure from the *end* of the line,
// we measure from the *start* of the reversed segment.
return Some(metric_space.point_at_distance_between(
reversed_segment.start_point(),
reversed_segment.end_point(),
distance_remaining,
));
}
}
// distance_from_start >= self.length, so return the final point.
self.0.first().map(|coord| Point(*coord))
}
}
#[cfg(test)]
mod tests {
use crate::algorithm::line_measures::{Euclidean, InterpolateLine};
use crate::geometry::{Line, LineString, Point};
use crate::wkt;
mod line {
use super::*;
#[test]
fn point_at_ratio_from_start() {
let line = Line::new((0., 0.), (0., 10.));
assert_eq!(
Euclidean.point_at_ratio_from_start(&line, 0.0),
Point::new(0., 0.)
);
assert_eq!(
Euclidean.point_at_ratio_from_start(&line, 0.5),
Point::new(0., 5.)
);
assert_eq!(
Euclidean.point_at_ratio_from_start(&line, 1.0),
Point::new(0., 10.)
);
assert_eq!(
Euclidean.point_at_ratio_from_start(&line, 1.5),
Point::new(0., 10.)
);
}
#[test]
fn point_at_ratio_from_end() {
let line = Line::new((0., 0.), (0., 10.));
assert_eq!(
Euclidean.point_at_ratio_from_end(&line, 0.0),
Point::new(0., 10.)
);
assert_eq!(
Euclidean.point_at_ratio_from_end(&line, 0.5),
Point::new(0., 5.)
);
assert_eq!(
Euclidean.point_at_ratio_from_end(&line, 1.0),
Point::new(0., 0.)
);
assert_eq!(
Euclidean.point_at_ratio_from_end(&line, 1.5),
Point::new(0., 0.)
);
}
#[test]
fn point_at_distance_from_start() {
let line = Line::new((0., 0.), (0., 10.));
assert_eq!(
Euclidean.point_at_distance_from_start(&line, 0.0),
Point::new(0., 0.)
);
assert_eq!(
Euclidean.point_at_distance_from_start(&line, 5.0),
Point::new(0., 5.)
);
assert_eq!(
Euclidean.point_at_distance_from_start(&line, 10.0),
Point::new(0., 10.)
);
// beyond end
assert_eq!(
Euclidean.point_at_distance_from_start(&line, 100.0),
Point::new(0., 10.)
);
// before start
assert_eq!(
Euclidean.point_at_distance_from_start(&line, -5.0),
Point::new(0., 0.)
);
}
#[test]
fn point_at_distance_from_end() {
let line = Line::new((0., 0.), (0., 10.));
assert_eq!(
Euclidean.point_at_distance_from_end(&line, 0.0),
Point::new(0., 10.)
);
assert_eq!(
Euclidean.point_at_distance_from_end(&line, 5.0),
Point::new(0., 5.)
);
assert_eq!(
Euclidean.point_at_distance_from_end(&line, 10.0),
Point::new(0., 0.)
);
// beyond start
assert_eq!(
Euclidean.point_at_distance_from_end(&line, 100.0),
Point::new(0., 0.)
);
// before end
assert_eq!(
Euclidean.point_at_distance_from_end(&line, -5.0),
Point::new(0., 10.)
);
}
}
mod line_string {
use super::*;
#[test]
fn point_at_ratio_from_start() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
assert_eq!(
Euclidean.point_at_ratio_from_start(&line_string, 0.0),
Some(Point::new(0., 0.))
);
assert_eq!(
Euclidean.point_at_ratio_from_start(&line_string, 0.5),
Some(Point::new(0., 10.))
);
assert_eq!(
Euclidean.point_at_ratio_from_start(&line_string, 1.0),
Some(Point::new(10., 10.))
);
assert_eq!(
Euclidean.point_at_ratio_from_start(&line_string, 1.5),
Some(Point::new(10., 10.))
);
}
#[test]
fn point_at_ratio_from_end() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
assert_eq!(
Euclidean.point_at_ratio_from_end(&line_string, 0.0),
Some(Point::new(10., 10.))
);
assert_eq!(
Euclidean.point_at_ratio_from_end(&line_string, 0.5),
Some(Point::new(0., 10.))
);
assert_eq!(
Euclidean.point_at_ratio_from_end(&line_string, 1.0),
Some(Point::new(0., 0.))
);
assert_eq!(
Euclidean.point_at_ratio_from_end(&line_string, 1.5),
Some(Point::new(0., 0.))
);
}
#[test]
fn point_at_distance_from_start() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
assert_eq!(
Euclidean.point_at_distance_from_start(&line_string, 0.0),
Some(Point::new(0., 0.))
);
assert_eq!(
Euclidean.point_at_distance_from_start(&line_string, 5.0),
Some(Point::new(0., 5.))
);
assert_eq!(
Euclidean.point_at_distance_from_start(&line_string, 10.0),
Some(Point::new(0., 10.))
);
assert_eq!(
Euclidean.point_at_distance_from_start(&line_string, 15.0),
Some(Point::new(5., 10.))
);
assert_eq!(
Euclidean.point_at_distance_from_start(&line_string, 20.0),
Some(Point::new(10., 10.))
);
// beyond end
assert_eq!(
Euclidean.point_at_distance_from_start(&line_string, 100.0),
Some(Point::new(10., 10.))
);
// before start
assert_eq!(
Euclidean.point_at_distance_from_start(&line_string, -5.0),
Some(Point::new(0., 0.))
);
}
#[test]
fn point_at_distance_from_end() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
assert_eq!(
Euclidean.point_at_distance_from_end(&line_string, 0.0),
Some(Point::new(10., 10.))
);
assert_eq!(
Euclidean.point_at_distance_from_end(&line_string, 5.0),
Some(Point::new(5., 10.))
);
assert_eq!(
Euclidean.point_at_distance_from_end(&line_string, 10.0),
Some(Point::new(0., 10.))
);
assert_eq!(
Euclidean.point_at_distance_from_end(&line_string, 15.0),
Some(Point::new(0., 5.))
);
assert_eq!(
Euclidean.point_at_distance_from_end(&line_string, 20.0),
Some(Point::new(0., 0.))
);
// beyond start
assert_eq!(
Euclidean.point_at_distance_from_end(&line_string, 100.0),
Some(Point::new(0., 0.))
);
// before end
assert_eq!(
Euclidean.point_at_distance_from_end(&line_string, -5.0),
Some(Point::new(10., 10.))
);
}
mod haversine {
use super::*;
use crate::Haversine;
#[test]
fn ratio_from_start() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Haversine
.point_at_ratio_from_start(&line_string, 0.25)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(0.0 4.961924877405399)),
epsilon = 1e-14
);
}
#[test]
fn ratio_from_end() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Haversine
.point_at_ratio_from_end(&line_string, 0.25)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(4.961333045966285 10.037420806650719)),
epsilon = 1e-14
);
}
#[test]
fn distance_from_start() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Haversine
.point_at_distance_from_start(&line_string, 100_000.)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(0.0 0.899320363724538)),
epsilon = 1e-14
);
}
#[test]
fn distance_from_end() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Haversine
.point_at_distance_from_end(&line_string, 100_000.)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(9.086875463645015 10.012416322308656)),
epsilon = 1e-14
);
}
}
mod geodesic {
use super::*;
use crate::Geodesic;
#[test]
fn ratio_from_start() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Geodesic
.point_at_ratio_from_start(&line_string, 0.25)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(0.0 4.9788949389766595)),
epsilon = 1e-14
);
}
#[test]
fn ratio_from_end() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Geodesic
.point_at_ratio_from_end(&line_string, 0.25)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(4.97832809547093 10.037667662355751)),
epsilon = 1e-14
);
}
#[test]
fn distance_from_start() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Geodesic
.point_at_distance_from_start(&line_string, 100_000.)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(0.0 0.9043687229127633)),
epsilon = 1e-14
);
}
#[test]
fn distance_from_end() {
let line_string = wkt!(LINESTRING(0. 0., 0. 10.,10. 10.));
let quarter_distance = Geodesic
.point_at_distance_from_end(&line_string, 100_000.)
.unwrap();
assert_relative_eq!(
quarter_distance,
wkt!(POINT(9.087988077970042 10.012483990563286)),
epsilon = 1e-14
);
}
}
mod degenerate {
use super::*;
#[test]
fn empty_line_string() {
let line_string: LineString = LineString::empty();
assert_eq!(None, Euclidean.point_at_ratio_from_start(&line_string, 0.5));
assert_eq!(
None,
Euclidean.point_at_distance_from_start(&line_string, 0.5)
);
}
#[test]
fn line_string_of_1() {
let point = Point::new(1., 1.);
let line_string = LineString::new(vec![point.0]);
assert_eq!(
Some(point),
Euclidean.point_at_ratio_from_start(&line_string, 0.5)
);
assert_eq!(
Some(point),
Euclidean.point_at_distance_from_start(&line_string, 0.5)
);
}
}
}
}