From d36c698f9211c9dcf900b736a13c68ac5efdfa26 Mon Sep 17 00:00:00 2001 From: Nicolas Raynaud Date: Thu, 2 Jun 2022 20:37:56 +0200 Subject: [PATCH] fix typo in geos_operations.jl --- src/geos_operations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geos_operations.jl b/src/geos_operations.jl index d41c8af..54150ef 100644 --- a/src/geos_operations.jl +++ b/src/geos_operations.jl @@ -74,7 +74,7 @@ readgeom(wkbbuffer::Vector{Cuchar}, context::GEOSContext = _context) = # ----- project(line::LineString, point::Point) = project(line.ptr, point.ptr) projectNormalized(line::LineString, point::Point) = - projectprojectNormalized(line.ptr, point.ptr) + projectNormalized(line.ptr, point.ptr) interpolate(line::LineString, dist::Real) = Point(interpolate(line.ptr, dist)) interpolateNormalized(line::LineString, dist::Real) = Point(interpolateNormalized(line.ptr, dist))