├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CMakeLists.txt ├── Makefile ├── README.md ├── examples └── embedded-c++ │ ├── CMakeLists.txt │ ├── Makefile │ └── main.cpp ├── geo ├── CMakeLists.txt ├── COPYING ├── LICENSE.TXT ├── geo-extension.cpp ├── geo-functions.cpp ├── geometry.cpp ├── include │ ├── accessor-functions.hpp │ ├── constructor-functions.hpp │ ├── formatter-functions.hpp │ ├── geo-extension.hpp │ ├── geo-functions.hpp │ ├── geo_aggregate_function.hpp │ ├── geometry.hpp │ ├── lib │ │ └── ryu.hpp │ ├── liblwgeom │ │ ├── gserialized.hpp │ │ ├── gserialized1.hpp │ │ ├── gserialized2.hpp │ │ ├── liblwgeom.hpp │ │ ├── liblwgeom_internal.hpp │ │ ├── lwgeodetic.hpp │ │ ├── lwgeodetic_tree.hpp │ │ ├── lwgeom_geos.hpp │ │ ├── lwin_wkt.hpp │ │ ├── lwinline.hpp │ │ ├── lwunionfind.hpp │ │ ├── measures.hpp │ │ ├── postigs_config.hpp │ │ └── stringbuffer.hpp │ ├── libpgcommon │ │ ├── lwgeom_pg.hpp │ │ └── lwgeom_transform.hpp │ ├── measure-functions.hpp │ ├── parser-functions.hpp │ ├── parser │ │ └── lwin_wkt_parse.hpp │ ├── postgis.hpp │ ├── postgis │ │ ├── geography.hpp │ │ ├── geography_centroid.hpp │ │ ├── geography_inout.hpp │ │ ├── geography_measurement.hpp │ │ ├── geography_measurement_trees.hpp │ │ ├── lwgeom_box.hpp │ │ ├── lwgeom_dump.hpp │ │ ├── lwgeom_export.hpp │ │ ├── lwgeom_functions_analytic.hpp │ │ ├── lwgeom_functions_basic.hpp │ │ ├── lwgeom_geos.hpp │ │ ├── lwgeom_in_geohash.hpp │ │ ├── lwgeom_inout.hpp │ │ ├── lwgeom_ogc.hpp │ │ └── lwgeom_window.hpp │ ├── postgres.hpp │ ├── predicate-functions.hpp │ └── transformation-functions.hpp ├── lib │ └── ryu.cpp ├── liblwgeom │ ├── gbox.cpp │ ├── gserialized.cpp │ ├── gserialized1.cpp │ ├── gserialized2.cpp │ ├── lwalgorithm.cpp │ ├── lwcircstring.cpp │ ├── lwcollection.cpp │ ├── lwcompound.cpp │ ├── lwcurvepoly.cpp │ ├── lwgeodetic.cpp │ ├── lwgeodetic_tree.cpp │ ├── lwgeom.cpp │ ├── lwgeom_api.cpp │ ├── lwgeom_geos.cpp │ ├── lwgeom_geos_cluster.cpp │ ├── lwin_geojson.cpp │ ├── lwin_wkb.cpp │ ├── lwin_wkt.cpp │ ├── lwiterator.cpp │ ├── lwline.cpp │ ├── lwmline.cpp │ ├── lwmpoint.cpp │ ├── lwmpoly.cpp │ ├── lwout_geojson.cpp │ ├── lwout_wkb.cpp │ ├── lwout_wkt.cpp │ ├── lwpoint.cpp │ ├── lwpoly.cpp │ ├── lwprint.cpp │ ├── lwpsurface.cpp │ ├── lwspheroid.cpp │ ├── lwstroke.cpp │ ├── lwtin.cpp │ ├── lwtriangle.cpp │ ├── lwunionfind.cpp │ ├── lwutil.cpp │ ├── measures.cpp │ ├── ptarray.cpp │ └── stringbuffer.cpp ├── libpgcommon │ ├── lwgeom_pg.cpp │ └── lwgeom_transform.cpp ├── parser │ ├── lwin_wkt_lex.cpp │ ├── lwin_wkt_lex.l │ ├── lwin_wkt_parse.cpp │ └── lwin_wkt_parse.y ├── postgis.cpp ├── postgis │ ├── geography_centroid.cpp │ ├── geography_inout.cpp │ ├── geography_measurement.cpp │ ├── geography_measurement_trees.cpp │ ├── gserialized_typmod.cpp │ ├── lwgeom_box.cpp │ ├── lwgeom_dump.cpp │ ├── lwgeom_export.cpp │ ├── lwgeom_functions_analytic.cpp │ ├── lwgeom_functions_basic.cpp │ ├── lwgeom_geos.cpp │ ├── lwgeom_in_geohash.cpp │ ├── lwgeom_in_geojson.cpp │ ├── lwgeom_inout.cpp │ ├── lwgeom_ogc.cpp │ └── lwgeom_window.cpp └── third_party │ ├── CMakeLists.txt │ ├── geos │ ├── CMakeLists.txt │ ├── algorithm │ │ ├── Angle.cpp │ │ ├── Area.cpp │ │ ├── BoundaryNodeRule.cpp │ │ ├── CGAlgorithumsDD.cpp │ │ ├── Centroid.cpp │ │ ├── ConvexHull.cpp │ │ ├── Distance.cpp │ │ ├── Intersection.cpp │ │ ├── Length.cpp │ │ ├── LineIntersector.cpp │ │ ├── Orientation.cpp │ │ ├── PointLocation.cpp │ │ ├── PointLocator.cpp │ │ ├── PolygonNodeTopology.cpp │ │ ├── RayCrossingCounter.cpp │ │ └── locate │ │ │ ├── IndexedPointInAreaLocator.cpp │ │ │ └── SimplePointInAreaLocator.cpp │ ├── edgegraph │ │ └── HalfEdge.cpp │ ├── geom │ │ ├── Coordinate.cpp │ │ ├── CoordinateArraySequence.cpp │ │ ├── CoordinateSequence.cpp │ │ ├── DefaultCoordinateSequencefactory.cpp │ │ ├── Dimension.cpp │ │ ├── Envelope.cpp │ │ ├── Geometry.cpp │ │ ├── GeometryCollection.cpp │ │ ├── GeometryComponentFilter.cpp │ │ ├── GeometryFactory.cpp │ │ ├── HeuristicOverlay.cpp │ │ ├── IntersectionMatrix.cpp │ │ ├── LineSegment.cpp │ │ ├── LineString.cpp │ │ ├── LinearRing.cpp │ │ ├── Location.cpp │ │ ├── MultiLineString.cpp │ │ ├── MultiPoint.cpp │ │ ├── MultiPolygon.cpp │ │ ├── Point.cpp │ │ ├── Polygon.cpp │ │ ├── Position.cpp │ │ ├── PrecisionModel.cpp │ │ ├── Triangle.cpp │ │ └── util │ │ │ ├── CoordinateOperation.cpp │ │ │ ├── GeometryCombiner.cpp │ │ │ ├── GeometryEditor.cpp │ │ │ ├── GeometryTransformer.cpp │ │ │ ├── LinearComponentExtracter.cpp │ │ │ ├── NoOpGeometryOperation.cpp │ │ │ └── ShortCircuitedGeometryVisitor.cpp │ ├── geomgraph │ │ ├── Depth.cpp │ │ ├── DirectedEdge.cpp │ │ ├── DirectedEdgeStar.cpp │ │ ├── Edge.cpp │ │ ├── EdgeEnd.cpp │ │ ├── EdgeEndStar.cpp │ │ ├── EdgeIntersectionList.cpp │ │ ├── EdgeList.cpp │ │ ├── EdgeNodingValidator.cpp │ │ ├── EdgeRing.cpp │ │ ├── GeometryGraph.cpp │ │ ├── GraphComponent.cpp │ │ ├── Node.cpp │ │ ├── NodeFactory.cpp │ │ ├── NodeMap.cpp │ │ ├── PlanarGraph.cpp │ │ ├── PlannarGraph.cpp │ │ ├── TopologyLocation.cpp │ │ └── index │ │ │ ├── MonotoneChainEdge.cpp │ │ │ ├── MonotoneChainIndexer.cpp │ │ │ ├── SegmentIntersector.cpp │ │ │ ├── SimpleMCSweepLineIntersector.cpp │ │ │ └── SweepLineEvent.cpp │ ├── geos_c.cpp │ ├── geos_ts_c.cpp │ ├── include │ │ ├── geos │ │ │ ├── algorithm │ │ │ │ ├── Angle.hpp │ │ │ │ ├── Area.hpp │ │ │ │ ├── BoundaryNodeRule.hpp │ │ │ │ ├── CGAlgorithmsDD.hpp │ │ │ │ ├── Centroid.hpp │ │ │ │ ├── ConvexHull.hpp │ │ │ │ ├── Distance.hpp │ │ │ │ ├── Intersection.hpp │ │ │ │ ├── Length.hpp │ │ │ │ ├── LineIntersector.hpp │ │ │ │ ├── Orientation.hpp │ │ │ │ ├── PointLocation.hpp │ │ │ │ ├── PointLocator.hpp │ │ │ │ ├── PolygonNodeTopology.hpp │ │ │ │ ├── RayCrossingCounter.hpp │ │ │ │ └── locate │ │ │ │ │ ├── IndexedPointInAreaLocator.hpp │ │ │ │ │ ├── PointOnGeometryLocator.hpp │ │ │ │ │ └── SimplePointInAreaLocator.hpp │ │ │ ├── constants.hpp │ │ │ ├── edgegraph │ │ │ │ └── HalfEdge.hpp │ │ │ ├── export.hpp │ │ │ ├── geom │ │ │ │ ├── Coordinate.hpp │ │ │ │ ├── CoordinateArraySequence.hpp │ │ │ │ ├── CoordinateFilter.hpp │ │ │ │ ├── CoordinateList.hpp │ │ │ │ ├── CoordinateSequence.hpp │ │ │ │ ├── CoordinateSequenceFactory.hpp │ │ │ │ ├── CoordinateSequenceFilter.hpp │ │ │ │ ├── CoordinateSequenceIterator.hpp │ │ │ │ ├── DefaultCoordinateSequenceFactory.hpp │ │ │ │ ├── Dimension.hpp │ │ │ │ ├── Envelope.hpp │ │ │ │ ├── FixedSizeCoordinateSequence.hpp │ │ │ │ ├── Geometry.hpp │ │ │ │ ├── GeometryCollection.hpp │ │ │ │ ├── GeometryComponentFilter.hpp │ │ │ │ ├── GeometryFactory.hpp │ │ │ │ ├── GeometryFilter.hpp │ │ │ │ ├── HeuristicOverlay.hpp │ │ │ │ ├── IntersectionMatrix.hpp │ │ │ │ ├── LineSegment.hpp │ │ │ │ ├── LineString.hpp │ │ │ │ ├── LinearRing.hpp │ │ │ │ ├── Location.hpp │ │ │ │ ├── MultiLineString.hpp │ │ │ │ ├── MultiPoint.hpp │ │ │ │ ├── MultiPolygon.hpp │ │ │ │ ├── Point.hpp │ │ │ │ ├── Polygon.hpp │ │ │ │ ├── Position.hpp │ │ │ │ ├── PrecisionModel.hpp │ │ │ │ ├── Quadrant.hpp │ │ │ │ ├── Triangle.hpp │ │ │ │ └── util │ │ │ │ │ ├── CoordinateOperation.hpp │ │ │ │ │ ├── GeometryCombiner.hpp │ │ │ │ │ ├── GeometryEditor.hpp │ │ │ │ │ ├── GeometryEditorOperation.hpp │ │ │ │ │ ├── GeometryExtracter.hpp │ │ │ │ │ ├── GeometryTransformer.hpp │ │ │ │ │ ├── LinearComponentExtracter.hpp │ │ │ │ │ ├── NoOpGeometryOperation.hpp │ │ │ │ │ └── ShortCircuitedGeometryVisitor.hpp │ │ │ ├── geomgraph │ │ │ │ ├── Depth.hpp │ │ │ │ ├── DirectedEdge.hpp │ │ │ │ ├── DirectedEdgeStar.hpp │ │ │ │ ├── Edge.hpp │ │ │ │ ├── EdgeEnd.hpp │ │ │ │ ├── EdgeEndStar.hpp │ │ │ │ ├── EdgeIntersection.hpp │ │ │ │ ├── EdgeIntersectionList.hpp │ │ │ │ ├── EdgeList.hpp │ │ │ │ ├── EdgeNodingValidator.hpp │ │ │ │ ├── EdgeRing.hpp │ │ │ │ ├── GeometryGraph.hpp │ │ │ │ ├── GraphComponent.hpp │ │ │ │ ├── Label.hpp │ │ │ │ ├── Node.hpp │ │ │ │ ├── NodeFactory.hpp │ │ │ │ ├── NodeMap.hpp │ │ │ │ ├── PlanarGraph.hpp │ │ │ │ ├── TopologyLocation.hpp │ │ │ │ └── index │ │ │ │ │ ├── EdgeSetIntersector.hpp │ │ │ │ │ ├── MonotoneChain.hpp │ │ │ │ │ ├── MonotoneChainEdge.hpp │ │ │ │ │ ├── MonotoneChainIndexer.hpp │ │ │ │ │ ├── SegmentIntersector.hpp │ │ │ │ │ ├── SimpleMCSweepLineIntersector.hpp │ │ │ │ │ ├── SweepLineEvent.hpp │ │ │ │ │ └── SweepLineEventObj.hpp │ │ │ ├── index │ │ │ │ ├── ItemVisitor.hpp │ │ │ │ ├── SpatialIndex.hpp │ │ │ │ ├── chain │ │ │ │ │ ├── MonotoneChain.hpp │ │ │ │ │ ├── MonotoneChainBuilder.hpp │ │ │ │ │ └── MonotoneChainOverlapAction.hpp │ │ │ │ ├── kdtree │ │ │ │ │ ├── KdNode.hpp │ │ │ │ │ ├── KdNodeVisitor.hpp │ │ │ │ │ └── KdTree.hpp │ │ │ │ └── strtree │ │ │ │ │ ├── Boundable.hpp │ │ │ │ │ ├── Interval.hpp │ │ │ │ │ ├── ItemBoundable.hpp │ │ │ │ │ ├── STRtree.hpp │ │ │ │ │ ├── SimpleSTRnode.hpp │ │ │ │ │ ├── SimpleSTRtree.hpp │ │ │ │ │ ├── TemplateSTRNode.hpp │ │ │ │ │ └── TemplateSTRtree.hpp │ │ │ ├── math │ │ │ │ └── DD.hpp │ │ │ ├── noding │ │ │ │ ├── BasicSegmentString.hpp │ │ │ │ ├── FastNodingValidator.hpp │ │ │ │ ├── IntersectionAdder.hpp │ │ │ │ ├── IntersectionFinderAdder.hpp │ │ │ │ ├── MCIndexNoder.hpp │ │ │ │ ├── NodableSegmentString.hpp │ │ │ │ ├── NodedSegmentString.hpp │ │ │ │ ├── Noder.hpp │ │ │ │ ├── NodingIntersectionFinder.hpp │ │ │ │ ├── NodingValidator.hpp │ │ │ │ ├── Octant.hpp │ │ │ │ ├── OrientedCoordinateArray.hpp │ │ │ │ ├── ScaledNoder.hpp │ │ │ │ ├── SegmentIntersector.hpp │ │ │ │ ├── SegmentNode.hpp │ │ │ │ ├── SegmentNodeList.hpp │ │ │ │ ├── SegmentPointComparator.hpp │ │ │ │ ├── SegmentString.hpp │ │ │ │ ├── SinglePassNoder.hpp │ │ │ │ ├── ValidatingNoder.hpp │ │ │ │ ├── snap │ │ │ │ │ ├── SnappingIntersectionAdder.hpp │ │ │ │ │ ├── SnappingNoder.hpp │ │ │ │ │ └── SnappingPointIndex.hpp │ │ │ │ └── snapround │ │ │ │ │ ├── HotPixel.hpp │ │ │ │ │ ├── HotPixelIndex.hpp │ │ │ │ │ ├── MCIndexPointSnapper.hpp │ │ │ │ │ ├── MCIndexSnapRounder.hpp │ │ │ │ │ ├── SnapRoundingIntersectionAdder.hpp │ │ │ │ │ └── SnapRoundingNoder.hpp │ │ │ ├── operation │ │ │ │ ├── BoundaryOp.hpp │ │ │ │ ├── GeometryGraphOperation.hpp │ │ │ │ ├── buffer │ │ │ │ │ ├── BufferBuilder.hpp │ │ │ │ │ ├── BufferCurveSetBuilder.hpp │ │ │ │ │ ├── BufferInputLineSimplifier.hpp │ │ │ │ │ ├── BufferOp.hpp │ │ │ │ │ ├── BufferParameters.hpp │ │ │ │ │ ├── BufferSubgraph.hpp │ │ │ │ │ ├── OffsetCurveBuilder.hpp │ │ │ │ │ ├── OffsetSegmentGenerator.hpp │ │ │ │ │ ├── OffsetSegmentString.hpp │ │ │ │ │ ├── RightmostEdgeFinder.hpp │ │ │ │ │ └── SubgraphDepthLocater.hpp │ │ │ │ ├── overlay │ │ │ │ │ ├── ElevationMatrix.hpp │ │ │ │ │ ├── ElevationMatrixCell.hpp │ │ │ │ │ ├── LineBuilder.hpp │ │ │ │ │ ├── MaximalEdgeRing.hpp │ │ │ │ │ ├── MinimalEdgeRing.hpp │ │ │ │ │ ├── OverlayNodeFactory.hpp │ │ │ │ │ ├── OverlayOp.hpp │ │ │ │ │ ├── PointBuilder.hpp │ │ │ │ │ ├── PolygonBuilder.hpp │ │ │ │ │ └── snap │ │ │ │ │ │ ├── GeometrySnapper.hpp │ │ │ │ │ │ └── LineStringSnapper.hpp │ │ │ │ ├── overlayng │ │ │ │ │ ├── Edge.hpp │ │ │ │ │ ├── EdgeKey.hpp │ │ │ │ │ ├── EdgeMerger.hpp │ │ │ │ │ ├── EdgeNodingBuilder.hpp │ │ │ │ │ ├── EdgeSourceInfo.hpp │ │ │ │ │ ├── ElevationModel.hpp │ │ │ │ │ ├── IndexedPointOnLineLocator.hpp │ │ │ │ │ ├── InputGeometry.hpp │ │ │ │ │ ├── IntersectionPointBuilder.hpp │ │ │ │ │ ├── LineBuilder.hpp │ │ │ │ │ ├── LineLimiter.hpp │ │ │ │ │ ├── MaximalEdgeRing.hpp │ │ │ │ │ ├── OverlayEdge.hpp │ │ │ │ │ ├── OverlayEdgeRing.hpp │ │ │ │ │ ├── OverlayGraph.hpp │ │ │ │ │ ├── OverlayLabel.hpp │ │ │ │ │ ├── OverlayLabeller.hpp │ │ │ │ │ ├── OverlayMixedPoints.hpp │ │ │ │ │ ├── OverlayNG.hpp │ │ │ │ │ ├── OverlayNGRobust.hpp │ │ │ │ │ ├── OverlayPoints.hpp │ │ │ │ │ ├── OverlayUtil.hpp │ │ │ │ │ ├── PolygonBuilder.hpp │ │ │ │ │ ├── PrecisionReducer.hpp │ │ │ │ │ ├── PrecisionUtil.hpp │ │ │ │ │ ├── RingClipper.hpp │ │ │ │ │ └── RobustClipEnvelopeComputer.hpp │ │ │ │ ├── polygonize │ │ │ │ │ └── EdgeRing.hpp │ │ │ │ ├── predicate │ │ │ │ │ ├── RectangleContains.hpp │ │ │ │ │ ├── RectangleIntersects.hpp │ │ │ │ │ └── SegmentIntersectionTester.hpp │ │ │ │ ├── relate │ │ │ │ │ ├── EdgeEndBuilder.hpp │ │ │ │ │ ├── EdgeEndBundle.hpp │ │ │ │ │ ├── EdgeEndBundleStar.hpp │ │ │ │ │ ├── RelateComputer.hpp │ │ │ │ │ ├── RelateNode.hpp │ │ │ │ │ ├── RelateNodeFactory.hpp │ │ │ │ │ └── RelateOp.hpp │ │ │ │ ├── union │ │ │ │ │ ├── CascadedPolygonUnion.hpp │ │ │ │ │ ├── PointGeometryUnion.hpp │ │ │ │ │ ├── UnaryUnionOp.hpp │ │ │ │ │ └── UnionStrategy.hpp │ │ │ │ └── valid │ │ │ │ │ ├── IndexedNestedHoleTester.hpp │ │ │ │ │ ├── IndexedNestedPolygonTester.hpp │ │ │ │ │ ├── IsSimpleOp.hpp │ │ │ │ │ ├── IsValidOp.hpp │ │ │ │ │ ├── PolygonIntersectionAnalyzer.hpp │ │ │ │ │ ├── PolygonRing.hpp │ │ │ │ │ ├── PolygonRingSelfNode.hpp │ │ │ │ │ ├── PolygonRingTouch.hpp │ │ │ │ │ ├── PolygonTopologyAnalyzer.hpp │ │ │ │ │ ├── RepeatedPointRemover.hpp │ │ │ │ │ ├── RepeatedPointTester.hpp │ │ │ │ │ └── TopologyValidationError.hpp │ │ │ ├── precision │ │ │ │ ├── CommonBits.hpp │ │ │ │ ├── CommonBitsRemover.hpp │ │ │ │ ├── GeometryPrecisionReducer.hpp │ │ │ │ ├── PointwisePrecisionReducerTransformer.hpp │ │ │ │ ├── PrecisionReducerCoordinateOperation.hpp │ │ │ │ └── PrecisionReducerTransformer.hpp │ │ │ ├── util.hpp │ │ │ └── util │ │ │ │ ├── Assert.hpp │ │ │ │ ├── AssertionFailedException.hpp │ │ │ │ ├── GEOSException.hpp │ │ │ │ ├── IllegalArgumentException.hpp │ │ │ │ ├── IllegalStateException.hpp │ │ │ │ ├── Interrupt.hpp │ │ │ │ ├── Machine.hpp │ │ │ │ ├── TopologyException.hpp │ │ │ │ ├── UniqueCoordinateArrayFilter.hpp │ │ │ │ ├── UnsupportedOperationException.hpp │ │ │ │ └── math.hpp │ │ └── geos_c.hpp │ ├── index │ │ ├── chain │ │ │ ├── MonotoneChain.cpp │ │ │ ├── MonotoneChainBuilder.cpp │ │ │ └── MonotoneChainOverlapAction.cpp │ │ ├── kdtree │ │ │ ├── KdNode.cpp │ │ │ └── KdTree.cpp │ │ └── strtree │ │ │ ├── SimpleSTRnode.cpp │ │ │ └── SimpleSTRtree.cpp │ ├── math │ │ └── DD.cpp │ ├── noding │ │ ├── FastNodingValidator.cpp │ │ ├── IntersectionAdder.cpp │ │ ├── IntersectionFinderAdder.cpp │ │ ├── MCIndexNoder.cpp │ │ ├── NodedSegmentString.cpp │ │ ├── NodingIntersectionFinder.cpp │ │ ├── NodingValidator.cpp │ │ ├── Octant.cpp │ │ ├── OrientedCoordinateArray.cpp │ │ ├── ScaledNoder.cpp │ │ ├── SegmentNode.cpp │ │ ├── SegmentNodeList.cpp │ │ ├── ValidatingNoder.cpp │ │ ├── snap │ │ │ ├── SnappingIntersectionAdder.cpp │ │ │ ├── SnappingNoder.cpp │ │ │ └── SnappingPointIndex.cpp │ │ └── snapround │ │ │ ├── HotPixel.cpp │ │ │ ├── HotPixelIndex.cpp │ │ │ ├── SnapRoundingIntersectionAdder.cpp │ │ │ └── SnapRoundingNoder.cpp │ ├── operation │ │ ├── BoundaryOp.cpp │ │ ├── GeometryGraphOperation.cpp │ │ ├── buffer │ │ │ ├── BufferBuilder.cpp │ │ │ ├── BufferCurveSetBuilder.cpp │ │ │ ├── BufferInputLineSimplifier.cpp │ │ │ ├── BufferOp.cpp │ │ │ ├── BufferParameters.cpp │ │ │ ├── BufferSubgraph.cpp │ │ │ ├── OffsetCurveBuilder.cpp │ │ │ ├── OffsetSegmentGenerator.cpp │ │ │ ├── RightmostEdgeFinder.cpp │ │ │ └── SubgraphDepthLocater.cpp │ │ ├── overlay │ │ │ ├── ElevationMatrix.cpp │ │ │ ├── ElevationMatrixCell.cpp │ │ │ ├── LineBuilder.cpp │ │ │ ├── MaximalEdgeRing.cpp │ │ │ ├── MinimalEdgeRing.cpp │ │ │ ├── OverlayNodeFactory.cpp │ │ │ ├── OverlayOp.cpp │ │ │ ├── PointBuilder.cpp │ │ │ ├── PolygonBuilder.cpp │ │ │ └── snap │ │ │ │ ├── GeometrySnapper.cpp │ │ │ │ └── LineStringSnapper.cpp │ │ ├── overlayng │ │ │ ├── Edge.cpp │ │ │ ├── EdgeMerger.cpp │ │ │ ├── EdgeNodingBuilder.cpp │ │ │ ├── EdgeSourceInfo.cpp │ │ │ ├── ElevationModel.cpp │ │ │ ├── IndexedPointOnLineLocator.cpp │ │ │ ├── InputGeometry.cpp │ │ │ ├── IntersectionPointBuilder.cpp │ │ │ ├── LineBuilder.cpp │ │ │ ├── LineLimiter.cpp │ │ │ ├── MaximalEdgeRing.cpp │ │ │ ├── OverlayEdge.cpp │ │ │ ├── OverlayEdgeRing.cpp │ │ │ ├── OverlayGraph.cpp │ │ │ ├── OverlayLabel.cpp │ │ │ ├── OverlayLabeller.cpp │ │ │ ├── OverlayMixedPoints.cpp │ │ │ ├── OverlayNG.cpp │ │ │ ├── OverlayNGRobust.cpp │ │ │ ├── OverlayPoints.cpp │ │ │ ├── OverlayUtil.cpp │ │ │ ├── PolygonBuilder.cpp │ │ │ ├── PrecisionReducer.cpp │ │ │ ├── PrecisionUtil.cpp │ │ │ ├── RingClipper.cpp │ │ │ └── RobustClipEnvelopeComputer.cpp │ │ ├── polygonize │ │ │ └── EdgeRing.cpp │ │ ├── predicate │ │ │ ├── RectangleContains.cpp │ │ │ ├── RectangleIntersects.cpp │ │ │ └── SegmentIntersectionTester.cpp │ │ ├── relate │ │ │ ├── EdgeEndBuilder.cpp │ │ │ ├── EdgeEndBundle.cpp │ │ │ ├── EdgeEndBundleStar.cpp │ │ │ ├── RelateComputer.cpp │ │ │ ├── RelateNode.cpp │ │ │ ├── RelateNodeFactory.cpp │ │ │ └── RelateOp.cpp │ │ ├── union │ │ │ ├── CascadedPolygonUnion.cpp │ │ │ ├── PointGeometryUnion.cpp │ │ │ ├── UnaryUnionOp.cpp │ │ │ └── UnionStrategy.cpp │ │ └── valid │ │ │ ├── IndexedNestedHoleTester.cpp │ │ │ ├── IndexedNestedPolygonTester.cpp │ │ │ ├── IsSimpleOp.cpp │ │ │ ├── IsValidOp.cpp │ │ │ ├── PolygonIntersectionAnalyzer.cpp │ │ │ ├── PolygonRing.cpp │ │ │ ├── PolygonRingSelfNode.cpp │ │ │ ├── PolygonRingTouch.cpp │ │ │ ├── PolygonTopologyAnalyzer.cpp │ │ │ ├── RepeatedPointRemover.cpp │ │ │ ├── RepeatedPointTester.cpp │ │ │ └── TopologyValidationError.cpp │ ├── precision │ │ ├── CommonBits.cpp │ │ ├── CommonBitsRemover.cpp │ │ ├── GeometryPrecisionReducer.cpp │ │ ├── PointwisePrecisionReducerTransformer.cpp │ │ └── PrecisionReducerTransformer.cpp │ └── util │ │ ├── Assert.cpp │ │ ├── Interrupt.cpp │ │ └── math.cpp │ └── json │ ├── CMakeLists.txt │ ├── LICENSE │ ├── arraylist.cpp │ ├── include │ ├── arraylist.hpp │ ├── config.hpp │ ├── json.hpp │ ├── json_object.hpp │ ├── json_object_private.hpp │ ├── json_tokener.hpp │ ├── json_types.hpp │ ├── json_util.hpp │ ├── linkhash.hpp │ ├── printbuf.hpp │ └── random_seed.hpp │ ├── json_object.cpp │ ├── json_tokener.cpp │ ├── json_util.cpp │ ├── linkhash.cpp │ ├── printbuf.cpp │ └── random_seed.cpp └── test └── sql ├── test_angle.test ├── test_area.test ├── test_as_binary.test ├── test_as_geojson.test ├── test_as_text.test ├── test_azimuth.test ├── test_boundary.test ├── test_boundingbox.test ├── test_buffer.test ├── test_centroid.test ├── test_closestpoint.test ├── test_clusterdbscan.test ├── test_collection.test ├── test_contains.test ├── test_convexhull.test ├── test_coveredby.test ├── test_covers.test ├── test_difference.test ├── test_dimension.test ├── test_disjoint.test ├── test_distance.test ├── test_dump.test ├── test_dwithin.test ├── test_endpoint.test ├── test_equals.test ├── test_extent.test ├── test_from_text.test ├── test_geofromgeojson.test ├── test_geofromtext.test ├── test_geofromwkb.test ├── test_geogfrom.test ├── test_geogpointfromhash.test ├── test_geohash.test ├── test_geometry.test ├── test_geometrytype.test ├── test_get_x.test ├── test_get_y.test ├── test_intersection.test ├── test_intersects.test ├── test_isclosed.test ├── test_iscollection.test ├── test_isempty.test ├── test_isring.test ├── test_length.test ├── test_line.test ├── test_makeline.test ├── test_makepoint.test ├── test_makepolygon.test ├── test_maxdistance.test ├── test_multiline.test ├── test_multipoint.test ├── test_multipolygon.test ├── test_npoints.test ├── test_numgeometries.test ├── test_numpoints.test ├── test_perimeter.test ├── test_point.test ├── test_pointn.test ├── test_polygon.test ├── test_simplify.test ├── test_snaptogrid.test ├── test_startpoint.test ├── test_touches.test ├── test_union.test └── test_within.test /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/README.md -------------------------------------------------------------------------------- /examples/embedded-c++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/examples/embedded-c++/CMakeLists.txt -------------------------------------------------------------------------------- /examples/embedded-c++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/examples/embedded-c++/Makefile -------------------------------------------------------------------------------- /examples/embedded-c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/examples/embedded-c++/main.cpp -------------------------------------------------------------------------------- /geo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/CMakeLists.txt -------------------------------------------------------------------------------- /geo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/COPYING -------------------------------------------------------------------------------- /geo/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/LICENSE.TXT -------------------------------------------------------------------------------- /geo/geo-extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/geo-extension.cpp -------------------------------------------------------------------------------- /geo/geo-functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/geo-functions.cpp -------------------------------------------------------------------------------- /geo/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/geometry.cpp -------------------------------------------------------------------------------- /geo/include/accessor-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/accessor-functions.hpp -------------------------------------------------------------------------------- /geo/include/constructor-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/constructor-functions.hpp -------------------------------------------------------------------------------- /geo/include/formatter-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/formatter-functions.hpp -------------------------------------------------------------------------------- /geo/include/geo-extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/geo-extension.hpp -------------------------------------------------------------------------------- /geo/include/geo-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/geo-functions.hpp -------------------------------------------------------------------------------- /geo/include/geo_aggregate_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/geo_aggregate_function.hpp -------------------------------------------------------------------------------- /geo/include/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/geometry.hpp -------------------------------------------------------------------------------- /geo/include/lib/ryu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/lib/ryu.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/gserialized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/gserialized.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/gserialized1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/gserialized1.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/gserialized2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/gserialized2.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/liblwgeom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/liblwgeom.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/liblwgeom_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/liblwgeom_internal.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/lwgeodetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/lwgeodetic.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/lwgeodetic_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/lwgeodetic_tree.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/lwgeom_geos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/lwgeom_geos.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/lwin_wkt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/lwin_wkt.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/lwinline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/lwinline.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/lwunionfind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/lwunionfind.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/measures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/measures.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/postigs_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/postigs_config.hpp -------------------------------------------------------------------------------- /geo/include/liblwgeom/stringbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/liblwgeom/stringbuffer.hpp -------------------------------------------------------------------------------- /geo/include/libpgcommon/lwgeom_pg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/libpgcommon/lwgeom_pg.hpp -------------------------------------------------------------------------------- /geo/include/libpgcommon/lwgeom_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/libpgcommon/lwgeom_transform.hpp -------------------------------------------------------------------------------- /geo/include/measure-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/measure-functions.hpp -------------------------------------------------------------------------------- /geo/include/parser-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/parser-functions.hpp -------------------------------------------------------------------------------- /geo/include/parser/lwin_wkt_parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/parser/lwin_wkt_parse.hpp -------------------------------------------------------------------------------- /geo/include/postgis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis.hpp -------------------------------------------------------------------------------- /geo/include/postgis/geography.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/geography.hpp -------------------------------------------------------------------------------- /geo/include/postgis/geography_centroid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/geography_centroid.hpp -------------------------------------------------------------------------------- /geo/include/postgis/geography_inout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/geography_inout.hpp -------------------------------------------------------------------------------- /geo/include/postgis/geography_measurement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/geography_measurement.hpp -------------------------------------------------------------------------------- /geo/include/postgis/geography_measurement_trees.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/geography_measurement_trees.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_box.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_dump.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_export.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_functions_analytic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_functions_analytic.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_functions_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_functions_basic.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_geos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_geos.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_in_geohash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_in_geohash.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_inout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_inout.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_ogc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_ogc.hpp -------------------------------------------------------------------------------- /geo/include/postgis/lwgeom_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgis/lwgeom_window.hpp -------------------------------------------------------------------------------- /geo/include/postgres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/postgres.hpp -------------------------------------------------------------------------------- /geo/include/predicate-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/predicate-functions.hpp -------------------------------------------------------------------------------- /geo/include/transformation-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/include/transformation-functions.hpp -------------------------------------------------------------------------------- /geo/lib/ryu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/lib/ryu.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/gbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/gbox.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/gserialized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/gserialized.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/gserialized1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/gserialized1.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/gserialized2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/gserialized2.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwalgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwalgorithm.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwcircstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwcircstring.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwcollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwcollection.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwcompound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwcompound.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwcurvepoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwcurvepoly.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwgeodetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwgeodetic.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwgeodetic_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwgeodetic_tree.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwgeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwgeom.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwgeom_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwgeom_api.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwgeom_geos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwgeom_geos.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwgeom_geos_cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwgeom_geos_cluster.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwin_geojson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwin_geojson.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwin_wkb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwin_wkb.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwin_wkt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwin_wkt.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwiterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwiterator.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwline.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwmline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwmline.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwmpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwmpoint.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwmpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwmpoly.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwout_geojson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwout_geojson.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwout_wkb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwout_wkb.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwout_wkt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwout_wkt.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwpoint.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwpoly.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwprint.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwpsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwpsurface.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwspheroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwspheroid.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwstroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwstroke.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwtin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwtin.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwtriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwtriangle.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwunionfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwunionfind.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/lwutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/lwutil.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/measures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/measures.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/ptarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/ptarray.cpp -------------------------------------------------------------------------------- /geo/liblwgeom/stringbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/liblwgeom/stringbuffer.cpp -------------------------------------------------------------------------------- /geo/libpgcommon/lwgeom_pg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/libpgcommon/lwgeom_pg.cpp -------------------------------------------------------------------------------- /geo/libpgcommon/lwgeom_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/libpgcommon/lwgeom_transform.cpp -------------------------------------------------------------------------------- /geo/parser/lwin_wkt_lex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/parser/lwin_wkt_lex.cpp -------------------------------------------------------------------------------- /geo/parser/lwin_wkt_lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/parser/lwin_wkt_lex.l -------------------------------------------------------------------------------- /geo/parser/lwin_wkt_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/parser/lwin_wkt_parse.cpp -------------------------------------------------------------------------------- /geo/parser/lwin_wkt_parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/parser/lwin_wkt_parse.y -------------------------------------------------------------------------------- /geo/postgis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis.cpp -------------------------------------------------------------------------------- /geo/postgis/geography_centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/geography_centroid.cpp -------------------------------------------------------------------------------- /geo/postgis/geography_inout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/geography_inout.cpp -------------------------------------------------------------------------------- /geo/postgis/geography_measurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/geography_measurement.cpp -------------------------------------------------------------------------------- /geo/postgis/geography_measurement_trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/geography_measurement_trees.cpp -------------------------------------------------------------------------------- /geo/postgis/gserialized_typmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/gserialized_typmod.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_box.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_dump.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_export.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_functions_analytic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_functions_analytic.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_functions_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_functions_basic.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_geos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_geos.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_in_geohash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_in_geohash.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_in_geojson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_in_geojson.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_inout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_inout.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_ogc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_ogc.cpp -------------------------------------------------------------------------------- /geo/postgis/lwgeom_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/postgis/lwgeom_window.cpp -------------------------------------------------------------------------------- /geo/third_party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/CMakeLists.txt -------------------------------------------------------------------------------- /geo/third_party/geos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/CMakeLists.txt -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/Angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/Angle.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/Area.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/BoundaryNodeRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/BoundaryNodeRule.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/CGAlgorithumsDD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/CGAlgorithumsDD.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/Centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/Centroid.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/ConvexHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/ConvexHull.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/Distance.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/Intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/Intersection.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/Length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/Length.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/LineIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/LineIntersector.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/Orientation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/Orientation.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/PointLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/PointLocation.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/PointLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/PointLocator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/PolygonNodeTopology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/PolygonNodeTopology.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/RayCrossingCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/RayCrossingCounter.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/locate/IndexedPointInAreaLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/locate/IndexedPointInAreaLocator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/algorithm/locate/SimplePointInAreaLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/algorithm/locate/SimplePointInAreaLocator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/edgegraph/HalfEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/edgegraph/HalfEdge.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Coordinate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Coordinate.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/CoordinateArraySequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/CoordinateArraySequence.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/CoordinateSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/CoordinateSequence.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/DefaultCoordinateSequencefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/DefaultCoordinateSequencefactory.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Dimension.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Envelope.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Geometry.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/GeometryCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/GeometryCollection.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/GeometryComponentFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/GeometryComponentFilter.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/GeometryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/GeometryFactory.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/HeuristicOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/HeuristicOverlay.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/IntersectionMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/IntersectionMatrix.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/LineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/LineSegment.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/LineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/LineString.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/LinearRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/LinearRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Location.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/MultiLineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/MultiLineString.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/MultiPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/MultiPoint.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/MultiPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/MultiPolygon.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Point.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Polygon.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Position.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/PrecisionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/PrecisionModel.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/Triangle.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/util/CoordinateOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/util/CoordinateOperation.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/util/GeometryCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/util/GeometryCombiner.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/util/GeometryEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/util/GeometryEditor.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/util/GeometryTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/util/GeometryTransformer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/util/LinearComponentExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/util/LinearComponentExtracter.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/util/NoOpGeometryOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/util/NoOpGeometryOperation.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geom/util/ShortCircuitedGeometryVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geom/util/ShortCircuitedGeometryVisitor.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/Depth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/Depth.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/DirectedEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/DirectedEdge.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/DirectedEdgeStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/DirectedEdgeStar.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/Edge.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/EdgeEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/EdgeEnd.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/EdgeEndStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/EdgeEndStar.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/EdgeIntersectionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/EdgeIntersectionList.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/EdgeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/EdgeList.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/EdgeNodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/EdgeNodingValidator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/EdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/EdgeRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/GeometryGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/GeometryGraph.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/GraphComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/GraphComponent.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/Node.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/NodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/NodeFactory.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/NodeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/NodeMap.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/PlanarGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/PlanarGraph.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/PlannarGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/PlannarGraph.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/TopologyLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/TopologyLocation.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/index/MonotoneChainEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/index/MonotoneChainEdge.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/index/MonotoneChainIndexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/index/MonotoneChainIndexer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/index/SegmentIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/index/SegmentIntersector.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/index/SimpleMCSweepLineIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/index/SimpleMCSweepLineIntersector.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geomgraph/index/SweepLineEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geomgraph/index/SweepLineEvent.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geos_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geos_c.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/geos_ts_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/geos_ts_c.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/Angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/Angle.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/Area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/Area.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/BoundaryNodeRule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/BoundaryNodeRule.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/CGAlgorithmsDD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/CGAlgorithmsDD.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/Centroid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/Centroid.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/ConvexHull.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/ConvexHull.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/Distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/Distance.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/Intersection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/Intersection.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/Length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/Length.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/LineIntersector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/LineIntersector.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/Orientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/Orientation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/PointLocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/PointLocation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/PointLocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/PointLocator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/PolygonNodeTopology.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/PolygonNodeTopology.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/RayCrossingCounter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/RayCrossingCounter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/locate/IndexedPointInAreaLocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/locate/IndexedPointInAreaLocator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/locate/PointOnGeometryLocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/locate/PointOnGeometryLocator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/algorithm/locate/SimplePointInAreaLocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/algorithm/locate/SimplePointInAreaLocator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/constants.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/edgegraph/HalfEdge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/edgegraph/HalfEdge.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/export.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Coordinate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Coordinate.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/CoordinateArraySequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/CoordinateArraySequence.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/CoordinateFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/CoordinateFilter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/CoordinateList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/CoordinateList.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/CoordinateSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/CoordinateSequence.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/CoordinateSequenceFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/CoordinateSequenceFactory.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/CoordinateSequenceFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/CoordinateSequenceFilter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/CoordinateSequenceIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/CoordinateSequenceIterator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/DefaultCoordinateSequenceFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/DefaultCoordinateSequenceFactory.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Dimension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Dimension.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Envelope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Envelope.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/FixedSizeCoordinateSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/FixedSizeCoordinateSequence.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Geometry.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/GeometryCollection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/GeometryCollection.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/GeometryComponentFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/GeometryComponentFilter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/GeometryFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/GeometryFactory.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/GeometryFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/GeometryFilter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/HeuristicOverlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/HeuristicOverlay.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/IntersectionMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/IntersectionMatrix.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/LineSegment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/LineSegment.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/LineString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/LineString.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/LinearRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/LinearRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Location.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/MultiLineString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/MultiLineString.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/MultiPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/MultiPoint.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/MultiPolygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/MultiPolygon.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Point.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Polygon.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Position.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/PrecisionModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/PrecisionModel.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Quadrant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Quadrant.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/Triangle.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/CoordinateOperation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/CoordinateOperation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/GeometryCombiner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/GeometryCombiner.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/GeometryEditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/GeometryEditor.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/GeometryEditorOperation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/GeometryEditorOperation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/GeometryExtracter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/GeometryExtracter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/GeometryTransformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/GeometryTransformer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/LinearComponentExtracter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/LinearComponentExtracter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/NoOpGeometryOperation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/NoOpGeometryOperation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geom/util/ShortCircuitedGeometryVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geom/util/ShortCircuitedGeometryVisitor.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/Depth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/Depth.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/DirectedEdge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/DirectedEdge.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/DirectedEdgeStar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/DirectedEdgeStar.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/Edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/Edge.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/EdgeEnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/EdgeEnd.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/EdgeEndStar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/EdgeEndStar.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/EdgeIntersection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/EdgeIntersection.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/EdgeIntersectionList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/EdgeIntersectionList.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/EdgeList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/EdgeList.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/EdgeNodingValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/EdgeNodingValidator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/EdgeRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/EdgeRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/GeometryGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/GeometryGraph.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/GraphComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/GraphComponent.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/Label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/Label.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/Node.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/NodeFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/NodeFactory.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/NodeMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/NodeMap.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/PlanarGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/PlanarGraph.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/TopologyLocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/TopologyLocation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/EdgeSetIntersector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/EdgeSetIntersector.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/MonotoneChain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/MonotoneChain.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/MonotoneChainEdge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/MonotoneChainEdge.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/MonotoneChainIndexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/MonotoneChainIndexer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/SegmentIntersector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/SegmentIntersector.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/SimpleMCSweepLineIntersector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/SimpleMCSweepLineIntersector.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/SweepLineEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/SweepLineEvent.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/geomgraph/index/SweepLineEventObj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/geomgraph/index/SweepLineEventObj.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/ItemVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/ItemVisitor.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/SpatialIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/SpatialIndex.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/chain/MonotoneChain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/chain/MonotoneChain.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/chain/MonotoneChainBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/chain/MonotoneChainBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/chain/MonotoneChainOverlapAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/chain/MonotoneChainOverlapAction.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/kdtree/KdNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/kdtree/KdNode.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/kdtree/KdNodeVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/kdtree/KdNodeVisitor.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/kdtree/KdTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/kdtree/KdTree.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/Boundable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/Boundable.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/Interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/Interval.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/ItemBoundable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/ItemBoundable.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/STRtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/STRtree.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/SimpleSTRnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/SimpleSTRnode.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/SimpleSTRtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/SimpleSTRtree.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/TemplateSTRNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/TemplateSTRNode.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/index/strtree/TemplateSTRtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/index/strtree/TemplateSTRtree.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/math/DD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/math/DD.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/BasicSegmentString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/BasicSegmentString.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/FastNodingValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/FastNodingValidator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/IntersectionAdder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/IntersectionAdder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/IntersectionFinderAdder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/IntersectionFinderAdder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/MCIndexNoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/MCIndexNoder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/NodableSegmentString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/NodableSegmentString.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/NodedSegmentString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/NodedSegmentString.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/Noder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/Noder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/NodingIntersectionFinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/NodingIntersectionFinder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/NodingValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/NodingValidator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/Octant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/Octant.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/OrientedCoordinateArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/OrientedCoordinateArray.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/ScaledNoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/ScaledNoder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/SegmentIntersector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/SegmentIntersector.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/SegmentNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/SegmentNode.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/SegmentNodeList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/SegmentNodeList.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/SegmentPointComparator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/SegmentPointComparator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/SegmentString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/SegmentString.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/SinglePassNoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/SinglePassNoder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/ValidatingNoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/ValidatingNoder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snap/SnappingIntersectionAdder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snap/SnappingIntersectionAdder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snap/SnappingNoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snap/SnappingNoder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snap/SnappingPointIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snap/SnappingPointIndex.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snapround/HotPixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snapround/HotPixel.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snapround/HotPixelIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snapround/HotPixelIndex.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snapround/MCIndexPointSnapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snapround/MCIndexPointSnapper.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snapround/MCIndexSnapRounder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snapround/MCIndexSnapRounder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snapround/SnapRoundingIntersectionAdder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snapround/SnapRoundingIntersectionAdder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/noding/snapround/SnapRoundingNoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/noding/snapround/SnapRoundingNoder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/BoundaryOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/BoundaryOp.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/GeometryGraphOperation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/GeometryGraphOperation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/BufferBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/BufferBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/BufferCurveSetBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/BufferCurveSetBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/BufferInputLineSimplifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/BufferInputLineSimplifier.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/BufferOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/BufferOp.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/BufferParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/BufferParameters.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/BufferSubgraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/BufferSubgraph.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/OffsetCurveBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/OffsetCurveBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/OffsetSegmentGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/OffsetSegmentGenerator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/OffsetSegmentString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/OffsetSegmentString.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/RightmostEdgeFinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/RightmostEdgeFinder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/buffer/SubgraphDepthLocater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/buffer/SubgraphDepthLocater.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/ElevationMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/ElevationMatrix.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/ElevationMatrixCell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/ElevationMatrixCell.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/LineBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/LineBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/MaximalEdgeRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/MaximalEdgeRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/MinimalEdgeRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/MinimalEdgeRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/OverlayNodeFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/OverlayNodeFactory.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/OverlayOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/OverlayOp.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/PointBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/PointBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/PolygonBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/PolygonBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/snap/GeometrySnapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/snap/GeometrySnapper.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlay/snap/LineStringSnapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlay/snap/LineStringSnapper.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/Edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/Edge.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/EdgeKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/EdgeKey.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/EdgeMerger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/EdgeMerger.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/EdgeNodingBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/EdgeNodingBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/EdgeSourceInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/EdgeSourceInfo.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/ElevationModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/ElevationModel.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/IndexedPointOnLineLocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/IndexedPointOnLineLocator.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/InputGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/InputGeometry.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/IntersectionPointBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/IntersectionPointBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/LineBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/LineBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/LineLimiter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/LineLimiter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/MaximalEdgeRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/MaximalEdgeRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayEdge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayEdge.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayEdgeRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayEdgeRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayGraph.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayLabel.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayLabeller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayLabeller.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayMixedPoints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayMixedPoints.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayNG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayNG.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayNGRobust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayNGRobust.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayPoints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayPoints.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/OverlayUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/OverlayUtil.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/PolygonBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/PolygonBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/PrecisionReducer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/PrecisionReducer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/PrecisionUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/PrecisionUtil.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/RingClipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/RingClipper.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/overlayng/RobustClipEnvelopeComputer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/overlayng/RobustClipEnvelopeComputer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/polygonize/EdgeRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/polygonize/EdgeRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/predicate/RectangleContains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/predicate/RectangleContains.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/predicate/RectangleIntersects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/predicate/RectangleIntersects.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/predicate/SegmentIntersectionTester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/predicate/SegmentIntersectionTester.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/relate/EdgeEndBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/relate/EdgeEndBuilder.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/relate/EdgeEndBundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/relate/EdgeEndBundle.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/relate/EdgeEndBundleStar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/relate/EdgeEndBundleStar.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/relate/RelateComputer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/relate/RelateComputer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/relate/RelateNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/relate/RelateNode.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/relate/RelateNodeFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/relate/RelateNodeFactory.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/relate/RelateOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/relate/RelateOp.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/union/CascadedPolygonUnion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/union/CascadedPolygonUnion.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/union/PointGeometryUnion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/union/PointGeometryUnion.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/union/UnaryUnionOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/union/UnaryUnionOp.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/union/UnionStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/union/UnionStrategy.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/IndexedNestedHoleTester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/IndexedNestedHoleTester.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/IndexedNestedPolygonTester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/IndexedNestedPolygonTester.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/IsSimpleOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/IsSimpleOp.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/IsValidOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/IsValidOp.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/PolygonIntersectionAnalyzer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/PolygonIntersectionAnalyzer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/PolygonRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/PolygonRing.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/PolygonRingSelfNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/PolygonRingSelfNode.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/PolygonRingTouch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/PolygonRingTouch.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/PolygonTopologyAnalyzer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/PolygonTopologyAnalyzer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/RepeatedPointRemover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/RepeatedPointRemover.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/RepeatedPointTester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/RepeatedPointTester.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/operation/valid/TopologyValidationError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/operation/valid/TopologyValidationError.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/precision/CommonBits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/precision/CommonBits.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/precision/CommonBitsRemover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/precision/CommonBitsRemover.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/precision/GeometryPrecisionReducer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/precision/GeometryPrecisionReducer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/precision/PointwisePrecisionReducerTransformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/precision/PointwisePrecisionReducerTransformer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/precision/PrecisionReducerCoordinateOperation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/precision/PrecisionReducerCoordinateOperation.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/precision/PrecisionReducerTransformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/precision/PrecisionReducerTransformer.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/Assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/Assert.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/AssertionFailedException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/AssertionFailedException.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/GEOSException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/GEOSException.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/IllegalArgumentException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/IllegalArgumentException.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/IllegalStateException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/IllegalStateException.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/Interrupt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/Interrupt.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/Machine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/Machine.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/TopologyException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/TopologyException.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/UniqueCoordinateArrayFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/UniqueCoordinateArrayFilter.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/UnsupportedOperationException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/UnsupportedOperationException.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos/util/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos/util/math.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/include/geos_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/include/geos_c.hpp -------------------------------------------------------------------------------- /geo/third_party/geos/index/chain/MonotoneChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/index/chain/MonotoneChain.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/index/chain/MonotoneChainBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/index/chain/MonotoneChainBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/index/chain/MonotoneChainOverlapAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/index/chain/MonotoneChainOverlapAction.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/index/kdtree/KdNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/index/kdtree/KdNode.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/index/kdtree/KdTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/index/kdtree/KdTree.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/index/strtree/SimpleSTRnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/index/strtree/SimpleSTRnode.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/index/strtree/SimpleSTRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/index/strtree/SimpleSTRtree.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/math/DD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/math/DD.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/FastNodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/FastNodingValidator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/IntersectionAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/IntersectionAdder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/IntersectionFinderAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/IntersectionFinderAdder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/MCIndexNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/MCIndexNoder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/NodedSegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/NodedSegmentString.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/NodingIntersectionFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/NodingIntersectionFinder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/NodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/NodingValidator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/Octant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/Octant.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/OrientedCoordinateArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/OrientedCoordinateArray.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/ScaledNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/ScaledNoder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/SegmentNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/SegmentNode.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/SegmentNodeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/SegmentNodeList.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/ValidatingNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/ValidatingNoder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/snap/SnappingIntersectionAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/snap/SnappingIntersectionAdder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/snap/SnappingNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/snap/SnappingNoder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/snap/SnappingPointIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/snap/SnappingPointIndex.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/snapround/HotPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/snapround/HotPixel.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/snapround/HotPixelIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/snapround/HotPixelIndex.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/snapround/SnapRoundingIntersectionAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/snapround/SnapRoundingIntersectionAdder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/noding/snapround/SnapRoundingNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/noding/snapround/SnapRoundingNoder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/BoundaryOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/BoundaryOp.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/GeometryGraphOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/GeometryGraphOperation.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/BufferBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/BufferBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/BufferCurveSetBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/BufferCurveSetBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/BufferInputLineSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/BufferInputLineSimplifier.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/BufferOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/BufferOp.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/BufferParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/BufferParameters.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/BufferSubgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/BufferSubgraph.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/OffsetCurveBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/OffsetCurveBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/OffsetSegmentGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/OffsetSegmentGenerator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/RightmostEdgeFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/RightmostEdgeFinder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/buffer/SubgraphDepthLocater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/buffer/SubgraphDepthLocater.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/ElevationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/ElevationMatrix.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/ElevationMatrixCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/ElevationMatrixCell.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/LineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/LineBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/MaximalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/MaximalEdgeRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/MinimalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/MinimalEdgeRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/OverlayNodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/OverlayNodeFactory.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/OverlayOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/OverlayOp.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/PointBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/PointBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/PolygonBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/PolygonBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/snap/GeometrySnapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/snap/GeometrySnapper.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlay/snap/LineStringSnapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlay/snap/LineStringSnapper.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/Edge.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/EdgeMerger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/EdgeMerger.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/EdgeNodingBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/EdgeNodingBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/EdgeSourceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/EdgeSourceInfo.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/ElevationModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/ElevationModel.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/IndexedPointOnLineLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/IndexedPointOnLineLocator.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/InputGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/InputGeometry.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/IntersectionPointBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/IntersectionPointBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/LineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/LineBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/LineLimiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/LineLimiter.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/MaximalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/MaximalEdgeRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayEdge.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayEdgeRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayGraph.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayLabel.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayLabeller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayLabeller.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayMixedPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayMixedPoints.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayNG.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayNGRobust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayNGRobust.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayPoints.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/OverlayUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/OverlayUtil.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/PolygonBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/PolygonBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/PrecisionReducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/PrecisionReducer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/PrecisionUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/PrecisionUtil.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/RingClipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/RingClipper.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/overlayng/RobustClipEnvelopeComputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/overlayng/RobustClipEnvelopeComputer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/polygonize/EdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/polygonize/EdgeRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/predicate/RectangleContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/predicate/RectangleContains.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/predicate/RectangleIntersects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/predicate/RectangleIntersects.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/predicate/SegmentIntersectionTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/predicate/SegmentIntersectionTester.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/relate/EdgeEndBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/relate/EdgeEndBuilder.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/relate/EdgeEndBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/relate/EdgeEndBundle.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/relate/EdgeEndBundleStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/relate/EdgeEndBundleStar.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/relate/RelateComputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/relate/RelateComputer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/relate/RelateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/relate/RelateNode.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/relate/RelateNodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/relate/RelateNodeFactory.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/relate/RelateOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/relate/RelateOp.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/union/CascadedPolygonUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/union/CascadedPolygonUnion.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/union/PointGeometryUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/union/PointGeometryUnion.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/union/UnaryUnionOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/union/UnaryUnionOp.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/union/UnionStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/union/UnionStrategy.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/IndexedNestedHoleTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/IndexedNestedHoleTester.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/IndexedNestedPolygonTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/IndexedNestedPolygonTester.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/IsSimpleOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/IsSimpleOp.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/IsValidOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/IsValidOp.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/PolygonIntersectionAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/PolygonIntersectionAnalyzer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/PolygonRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/PolygonRing.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/PolygonRingSelfNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/PolygonRingSelfNode.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/PolygonRingTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/PolygonRingTouch.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/PolygonTopologyAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/PolygonTopologyAnalyzer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/RepeatedPointRemover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/RepeatedPointRemover.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/RepeatedPointTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/RepeatedPointTester.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/operation/valid/TopologyValidationError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/operation/valid/TopologyValidationError.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/precision/CommonBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/precision/CommonBits.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/precision/CommonBitsRemover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/precision/CommonBitsRemover.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/precision/GeometryPrecisionReducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/precision/GeometryPrecisionReducer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/precision/PointwisePrecisionReducerTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/precision/PointwisePrecisionReducerTransformer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/precision/PrecisionReducerTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/precision/PrecisionReducerTransformer.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/util/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/util/Assert.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/util/Interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/util/Interrupt.cpp -------------------------------------------------------------------------------- /geo/third_party/geos/util/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/geos/util/math.cpp -------------------------------------------------------------------------------- /geo/third_party/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/CMakeLists.txt -------------------------------------------------------------------------------- /geo/third_party/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/LICENSE -------------------------------------------------------------------------------- /geo/third_party/json/arraylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/arraylist.cpp -------------------------------------------------------------------------------- /geo/third_party/json/include/arraylist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/arraylist.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/config.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/json.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/json_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/json_object.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/json_object_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/json_object_private.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/json_tokener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/json_tokener.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/json_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/json_types.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/json_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/json_util.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/linkhash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/linkhash.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/printbuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/printbuf.hpp -------------------------------------------------------------------------------- /geo/third_party/json/include/random_seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/include/random_seed.hpp -------------------------------------------------------------------------------- /geo/third_party/json/json_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/json_object.cpp -------------------------------------------------------------------------------- /geo/third_party/json/json_tokener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/json_tokener.cpp -------------------------------------------------------------------------------- /geo/third_party/json/json_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/json_util.cpp -------------------------------------------------------------------------------- /geo/third_party/json/linkhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/linkhash.cpp -------------------------------------------------------------------------------- /geo/third_party/json/printbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/printbuf.cpp -------------------------------------------------------------------------------- /geo/third_party/json/random_seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/geo/third_party/json/random_seed.cpp -------------------------------------------------------------------------------- /test/sql/test_angle.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_angle.test -------------------------------------------------------------------------------- /test/sql/test_area.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_area.test -------------------------------------------------------------------------------- /test/sql/test_as_binary.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_as_binary.test -------------------------------------------------------------------------------- /test/sql/test_as_geojson.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_as_geojson.test -------------------------------------------------------------------------------- /test/sql/test_as_text.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_as_text.test -------------------------------------------------------------------------------- /test/sql/test_azimuth.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_azimuth.test -------------------------------------------------------------------------------- /test/sql/test_boundary.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_boundary.test -------------------------------------------------------------------------------- /test/sql/test_boundingbox.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_boundingbox.test -------------------------------------------------------------------------------- /test/sql/test_buffer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_buffer.test -------------------------------------------------------------------------------- /test/sql/test_centroid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_centroid.test -------------------------------------------------------------------------------- /test/sql/test_closestpoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_closestpoint.test -------------------------------------------------------------------------------- /test/sql/test_clusterdbscan.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_clusterdbscan.test -------------------------------------------------------------------------------- /test/sql/test_collection.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_collection.test -------------------------------------------------------------------------------- /test/sql/test_contains.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_contains.test -------------------------------------------------------------------------------- /test/sql/test_convexhull.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_convexhull.test -------------------------------------------------------------------------------- /test/sql/test_coveredby.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_coveredby.test -------------------------------------------------------------------------------- /test/sql/test_covers.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_covers.test -------------------------------------------------------------------------------- /test/sql/test_difference.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_difference.test -------------------------------------------------------------------------------- /test/sql/test_dimension.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_dimension.test -------------------------------------------------------------------------------- /test/sql/test_disjoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_disjoint.test -------------------------------------------------------------------------------- /test/sql/test_distance.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_distance.test -------------------------------------------------------------------------------- /test/sql/test_dump.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_dump.test -------------------------------------------------------------------------------- /test/sql/test_dwithin.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_dwithin.test -------------------------------------------------------------------------------- /test/sql/test_endpoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_endpoint.test -------------------------------------------------------------------------------- /test/sql/test_equals.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_equals.test -------------------------------------------------------------------------------- /test/sql/test_extent.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_extent.test -------------------------------------------------------------------------------- /test/sql/test_from_text.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_from_text.test -------------------------------------------------------------------------------- /test/sql/test_geofromgeojson.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geofromgeojson.test -------------------------------------------------------------------------------- /test/sql/test_geofromtext.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geofromtext.test -------------------------------------------------------------------------------- /test/sql/test_geofromwkb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geofromwkb.test -------------------------------------------------------------------------------- /test/sql/test_geogfrom.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geogfrom.test -------------------------------------------------------------------------------- /test/sql/test_geogpointfromhash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geogpointfromhash.test -------------------------------------------------------------------------------- /test/sql/test_geohash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geohash.test -------------------------------------------------------------------------------- /test/sql/test_geometry.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geometry.test -------------------------------------------------------------------------------- /test/sql/test_geometrytype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_geometrytype.test -------------------------------------------------------------------------------- /test/sql/test_get_x.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_get_x.test -------------------------------------------------------------------------------- /test/sql/test_get_y.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_get_y.test -------------------------------------------------------------------------------- /test/sql/test_intersection.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_intersection.test -------------------------------------------------------------------------------- /test/sql/test_intersects.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_intersects.test -------------------------------------------------------------------------------- /test/sql/test_isclosed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_isclosed.test -------------------------------------------------------------------------------- /test/sql/test_iscollection.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_iscollection.test -------------------------------------------------------------------------------- /test/sql/test_isempty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_isempty.test -------------------------------------------------------------------------------- /test/sql/test_isring.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_isring.test -------------------------------------------------------------------------------- /test/sql/test_length.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_length.test -------------------------------------------------------------------------------- /test/sql/test_line.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_line.test -------------------------------------------------------------------------------- /test/sql/test_makeline.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_makeline.test -------------------------------------------------------------------------------- /test/sql/test_makepoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_makepoint.test -------------------------------------------------------------------------------- /test/sql/test_makepolygon.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_makepolygon.test -------------------------------------------------------------------------------- /test/sql/test_maxdistance.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_maxdistance.test -------------------------------------------------------------------------------- /test/sql/test_multiline.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_multiline.test -------------------------------------------------------------------------------- /test/sql/test_multipoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_multipoint.test -------------------------------------------------------------------------------- /test/sql/test_multipolygon.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_multipolygon.test -------------------------------------------------------------------------------- /test/sql/test_npoints.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_npoints.test -------------------------------------------------------------------------------- /test/sql/test_numgeometries.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_numgeometries.test -------------------------------------------------------------------------------- /test/sql/test_numpoints.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_numpoints.test -------------------------------------------------------------------------------- /test/sql/test_perimeter.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_perimeter.test -------------------------------------------------------------------------------- /test/sql/test_point.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_point.test -------------------------------------------------------------------------------- /test/sql/test_pointn.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_pointn.test -------------------------------------------------------------------------------- /test/sql/test_polygon.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_polygon.test -------------------------------------------------------------------------------- /test/sql/test_simplify.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_simplify.test -------------------------------------------------------------------------------- /test/sql/test_snaptogrid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_snaptogrid.test -------------------------------------------------------------------------------- /test/sql/test_startpoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_startpoint.test -------------------------------------------------------------------------------- /test/sql/test_touches.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_touches.test -------------------------------------------------------------------------------- /test/sql/test_union.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_union.test -------------------------------------------------------------------------------- /test/sql/test_within.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handstuyennn/geo/HEAD/test/sql/test_within.test --------------------------------------------------------------------------------