├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── conanfile.txt ├── include └── GeosCli │ ├── AreaCommand.hpp │ ├── BoundaryCommand.hpp │ ├── BufferCommand.hpp │ ├── CentroidCommand.hpp │ ├── Command.hpp │ ├── Commands.hpp │ ├── ConcaveHullCommand.hpp │ ├── ContainsCommand.hpp │ ├── ConvexHullCommand.hpp │ ├── CoordinatesCommand.hpp │ ├── CountCommand.hpp │ ├── CountPointsCommand.hpp │ ├── CoveredByCommand.hpp │ ├── CoversCommand.hpp │ ├── CrossesCommand.hpp │ ├── DelaunayTriangulationCommand.hpp │ ├── DifferenceCommand.hpp │ ├── DimensionCommand.hpp │ ├── DisjointCommand.hpp │ ├── DistanceCommand.hpp │ ├── EnvelopeCommand.hpp │ ├── GeosCli.hpp │ ├── GetCommand.hpp │ ├── InteriorPointCommand.hpp │ ├── IntersectionCommand.hpp │ ├── IntersectsCommand.hpp │ ├── IsEmptyCommand.hpp │ ├── IsRectCommand.hpp │ ├── IsSimpleCommand.hpp │ ├── IsValidCommand.hpp │ ├── IsWithinDistanceCommand.hpp │ ├── LengthCommand.hpp │ ├── ListCommand.hpp │ ├── MakeValidCommand.hpp │ ├── OffsetCurveCommand.hpp │ ├── OverlapsCommand.hpp │ ├── RelateCommand.hpp │ ├── SymDifferenceCommand.hpp │ ├── TouchesCommand.hpp │ ├── TypeCommand.hpp │ ├── UnionCommand.hpp │ ├── VoronoiDiagramCommand.hpp │ └── WithinCommand.hpp ├── src ├── App.cpp ├── AreaCommand.cpp ├── BoundaryCommand.cpp ├── BufferCommand.cpp ├── CentroidCommand.cpp ├── Command.cpp ├── Commands.cpp ├── ConcaveHullCommand.cpp ├── ContainsCommand.cpp ├── ConvexHullCommand.cpp ├── CoordinatesCommand.cpp ├── CountCommand.cpp ├── CountPointsCommand.cpp ├── CoveredByCommand.cpp ├── CoversCommand.cpp ├── CrossesCommand.cpp ├── DelaunayTriangulationCommand.cpp ├── DifferenceCommand.cpp ├── DimensionCommand.cpp ├── DisjointCommand.cpp ├── DistanceCommand.cpp ├── EnvelopeCommand.cpp ├── GetCommand.cpp ├── InteriorPointCommand.cpp ├── IntersectionCommand.cpp ├── IntersectsCommand.cpp ├── IsEmptyCommand.cpp ├── IsRectCommand.cpp ├── IsSimpleCommand.cpp ├── IsValidCommand.cpp ├── IsWithinDistanceCommand.cpp ├── LengthCommand.cpp ├── ListCommand.cpp ├── MakeValidCommand.cpp ├── OffsetCurveCommand.cpp ├── OverlapsCommand.cpp ├── RelateCommand.cpp ├── SymDifferenceCommand.cpp ├── TouchesCommand.cpp ├── TypeCommand.cpp ├── UnionCommand.cpp ├── VoronoiDiagramCommand.cpp └── WithinCommand.cpp └── test ├── AreaCommandTest.cpp ├── BoundaryCommandTest.cpp ├── BufferCommandTest.cpp ├── CMakeLists.txt ├── CentroidCommandTest.cpp ├── ConcaveHullCommandTest.cpp ├── ContainsCommandTest.cpp ├── ConvexHullCommandTest.cpp ├── CoordinatesCommandTest.cpp ├── CountCommandTest.cpp ├── CountPointsCommandTest.cpp ├── CoveredByCommandTest.cpp ├── CoversCommandTest.cpp ├── CrossesCommandTest.cpp ├── DelaunayTriangulationCommandTest.cpp ├── DifferenceCommandTest.cpp ├── DimensionCommandTest.cpp ├── DisjointCommandTest.cpp ├── DistanceCommandTest.cpp ├── EnvelopeCommandTest.cpp ├── GetCommandTest.cpp ├── InteriorPointCommandTest.cpp ├── IntersectionCommandTest.cpp ├── IntersectsCommandTest.cpp ├── IsEmptyCommandTest.cpp ├── IsRectCommandTest.cpp ├── IsSimpleCommandTest.cpp ├── IsValidCommandTest.cpp ├── IsWithinDistanceCommandTest.cpp ├── LengthCommandTest.cpp ├── ListCommandTest.cpp ├── MakeValidCommandTest.cpp ├── OffsetCurveCommandTest.cpp ├── OverlapsCommandTest.cpp ├── RelateCommandTest.cpp ├── SymDifferenceCommandTest.cpp ├── TouchesCommandTest.cpp ├── TypeCommandTest.cpp ├── UnionCommandTest.cpp ├── VoronoiDiagramCommandTest.cpp └── WithinCommandTest.cpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | .DS_Store 4 | build 5 | TODO.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/README.md -------------------------------------------------------------------------------- /conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/conanfile.txt -------------------------------------------------------------------------------- /include/GeosCli/AreaCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/AreaCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/BoundaryCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/BoundaryCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/BufferCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/BufferCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/CentroidCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/CentroidCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/Command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/Command.hpp -------------------------------------------------------------------------------- /include/GeosCli/Commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/Commands.hpp -------------------------------------------------------------------------------- /include/GeosCli/ConcaveHullCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/ConcaveHullCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/ContainsCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/ContainsCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/ConvexHullCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/ConvexHullCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/CoordinatesCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/CoordinatesCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/CountCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/CountCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/CountPointsCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/CountPointsCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/CoveredByCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/CoveredByCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/CoversCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/CoversCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/CrossesCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/CrossesCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/DelaunayTriangulationCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/DelaunayTriangulationCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/DifferenceCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/DifferenceCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/DimensionCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/DimensionCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/DisjointCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/DisjointCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/DistanceCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/DistanceCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/EnvelopeCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/EnvelopeCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/GeosCli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/GeosCli.hpp -------------------------------------------------------------------------------- /include/GeosCli/GetCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/GetCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/InteriorPointCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/InteriorPointCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/IntersectionCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/IntersectionCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/IntersectsCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/IntersectsCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/IsEmptyCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/IsEmptyCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/IsRectCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/IsRectCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/IsSimpleCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/IsSimpleCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/IsValidCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/IsValidCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/IsWithinDistanceCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/IsWithinDistanceCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/LengthCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/LengthCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/ListCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/ListCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/MakeValidCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/MakeValidCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/OffsetCurveCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/OffsetCurveCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/OverlapsCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/OverlapsCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/RelateCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/RelateCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/SymDifferenceCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/SymDifferenceCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/TouchesCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/TouchesCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/TypeCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/TypeCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/UnionCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/UnionCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/VoronoiDiagramCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/VoronoiDiagramCommand.hpp -------------------------------------------------------------------------------- /include/GeosCli/WithinCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/include/GeosCli/WithinCommand.hpp -------------------------------------------------------------------------------- /src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/App.cpp -------------------------------------------------------------------------------- /src/AreaCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/AreaCommand.cpp -------------------------------------------------------------------------------- /src/BoundaryCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/BoundaryCommand.cpp -------------------------------------------------------------------------------- /src/BufferCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/BufferCommand.cpp -------------------------------------------------------------------------------- /src/CentroidCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/CentroidCommand.cpp -------------------------------------------------------------------------------- /src/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/Command.cpp -------------------------------------------------------------------------------- /src/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/Commands.cpp -------------------------------------------------------------------------------- /src/ConcaveHullCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/ConcaveHullCommand.cpp -------------------------------------------------------------------------------- /src/ContainsCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/ContainsCommand.cpp -------------------------------------------------------------------------------- /src/ConvexHullCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/ConvexHullCommand.cpp -------------------------------------------------------------------------------- /src/CoordinatesCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/CoordinatesCommand.cpp -------------------------------------------------------------------------------- /src/CountCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/CountCommand.cpp -------------------------------------------------------------------------------- /src/CountPointsCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/CountPointsCommand.cpp -------------------------------------------------------------------------------- /src/CoveredByCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/CoveredByCommand.cpp -------------------------------------------------------------------------------- /src/CoversCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/CoversCommand.cpp -------------------------------------------------------------------------------- /src/CrossesCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/CrossesCommand.cpp -------------------------------------------------------------------------------- /src/DelaunayTriangulationCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/DelaunayTriangulationCommand.cpp -------------------------------------------------------------------------------- /src/DifferenceCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/DifferenceCommand.cpp -------------------------------------------------------------------------------- /src/DimensionCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/DimensionCommand.cpp -------------------------------------------------------------------------------- /src/DisjointCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/DisjointCommand.cpp -------------------------------------------------------------------------------- /src/DistanceCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/DistanceCommand.cpp -------------------------------------------------------------------------------- /src/EnvelopeCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/EnvelopeCommand.cpp -------------------------------------------------------------------------------- /src/GetCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/GetCommand.cpp -------------------------------------------------------------------------------- /src/InteriorPointCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/InteriorPointCommand.cpp -------------------------------------------------------------------------------- /src/IntersectionCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/IntersectionCommand.cpp -------------------------------------------------------------------------------- /src/IntersectsCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/IntersectsCommand.cpp -------------------------------------------------------------------------------- /src/IsEmptyCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/IsEmptyCommand.cpp -------------------------------------------------------------------------------- /src/IsRectCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/IsRectCommand.cpp -------------------------------------------------------------------------------- /src/IsSimpleCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/IsSimpleCommand.cpp -------------------------------------------------------------------------------- /src/IsValidCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/IsValidCommand.cpp -------------------------------------------------------------------------------- /src/IsWithinDistanceCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/IsWithinDistanceCommand.cpp -------------------------------------------------------------------------------- /src/LengthCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/LengthCommand.cpp -------------------------------------------------------------------------------- /src/ListCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/ListCommand.cpp -------------------------------------------------------------------------------- /src/MakeValidCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/MakeValidCommand.cpp -------------------------------------------------------------------------------- /src/OffsetCurveCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/OffsetCurveCommand.cpp -------------------------------------------------------------------------------- /src/OverlapsCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/OverlapsCommand.cpp -------------------------------------------------------------------------------- /src/RelateCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/RelateCommand.cpp -------------------------------------------------------------------------------- /src/SymDifferenceCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/SymDifferenceCommand.cpp -------------------------------------------------------------------------------- /src/TouchesCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/TouchesCommand.cpp -------------------------------------------------------------------------------- /src/TypeCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/TypeCommand.cpp -------------------------------------------------------------------------------- /src/UnionCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/UnionCommand.cpp -------------------------------------------------------------------------------- /src/VoronoiDiagramCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/VoronoiDiagramCommand.cpp -------------------------------------------------------------------------------- /src/WithinCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/src/WithinCommand.cpp -------------------------------------------------------------------------------- /test/AreaCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/AreaCommandTest.cpp -------------------------------------------------------------------------------- /test/BoundaryCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/BoundaryCommandTest.cpp -------------------------------------------------------------------------------- /test/BufferCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/BufferCommandTest.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/CentroidCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CentroidCommandTest.cpp -------------------------------------------------------------------------------- /test/ConcaveHullCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/ConcaveHullCommandTest.cpp -------------------------------------------------------------------------------- /test/ContainsCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/ContainsCommandTest.cpp -------------------------------------------------------------------------------- /test/ConvexHullCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/ConvexHullCommandTest.cpp -------------------------------------------------------------------------------- /test/CoordinatesCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CoordinatesCommandTest.cpp -------------------------------------------------------------------------------- /test/CountCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CountCommandTest.cpp -------------------------------------------------------------------------------- /test/CountPointsCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CountPointsCommandTest.cpp -------------------------------------------------------------------------------- /test/CoveredByCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CoveredByCommandTest.cpp -------------------------------------------------------------------------------- /test/CoversCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CoversCommandTest.cpp -------------------------------------------------------------------------------- /test/CrossesCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/CrossesCommandTest.cpp -------------------------------------------------------------------------------- /test/DelaunayTriangulationCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/DelaunayTriangulationCommandTest.cpp -------------------------------------------------------------------------------- /test/DifferenceCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/DifferenceCommandTest.cpp -------------------------------------------------------------------------------- /test/DimensionCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/DimensionCommandTest.cpp -------------------------------------------------------------------------------- /test/DisjointCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/DisjointCommandTest.cpp -------------------------------------------------------------------------------- /test/DistanceCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/DistanceCommandTest.cpp -------------------------------------------------------------------------------- /test/EnvelopeCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/EnvelopeCommandTest.cpp -------------------------------------------------------------------------------- /test/GetCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/GetCommandTest.cpp -------------------------------------------------------------------------------- /test/InteriorPointCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/InteriorPointCommandTest.cpp -------------------------------------------------------------------------------- /test/IntersectionCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/IntersectionCommandTest.cpp -------------------------------------------------------------------------------- /test/IntersectsCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/IntersectsCommandTest.cpp -------------------------------------------------------------------------------- /test/IsEmptyCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/IsEmptyCommandTest.cpp -------------------------------------------------------------------------------- /test/IsRectCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/IsRectCommandTest.cpp -------------------------------------------------------------------------------- /test/IsSimpleCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/IsSimpleCommandTest.cpp -------------------------------------------------------------------------------- /test/IsValidCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/IsValidCommandTest.cpp -------------------------------------------------------------------------------- /test/IsWithinDistanceCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/IsWithinDistanceCommandTest.cpp -------------------------------------------------------------------------------- /test/LengthCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/LengthCommandTest.cpp -------------------------------------------------------------------------------- /test/ListCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/ListCommandTest.cpp -------------------------------------------------------------------------------- /test/MakeValidCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/MakeValidCommandTest.cpp -------------------------------------------------------------------------------- /test/OffsetCurveCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/OffsetCurveCommandTest.cpp -------------------------------------------------------------------------------- /test/OverlapsCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/OverlapsCommandTest.cpp -------------------------------------------------------------------------------- /test/RelateCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/RelateCommandTest.cpp -------------------------------------------------------------------------------- /test/SymDifferenceCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/SymDifferenceCommandTest.cpp -------------------------------------------------------------------------------- /test/TouchesCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/TouchesCommandTest.cpp -------------------------------------------------------------------------------- /test/TypeCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/TypeCommandTest.cpp -------------------------------------------------------------------------------- /test/UnionCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/UnionCommandTest.cpp -------------------------------------------------------------------------------- /test/VoronoiDiagramCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/VoronoiDiagramCommandTest.cpp -------------------------------------------------------------------------------- /test/WithinCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jericks/geos-cli/HEAD/test/WithinCommandTest.cpp --------------------------------------------------------------------------------