Skip to content

Commit 40b0f82

Browse files
committed
Export MultiPoint as part of LibGEOS
1 parent 0590202 commit 40b0f82

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/LibGEOS.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ module LibGEOS
88

99
using Compat, GeoInterface
1010

11-
export Point, LineString, MultiLineString, LinearRing, Polygon, MultiPolygon, GeometryCollection,
11+
export Point, MultiPoint, LineString, MultiLineString, LinearRing, Polygon, MultiPolygon, GeometryCollection,
1212
parseWKT, geomFromWKT, geomToWKT,
13-
project, projectNormalized, interpolate, interpolateNormalized,
13+
project, projectNormalized, interpolate, interpolateNormalized,
1414
buffer, envelope, intersection, convexhull, difference, symmetricDifference,
1515
boundary, union, unaryUnion, pointOnSurface, centroid, node,
1616
polygonize, lineMerge, simplify, topologyPreserveSimplify, uniquePoints, sharedPaths,
1717
snap, delaunayTriangulation, delaunayTriangulationEdges,
18-
disjoint, touches, intersects, crosses, within, contains, overlaps, equals, equalsexact, covers, coveredby,
18+
disjoint, touches, intersects, crosses, within, contains, overlaps, equals, equalsexact, covers, coveredby,
1919
prepareGeom, prepcontains, prepcontainsproperly, prepcoveredby, prepcovers, prepcrosses,
2020
prepdisjoint, prepintersects, prepoverlaps, preptouches, prepwithin,
2121
isEmpty, isSimple, isRing, hasZ, isClosed, isValid, normalize!, interiorRings, exteriorRing,
2222
numPoints, startPoint, endPoint, area, geomLength, distance, hausdorffdistance, nearestPoints
2323

2424
include("geos_c.jl")
25-
25+
2626
# --- GEOSconnection ---
2727
type GEOSconnection
2828
status::Symbol
@@ -44,4 +44,4 @@ module LibGEOS
4444
include("geos_types.jl")
4545
include("geos_operations.jl")
4646
include("geo_interface.jl")
47-
end
47+
end

0 commit comments

Comments
 (0)