Skip to content

Commit

Permalink
fixup! Doc fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Sep 28, 2024
1 parent 01eb36c commit 61783e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions geo/src/algorithm/line_measures/metric_spaces/euclidean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ use crate::{GeoFloat, Point};
/// If you have lon/lat points, use the [`Haversine`], [`Geodesic`], or other [metric spaces] -
/// Euclidean methods will give nonsense results.
///
/// Alternatively, you *can* use lon/lat points with Euclidean methods if you first [`Transform`]
/// your points to an appropriate projection.
/// If you wish to use Euclidean operations with lon/lat, the coordinates must first be transformed
/// using the [`Transform::transform`](crate::Transform::transform) / [`Transform::transform_crs_to_crs`](crate::Transform::transform_crs_to_crs) methods or their
/// immutable variants. Use of these requires the proj feature
///
/// [Euclidean plane]: https://en.wikipedia.org/wiki/Euclidean_plane
/// [`Transform`]: crate::Transform
Expand Down

0 comments on commit 61783e1

Please sign in to comment.