├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile ├── binding.gyp.dev ├── configure ├── dist ├── darwin │ └── x64 │ │ └── mod_spatialite.dylib ├── linux │ ├── ia32 │ │ └── .gitkeep │ └── x64 │ │ ├── .gitkeep │ │ └── mod_spatialite.so └── win32 │ ├── ia32 │ └── .gitkeep │ └── x64 │ ├── .gitkeep │ └── mod_spatialite.dll ├── index.js ├── install_deps.sh ├── lib ├── index.js └── spatialite.js ├── package.json ├── src ├── config │ ├── linux │ │ ├── ia32 │ │ │ └── config.h │ │ └── x64 │ │ │ └── config.h │ ├── mac │ │ └── x64 │ │ │ └── config.h │ └── win │ │ ├── ia32 │ │ └── config-msvc.h │ │ └── x64 │ │ └── config-msvc.h ├── spatialite │ ├── AUTHORS │ ├── Android.mk │ ├── COPYING │ ├── Doxyfile.in │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── README.coverage │ ├── aclocal.m4 │ ├── config-msvc.h │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── deps │ │ ├── freexl │ │ │ ├── binding.gyp │ │ │ ├── config │ │ │ │ ├── linux │ │ │ │ │ ├── ia32 │ │ │ │ │ │ └── config.h │ │ │ │ │ └── x64 │ │ │ │ │ │ └── config.h │ │ │ │ ├── mac │ │ │ │ │ └── x64 │ │ │ │ │ │ └── config.h │ │ │ │ └── win │ │ │ │ │ ├── ia32 │ │ │ │ │ ├── config-msvc.h │ │ │ │ │ └── config.h │ │ │ │ │ └── x64 │ │ │ │ │ ├── config-msvc.h │ │ │ │ │ └── config.h │ │ │ ├── freexl │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config-msvc.h │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── examples.doxy │ │ │ │ │ ├── test_xl.c │ │ │ │ │ └── xl2sql.c │ │ │ │ ├── freexl.pc.in │ │ │ │ ├── headers │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── freexl.h │ │ │ │ │ └── freexl_internals.h │ │ │ │ ├── images │ │ │ │ │ ├── piazza.eps │ │ │ │ │ └── piazza.jpg │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── m4 │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ └── lt~obsolete.m4 │ │ │ │ ├── mainpage.doxy │ │ │ │ ├── makefile.vc │ │ │ │ ├── missing │ │ │ │ ├── nmake.opt │ │ │ │ ├── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── freexl.c │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── check_boolean_biff8.c │ │ │ │ │ ├── check_datetime_biff8.c │ │ │ │ │ ├── check_excel2003_biff2.c │ │ │ │ │ ├── check_excel2003_biff3.c │ │ │ │ │ ├── check_excel2003_biff3_error_checks.c │ │ │ │ │ ├── check_excel2003_biff3_info.c │ │ │ │ │ ├── check_excel2003_biff4.c │ │ │ │ │ ├── check_excel2003_biff4_1904.c │ │ │ │ │ ├── check_excel2003_biff4_workbook.c │ │ │ │ │ ├── check_excel2003_biff5_workbook.c │ │ │ │ │ ├── check_excel2003_biff8.c │ │ │ │ │ ├── check_oocalc95.c │ │ │ │ │ ├── check_oocalc97.c │ │ │ │ │ ├── check_oocalc97_intvalue.c │ │ │ │ │ ├── open_excel2003.c │ │ │ │ │ ├── open_oocalc95.c │ │ │ │ │ ├── open_oocalc97.c │ │ │ │ │ ├── testdata │ │ │ │ │ ├── datetime2003.xls │ │ │ │ │ ├── empty2003.xls │ │ │ │ │ ├── oocalc_empty95.xls │ │ │ │ │ ├── oocalc_empty97.xls │ │ │ │ │ ├── oocalc_simple95.xls │ │ │ │ │ ├── oocalc_simple97.xls │ │ │ │ │ ├── simple2003.xls │ │ │ │ │ ├── simple2003_21.xls │ │ │ │ │ ├── simple2003_3.xls │ │ │ │ │ ├── simple2003_4.xls │ │ │ │ │ ├── simple2003_4WB.xlw │ │ │ │ │ ├── simple2003_4_1904.xls │ │ │ │ │ ├── simple2003_5WB.xls │ │ │ │ │ ├── testbool.xls │ │ │ │ │ └── testcase1.xls │ │ │ │ │ ├── walk_fat_oocalc97.c │ │ │ │ │ └── walk_sst_oocalc97.c │ │ │ └── iconv │ │ │ │ └── iconv.target.mk │ │ ├── geos │ │ │ ├── binding.gyp │ │ │ ├── config │ │ │ │ ├── linux │ │ │ │ │ ├── ia32 │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ └── geos │ │ │ │ │ │ │ └── platform.h │ │ │ │ │ └── x64 │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ └── geos │ │ │ │ │ │ └── platform.h │ │ │ │ ├── mac │ │ │ │ │ └── x64 │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ └── geos │ │ │ │ │ │ └── platform.h │ │ │ │ └── win │ │ │ │ │ ├── ia32 │ │ │ │ │ ├── config.h │ │ │ │ │ └── geos │ │ │ │ │ │ └── platform.h │ │ │ │ │ └── x64 │ │ │ │ │ ├── config.h │ │ │ │ │ └── geos │ │ │ │ │ └── platform.h │ │ │ ├── geos │ │ │ │ ├── AUTHORS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── acsite.m4 │ │ │ │ ├── autogen.bat │ │ │ │ ├── capi │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── geos_c.cpp │ │ │ │ │ ├── geos_c.h │ │ │ │ │ ├── geos_c.h.in │ │ │ │ │ └── geos_ts_c.cpp │ │ │ │ ├── cmake │ │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ │ └── modules │ │ │ │ │ │ ├── COPYING-CMAKE-SCRIPTS │ │ │ │ │ │ └── CheckPrototypeExists.cmake │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── Doxyfile.in │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ └── example.cpp │ │ │ │ ├── geos_svn_revision.h │ │ │ │ ├── include │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── geos.h │ │ │ │ │ └── geos │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── algorithm │ │ │ │ │ │ ├── Angle.h │ │ │ │ │ │ ├── BoundaryNodeRule.h │ │ │ │ │ │ ├── CGAlgorithms.h │ │ │ │ │ │ ├── CentralEndpointIntersector.h │ │ │ │ │ │ ├── Centroid.h │ │ │ │ │ │ ├── CentroidArea.h │ │ │ │ │ │ ├── CentroidLine.h │ │ │ │ │ │ ├── CentroidPoint.h │ │ │ │ │ │ ├── ConvexHull.h │ │ │ │ │ │ ├── ConvexHull.inl │ │ │ │ │ │ ├── HCoordinate.h │ │ │ │ │ │ ├── InteriorPointArea.h │ │ │ │ │ │ ├── InteriorPointLine.h │ │ │ │ │ │ ├── InteriorPointPoint.h │ │ │ │ │ │ ├── LineIntersector.h │ │ │ │ │ │ ├── MCPointInRing.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── MinimumDiameter.h │ │ │ │ │ │ ├── NotRepresentableException.h │ │ │ │ │ │ ├── PointInRing.h │ │ │ │ │ │ ├── PointLocator.h │ │ │ │ │ │ ├── RayCrossingCounter.h │ │ │ │ │ │ ├── RobustDeterminant.h │ │ │ │ │ │ ├── SIRtreePointInRing.h │ │ │ │ │ │ ├── SimplePointInRing.h │ │ │ │ │ │ ├── distance │ │ │ │ │ │ │ ├── DiscreteHausdorffDistance.h │ │ │ │ │ │ │ ├── DistanceToPoint.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── PointPairDistance.h │ │ │ │ │ │ └── locate │ │ │ │ │ │ │ ├── IndexedPointInAreaLocator.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PointOnGeometryLocator.h │ │ │ │ │ │ │ └── SimplePointInAreaLocator.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── geom.h │ │ │ │ │ │ ├── geom │ │ │ │ │ │ ├── BinaryOp.h │ │ │ │ │ │ ├── Coordinate.h │ │ │ │ │ │ ├── Coordinate.inl │ │ │ │ │ │ ├── CoordinateArraySequence.h │ │ │ │ │ │ ├── CoordinateArraySequenceFactory.h │ │ │ │ │ │ ├── CoordinateArraySequenceFactory.inl │ │ │ │ │ │ ├── CoordinateFilter.h │ │ │ │ │ │ ├── CoordinateList.h │ │ │ │ │ │ ├── CoordinateSequence.h │ │ │ │ │ │ ├── CoordinateSequenceFactory.h │ │ │ │ │ │ ├── CoordinateSequenceFilter.h │ │ │ │ │ │ ├── Dimension.h │ │ │ │ │ │ ├── Envelope.h │ │ │ │ │ │ ├── Envelope.inl │ │ │ │ │ │ ├── Geometry.h │ │ │ │ │ │ ├── GeometryCollection.h │ │ │ │ │ │ ├── GeometryCollection.inl │ │ │ │ │ │ ├── GeometryComponentFilter.h │ │ │ │ │ │ ├── GeometryFactory.h │ │ │ │ │ │ ├── GeometryFactory.inl │ │ │ │ │ │ ├── GeometryFilter.h │ │ │ │ │ │ ├── GeometryList.h │ │ │ │ │ │ ├── IntersectionMatrix.h │ │ │ │ │ │ ├── LineSegment.h │ │ │ │ │ │ ├── LineSegment.inl │ │ │ │ │ │ ├── LineString.h │ │ │ │ │ │ ├── Lineal.h │ │ │ │ │ │ ├── LinearRing.h │ │ │ │ │ │ ├── Location.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── MultiLineString.h │ │ │ │ │ │ ├── MultiLineString.inl │ │ │ │ │ │ ├── MultiPoint.h │ │ │ │ │ │ ├── MultiPolygon.h │ │ │ │ │ │ ├── MultiPolygon.inl │ │ │ │ │ │ ├── Point.h │ │ │ │ │ │ ├── Polygon.h │ │ │ │ │ │ ├── Polygonal.h │ │ │ │ │ │ ├── PrecisionModel.h │ │ │ │ │ │ ├── PrecisionModel.inl │ │ │ │ │ │ ├── Puntal.h │ │ │ │ │ │ ├── Triangle.h │ │ │ │ │ │ ├── prep │ │ │ │ │ │ │ ├── AbstractPreparedPolygonContains.h │ │ │ │ │ │ │ ├── BasicPreparedGeometry.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PreparedGeometry.h │ │ │ │ │ │ │ ├── PreparedGeometryFactory.h │ │ │ │ │ │ │ ├── PreparedLineString.h │ │ │ │ │ │ │ ├── PreparedLineStringIntersects.h │ │ │ │ │ │ │ ├── PreparedPoint.h │ │ │ │ │ │ │ ├── PreparedPolygon.h │ │ │ │ │ │ │ ├── PreparedPolygonContains.h │ │ │ │ │ │ │ ├── PreparedPolygonContainsProperly.h │ │ │ │ │ │ │ ├── PreparedPolygonCovers.h │ │ │ │ │ │ │ ├── PreparedPolygonIntersects.h │ │ │ │ │ │ │ └── PreparedPolygonPredicate.h │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ComponentCoordinateExtracter.h │ │ │ │ │ │ │ ├── CoordinateOperation.h │ │ │ │ │ │ │ ├── GeometryCombiner.h │ │ │ │ │ │ │ ├── GeometryEditor.h │ │ │ │ │ │ │ ├── GeometryEditorOperation.h │ │ │ │ │ │ │ ├── GeometryExtracter.h │ │ │ │ │ │ │ ├── GeometryTransformer.h │ │ │ │ │ │ │ ├── LinearComponentExtracter.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PointExtracter.h │ │ │ │ │ │ │ ├── PolygonExtracter.h │ │ │ │ │ │ │ ├── ShortCircuitedGeometryVisitor.h │ │ │ │ │ │ │ └── SineStarFactory.h │ │ │ │ │ │ ├── geomUtil.h │ │ │ │ │ │ ├── geomgraph.h │ │ │ │ │ │ ├── geomgraph │ │ │ │ │ │ ├── Depth.h │ │ │ │ │ │ ├── DirectedEdge.h │ │ │ │ │ │ ├── DirectedEdge.inl │ │ │ │ │ │ ├── DirectedEdgeStar.h │ │ │ │ │ │ ├── Edge.h │ │ │ │ │ │ ├── EdgeEnd.h │ │ │ │ │ │ ├── EdgeEndStar.h │ │ │ │ │ │ ├── EdgeIntersection.h │ │ │ │ │ │ ├── EdgeIntersectionList.h │ │ │ │ │ │ ├── EdgeList.h │ │ │ │ │ │ ├── EdgeNodingValidator.h │ │ │ │ │ │ ├── EdgeRing.h │ │ │ │ │ │ ├── GeometryGraph.h │ │ │ │ │ │ ├── GeometryGraph.inl │ │ │ │ │ │ ├── GraphComponent.h │ │ │ │ │ │ ├── Label.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Node.h │ │ │ │ │ │ ├── NodeFactory.h │ │ │ │ │ │ ├── NodeMap.h │ │ │ │ │ │ ├── PlanarGraph.h │ │ │ │ │ │ ├── Position.h │ │ │ │ │ │ ├── Quadrant.h │ │ │ │ │ │ ├── TopologyLocation.h │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── EdgeSetIntersector.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MonotoneChain.h │ │ │ │ │ │ │ ├── MonotoneChainEdge.h │ │ │ │ │ │ │ ├── MonotoneChainIndexer.h │ │ │ │ │ │ │ ├── SegmentIntersector.h │ │ │ │ │ │ │ ├── SimpleEdgeSetIntersector.h │ │ │ │ │ │ │ ├── SimpleMCSweepLineIntersector.h │ │ │ │ │ │ │ ├── SimpleSweepLineIntersector.h │ │ │ │ │ │ │ ├── SweepLineEvent.h │ │ │ │ │ │ │ ├── SweepLineEventObj.h │ │ │ │ │ │ │ └── SweepLineSegment.h │ │ │ │ │ │ ├── geomgraphindex.h │ │ │ │ │ │ ├── geosAlgorithm.h │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── ItemVisitor.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── SpatialIndex.h │ │ │ │ │ │ ├── bintree │ │ │ │ │ │ │ ├── Bintree.h │ │ │ │ │ │ │ ├── Interval.h │ │ │ │ │ │ │ ├── Key.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Node.h │ │ │ │ │ │ │ ├── NodeBase.h │ │ │ │ │ │ │ └── Root.h │ │ │ │ │ │ ├── chain │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MonotoneChain.h │ │ │ │ │ │ │ ├── MonotoneChainBuilder.h │ │ │ │ │ │ │ ├── MonotoneChainOverlapAction.h │ │ │ │ │ │ │ └── MonotoneChainSelectAction.h │ │ │ │ │ │ ├── intervalrtree │ │ │ │ │ │ │ ├── IntervalRTreeBranchNode.h │ │ │ │ │ │ │ ├── IntervalRTreeLeafNode.h │ │ │ │ │ │ │ ├── IntervalRTreeNode.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── SortedPackedIntervalRTree.h │ │ │ │ │ │ ├── quadtree │ │ │ │ │ │ │ ├── DoubleBits.h │ │ │ │ │ │ │ ├── IntervalSize.h │ │ │ │ │ │ │ ├── Key.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Node.h │ │ │ │ │ │ │ ├── NodeBase.h │ │ │ │ │ │ │ ├── Quadtree.h │ │ │ │ │ │ │ └── Root.h │ │ │ │ │ │ ├── strtree │ │ │ │ │ │ │ ├── AbstractNode.h │ │ │ │ │ │ │ ├── AbstractSTRtree.h │ │ │ │ │ │ │ ├── Boundable.h │ │ │ │ │ │ │ ├── Interval.h │ │ │ │ │ │ │ ├── ItemBoundable.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── SIRtree.h │ │ │ │ │ │ │ └── STRtree.h │ │ │ │ │ │ └── sweepline │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── SweepLineEvent.h │ │ │ │ │ │ │ ├── SweepLineIndex.h │ │ │ │ │ │ │ ├── SweepLineInterval.h │ │ │ │ │ │ │ └── SweepLineOverlapAction.h │ │ │ │ │ │ ├── indexBintree.h │ │ │ │ │ │ ├── indexChain.h │ │ │ │ │ │ ├── indexQuadtree.h │ │ │ │ │ │ ├── indexStrtree.h │ │ │ │ │ │ ├── indexSweepline.h │ │ │ │ │ │ ├── inline.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── io │ │ │ │ │ │ ├── ByteOrderDataInStream.h │ │ │ │ │ │ ├── ByteOrderDataInStream.inl │ │ │ │ │ │ ├── ByteOrderValues.h │ │ │ │ │ │ ├── CLocalizer.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── ParseException.h │ │ │ │ │ │ ├── StringTokenizer.h │ │ │ │ │ │ ├── WKBConstants.h │ │ │ │ │ │ ├── WKBReader.h │ │ │ │ │ │ ├── WKBWriter.h │ │ │ │ │ │ ├── WKTReader.h │ │ │ │ │ │ ├── WKTReader.inl │ │ │ │ │ │ ├── WKTWriter.h │ │ │ │ │ │ └── Writer.h │ │ │ │ │ │ ├── linearref │ │ │ │ │ │ ├── ExtractLineByLocation.h │ │ │ │ │ │ ├── LengthIndexOfPoint.h │ │ │ │ │ │ ├── LengthIndexedLine.h │ │ │ │ │ │ ├── LengthLocationMap.h │ │ │ │ │ │ ├── LinearGeometryBuilder.h │ │ │ │ │ │ ├── LinearIterator.h │ │ │ │ │ │ ├── LinearLocation.h │ │ │ │ │ │ ├── LocationIndexOfLine.h │ │ │ │ │ │ ├── LocationIndexOfPoint.h │ │ │ │ │ │ ├── LocationIndexedLine.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── noding.h │ │ │ │ │ │ ├── noding │ │ │ │ │ │ ├── BasicSegmentString.h │ │ │ │ │ │ ├── FastNodingValidator.h │ │ │ │ │ │ ├── FastSegmentSetIntersectionFinder.h │ │ │ │ │ │ ├── GeometryNoder.h │ │ │ │ │ │ ├── IntersectionAdder.h │ │ │ │ │ │ ├── IntersectionFinderAdder.h │ │ │ │ │ │ ├── IteratedNoder.h │ │ │ │ │ │ ├── MCIndexNoder.h │ │ │ │ │ │ ├── MCIndexNoder.inl │ │ │ │ │ │ ├── MCIndexSegmentSetMutualIntersector.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── NodableSegmentString.h │ │ │ │ │ │ ├── NodedSegmentString.h │ │ │ │ │ │ ├── Noder.h │ │ │ │ │ │ ├── NodingValidator.h │ │ │ │ │ │ ├── Octant.h │ │ │ │ │ │ ├── OrientedCoordinateArray.h │ │ │ │ │ │ ├── ScaledNoder.h │ │ │ │ │ │ ├── SegmentIntersectionDetector.h │ │ │ │ │ │ ├── SegmentIntersector.h │ │ │ │ │ │ ├── SegmentNode.h │ │ │ │ │ │ ├── SegmentNodeList.h │ │ │ │ │ │ ├── SegmentPointComparator.h │ │ │ │ │ │ ├── SegmentSetMutualIntersector.h │ │ │ │ │ │ ├── SegmentString.h │ │ │ │ │ │ ├── SegmentStringUtil.h │ │ │ │ │ │ ├── SimpleNoder.h │ │ │ │ │ │ ├── SingleInteriorIntersectionFinder.h │ │ │ │ │ │ ├── SinglePassNoder.h │ │ │ │ │ │ └── snapround │ │ │ │ │ │ │ ├── HotPixel.h │ │ │ │ │ │ │ ├── HotPixel.inl │ │ │ │ │ │ │ ├── MCIndexPointSnapper.h │ │ │ │ │ │ │ ├── MCIndexSnapRounder.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── SimpleSnapRounder.h │ │ │ │ │ │ ├── nodingSnapround.h │ │ │ │ │ │ ├── opBuffer.h │ │ │ │ │ │ ├── opDistance.h │ │ │ │ │ │ ├── opLinemerge.h │ │ │ │ │ │ ├── opOverlay.h │ │ │ │ │ │ ├── opPolygonize.h │ │ │ │ │ │ ├── opPredicate.h │ │ │ │ │ │ ├── opRelate.h │ │ │ │ │ │ ├── opValid.h │ │ │ │ │ │ ├── operation.h │ │ │ │ │ │ ├── operation │ │ │ │ │ │ ├── GeometryGraphOperation.h │ │ │ │ │ │ ├── IsSimpleOp.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ ├── BufferBuilder.h │ │ │ │ │ │ │ ├── BufferInputLineSimplifier.h │ │ │ │ │ │ │ ├── BufferOp.h │ │ │ │ │ │ │ ├── BufferParameters.h │ │ │ │ │ │ │ ├── BufferSubgraph.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── OffsetCurveBuilder.h │ │ │ │ │ │ │ ├── OffsetCurveSetBuilder.h │ │ │ │ │ │ │ ├── OffsetSegmentGenerator.h │ │ │ │ │ │ │ ├── OffsetSegmentString.h │ │ │ │ │ │ │ ├── RightmostEdgeFinder.h │ │ │ │ │ │ │ └── SubgraphDepthLocater.h │ │ │ │ │ │ ├── distance │ │ │ │ │ │ │ ├── ConnectedElementLocationFilter.h │ │ │ │ │ │ │ ├── ConnectedElementPointFilter.h │ │ │ │ │ │ │ ├── DistanceOp.h │ │ │ │ │ │ │ ├── GeometryLocation.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── linemerge │ │ │ │ │ │ │ ├── EdgeString.h │ │ │ │ │ │ │ ├── LineMergeDirectedEdge.h │ │ │ │ │ │ │ ├── LineMergeEdge.h │ │ │ │ │ │ │ ├── LineMergeGraph.h │ │ │ │ │ │ │ ├── LineMerger.h │ │ │ │ │ │ │ ├── LineSequencer.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── overlay │ │ │ │ │ │ │ ├── EdgeSetNoder.h │ │ │ │ │ │ │ ├── ElevationMatrix.h │ │ │ │ │ │ │ ├── ElevationMatrixCell.h │ │ │ │ │ │ │ ├── LineBuilder.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MaximalEdgeRing.h │ │ │ │ │ │ │ ├── MinimalEdgeRing.h │ │ │ │ │ │ │ ├── MinimalEdgeRing.inl │ │ │ │ │ │ │ ├── OverlayNodeFactory.h │ │ │ │ │ │ │ ├── OverlayOp.h │ │ │ │ │ │ │ ├── PointBuilder.h │ │ │ │ │ │ │ ├── PolygonBuilder.h │ │ │ │ │ │ │ ├── snap │ │ │ │ │ │ │ │ ├── GeometrySnapper.h │ │ │ │ │ │ │ │ ├── LineStringSnapper.h │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── SnapIfNeededOverlayOp.h │ │ │ │ │ │ │ │ └── SnapOverlayOp.h │ │ │ │ │ │ │ └── validate │ │ │ │ │ │ │ │ ├── FuzzyPointLocator.h │ │ │ │ │ │ │ │ ├── OffsetPointGenerator.h │ │ │ │ │ │ │ │ └── OverlayResultValidator.h │ │ │ │ │ │ ├── polygonize │ │ │ │ │ │ │ ├── EdgeRing.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PolygonizeDirectedEdge.h │ │ │ │ │ │ │ ├── PolygonizeEdge.h │ │ │ │ │ │ │ ├── PolygonizeGraph.h │ │ │ │ │ │ │ └── Polygonizer.h │ │ │ │ │ │ ├── predicate │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── RectangleContains.h │ │ │ │ │ │ │ ├── RectangleIntersects.h │ │ │ │ │ │ │ └── SegmentIntersectionTester.h │ │ │ │ │ │ ├── relate │ │ │ │ │ │ │ ├── EdgeEndBuilder.h │ │ │ │ │ │ │ ├── EdgeEndBundle.h │ │ │ │ │ │ │ ├── EdgeEndBundleStar.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── RelateComputer.h │ │ │ │ │ │ │ ├── RelateNode.h │ │ │ │ │ │ │ ├── RelateNodeFactory.h │ │ │ │ │ │ │ ├── RelateNodeGraph.h │ │ │ │ │ │ │ └── RelateOp.h │ │ │ │ │ │ ├── sharedpaths │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── SharedPathsOp.h │ │ │ │ │ │ ├── union │ │ │ │ │ │ │ ├── CascadedPolygonUnion.h │ │ │ │ │ │ │ ├── CascadedUnion.h │ │ │ │ │ │ │ ├── GeometryListHolder.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PointGeometryUnion.h │ │ │ │ │ │ │ └── UnaryUnionOp.h │ │ │ │ │ │ └── valid │ │ │ │ │ │ │ ├── ConnectedInteriorTester.h │ │ │ │ │ │ │ ├── ConsistentAreaTester.h │ │ │ │ │ │ │ ├── IsValidOp.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── QuadtreeNestedRingTester.h │ │ │ │ │ │ │ ├── RepeatedPointTester.h │ │ │ │ │ │ │ ├── SimpleNestedRingTester.h │ │ │ │ │ │ │ ├── SweeplineNestedRingTester.h │ │ │ │ │ │ │ └── TopologyValidationError.h │ │ │ │ │ │ ├── planargraph.h │ │ │ │ │ │ ├── planargraph │ │ │ │ │ │ ├── DirectedEdge.h │ │ │ │ │ │ ├── DirectedEdgeStar.h │ │ │ │ │ │ ├── Edge.h │ │ │ │ │ │ ├── GraphComponent.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Node.h │ │ │ │ │ │ ├── NodeMap.h │ │ │ │ │ │ ├── PlanarGraph.h │ │ │ │ │ │ ├── Subgraph.h │ │ │ │ │ │ └── algorithm │ │ │ │ │ │ │ ├── ConnectedSubgraphFinder.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── platform.h.cmake │ │ │ │ │ │ ├── platform.h.in │ │ │ │ │ │ ├── platform.h.vc │ │ │ │ │ │ ├── precision.h │ │ │ │ │ │ ├── precision │ │ │ │ │ │ ├── CommonBits.h │ │ │ │ │ │ ├── CommonBitsOp.h │ │ │ │ │ │ ├── CommonBitsRemover.h │ │ │ │ │ │ ├── EnhancedPrecisionOp.h │ │ │ │ │ │ ├── GeometryPrecisionReducer.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── PrecisionReducerCoordinateOperation.h │ │ │ │ │ │ └── SimpleGeometryPrecisionReducer.h │ │ │ │ │ │ ├── profiler.h │ │ │ │ │ │ ├── simplify │ │ │ │ │ │ ├── DouglasPeuckerLineSimplifier.h │ │ │ │ │ │ ├── DouglasPeuckerSimplifier.h │ │ │ │ │ │ ├── LineSegmentIndex.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── TaggedLineSegment.h │ │ │ │ │ │ ├── TaggedLineString.h │ │ │ │ │ │ ├── TaggedLineStringSimplifier.h │ │ │ │ │ │ ├── TaggedLinesSimplifier.h │ │ │ │ │ │ └── TopologyPreservingSimplifier.h │ │ │ │ │ │ ├── spatialIndex.h │ │ │ │ │ │ ├── timeval.h │ │ │ │ │ │ ├── triangulate │ │ │ │ │ │ ├── DelaunayTriangulationBuilder.h │ │ │ │ │ │ ├── IncrementalDelaunayTriangulator.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── quadedge │ │ │ │ │ │ │ ├── LastFoundQuadEdgeLocator.h │ │ │ │ │ │ │ ├── LocateFailureException.h │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── QuadEdge.h │ │ │ │ │ │ │ ├── QuadEdgeLocator.h │ │ │ │ │ │ │ ├── QuadEdgeSubdivision.h │ │ │ │ │ │ │ ├── TrianglePredicate.h │ │ │ │ │ │ │ ├── TriangleVisitor.h │ │ │ │ │ │ │ └── Vertex.h │ │ │ │ │ │ ├── unload.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ ├── util │ │ │ │ │ │ ├── Assert.h │ │ │ │ │ │ ├── AssertionFailedException.h │ │ │ │ │ │ ├── CoordinateArrayFilter.h │ │ │ │ │ │ ├── GEOSException.h │ │ │ │ │ │ ├── GeometricShapeFactory.h │ │ │ │ │ │ ├── IllegalArgumentException.h │ │ │ │ │ │ ├── IllegalStateException.h │ │ │ │ │ │ ├── Interrupt.h │ │ │ │ │ │ ├── Machine.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── TopologyException.h │ │ │ │ │ │ ├── UniqueCoordinateArrayFilter.h │ │ │ │ │ │ ├── UnsupportedOperationException.h │ │ │ │ │ │ └── math.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ ├── version.h.in │ │ │ │ │ │ └── version.h.vc │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── macros │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ac_pkg_swig.m4 │ │ │ │ │ ├── ac_python_devel.m4 │ │ │ │ │ ├── geos.m4 │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ │ ├── python.m4 │ │ │ │ │ └── ruby.m4 │ │ │ │ ├── makefile.vc │ │ │ │ ├── missing │ │ │ │ ├── nmake.opt │ │ │ │ ├── php │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── geos.c │ │ │ │ │ ├── php_geos.h │ │ │ │ │ └── test │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── crashme.php │ │ │ │ │ │ └── test.php │ │ │ │ ├── py-compile │ │ │ │ ├── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.vc │ │ │ │ │ ├── algorithm │ │ │ │ │ │ ├── Angle.cpp │ │ │ │ │ │ ├── BoundaryNodeRule.cpp │ │ │ │ │ │ ├── CGAlgorithms.cpp │ │ │ │ │ │ ├── Centroid.cpp │ │ │ │ │ │ ├── CentroidArea.cpp │ │ │ │ │ │ ├── CentroidLine.cpp │ │ │ │ │ │ ├── CentroidPoint.cpp │ │ │ │ │ │ ├── ConvexHull.cpp │ │ │ │ │ │ ├── HCoordinate.cpp │ │ │ │ │ │ ├── InteriorPointArea.cpp │ │ │ │ │ │ ├── InteriorPointLine.cpp │ │ │ │ │ │ ├── InteriorPointPoint.cpp │ │ │ │ │ │ ├── LineIntersector.cpp │ │ │ │ │ │ ├── MCPointInRing.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── MinimumDiameter.cpp │ │ │ │ │ │ ├── NotRepresentableException.cpp │ │ │ │ │ │ ├── PointLocator.cpp │ │ │ │ │ │ ├── RayCrossingCounter.cpp │ │ │ │ │ │ ├── RobustDeterminant.cpp │ │ │ │ │ │ ├── SIRtreePointInRing.cpp │ │ │ │ │ │ ├── SimplePointInRing.cpp │ │ │ │ │ │ ├── distance │ │ │ │ │ │ │ ├── DiscreteHausdorffDistance.cpp │ │ │ │ │ │ │ ├── DistanceToPoint.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ └── locate │ │ │ │ │ │ │ ├── IndexedPointInAreaLocator.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PointOnGeometryLocator.cpp │ │ │ │ │ │ │ └── SimplePointInAreaLocator.cpp │ │ │ │ │ ├── dirlist.mk │ │ │ │ │ ├── geom │ │ │ │ │ │ ├── Coordinate.cpp │ │ │ │ │ │ ├── CoordinateArraySequence.cpp │ │ │ │ │ │ ├── CoordinateArraySequenceFactory.cpp │ │ │ │ │ │ ├── CoordinateSequence.cpp │ │ │ │ │ │ ├── CoordinateSequenceFactory.cpp │ │ │ │ │ │ ├── Dimension.cpp │ │ │ │ │ │ ├── Envelope.cpp │ │ │ │ │ │ ├── Geometry.cpp │ │ │ │ │ │ ├── GeometryCollection.cpp │ │ │ │ │ │ ├── GeometryComponentFilter.cpp │ │ │ │ │ │ ├── GeometryFactory.cpp │ │ │ │ │ │ ├── GeometryList.cpp │ │ │ │ │ │ ├── IntersectionMatrix.cpp │ │ │ │ │ │ ├── LineSegment.cpp │ │ │ │ │ │ ├── LineString.cpp │ │ │ │ │ │ ├── LinearRing.cpp │ │ │ │ │ │ ├── Location.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── MultiLineString.cpp │ │ │ │ │ │ ├── MultiPoint.cpp │ │ │ │ │ │ ├── MultiPolygon.cpp │ │ │ │ │ │ ├── Point.cpp │ │ │ │ │ │ ├── Polygon.cpp │ │ │ │ │ │ ├── PrecisionModel.cpp │ │ │ │ │ │ ├── Triangle.cpp │ │ │ │ │ │ ├── prep │ │ │ │ │ │ │ ├── AbstractPreparedPolygonContains.cpp │ │ │ │ │ │ │ ├── BasicPreparedGeometry.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PreparedGeometry.cpp │ │ │ │ │ │ │ ├── PreparedGeometryFactory.cpp │ │ │ │ │ │ │ ├── PreparedLineString.cpp │ │ │ │ │ │ │ ├── PreparedLineStringIntersects.cpp │ │ │ │ │ │ │ ├── PreparedPoint.cpp │ │ │ │ │ │ │ ├── PreparedPolygon.cpp │ │ │ │ │ │ │ ├── PreparedPolygonContains.cpp │ │ │ │ │ │ │ ├── PreparedPolygonContainsProperly.cpp │ │ │ │ │ │ │ ├── PreparedPolygonCovers.cpp │ │ │ │ │ │ │ ├── PreparedPolygonIntersects.cpp │ │ │ │ │ │ │ └── PreparedPolygonPredicate.cpp │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ComponentCoordinateExtracter.cpp │ │ │ │ │ │ │ ├── CoordinateOperation.cpp │ │ │ │ │ │ │ ├── GeometryCombiner.cpp │ │ │ │ │ │ │ ├── GeometryEditor.cpp │ │ │ │ │ │ │ ├── GeometryTransformer.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── ShortCircuitedGeometryVisitor.cpp │ │ │ │ │ │ │ └── SineStarFactory.cpp │ │ │ │ │ ├── geomgraph │ │ │ │ │ │ ├── Depth.cpp │ │ │ │ │ │ ├── EdgeEnd.cpp │ │ │ │ │ │ ├── EdgeEndStar.cpp │ │ │ │ │ │ ├── EdgeIntersectionList.cpp │ │ │ │ │ │ ├── EdgeList.cpp │ │ │ │ │ │ ├── EdgeNodingValidator.cpp │ │ │ │ │ │ ├── GeomGraphDirectedEdge.cpp │ │ │ │ │ │ ├── GeomGraphDirectedEdgeStar.cpp │ │ │ │ │ │ ├── GeomGraphEdge.cpp │ │ │ │ │ │ ├── GeomGraphEdgeRing.cpp │ │ │ │ │ │ ├── GeomGraphNode.cpp │ │ │ │ │ │ ├── GeomGraphNodeMap.cpp │ │ │ │ │ │ ├── GeomGraphPlanarGraph.cpp │ │ │ │ │ │ ├── GeometryGraph.cpp │ │ │ │ │ │ ├── GraphComponent.cpp │ │ │ │ │ │ ├── Label.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── NodeFactory.cpp │ │ │ │ │ │ ├── Position.cpp │ │ │ │ │ │ ├── Quadrant.cpp │ │ │ │ │ │ ├── TopologyLocation.cpp │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── GeomGraphSweepLineEvent.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MonotoneChainEdge.cpp │ │ │ │ │ │ │ ├── MonotoneChainIndexer.cpp │ │ │ │ │ │ │ ├── SegmentIntersector.cpp │ │ │ │ │ │ │ ├── SimpleEdgeSetIntersector.cpp │ │ │ │ │ │ │ ├── SimpleMCSweepLineIntersector.cpp │ │ │ │ │ │ │ ├── SimpleSweepLineIntersector.cpp │ │ │ │ │ │ │ └── SweepLineSegment.cpp │ │ │ │ │ ├── index │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bintree │ │ │ │ │ │ │ ├── BinTreeInterval.cpp │ │ │ │ │ │ │ ├── BinTreeKey.cpp │ │ │ │ │ │ │ ├── BinTreeNode.cpp │ │ │ │ │ │ │ ├── BinTreeNodeBase.cpp │ │ │ │ │ │ │ ├── BinTreeRoot.cpp │ │ │ │ │ │ │ ├── Bintree.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── chain │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MonotoneChain.cpp │ │ │ │ │ │ │ ├── MonotoneChainBuilder.cpp │ │ │ │ │ │ │ ├── MonotoneChainOverlapAction.cpp │ │ │ │ │ │ │ └── MonotoneChainSelectAction.cpp │ │ │ │ │ │ ├── intervalrtree │ │ │ │ │ │ │ ├── IntervalRTreeBranchNode.cpp │ │ │ │ │ │ │ ├── IntervalRTreeLeafNode.cpp │ │ │ │ │ │ │ ├── IntervalRTreeNode.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── SortedPackedIntervalRTree.cpp │ │ │ │ │ │ ├── quadtree │ │ │ │ │ │ │ ├── DoubleBits.cpp │ │ │ │ │ │ │ ├── IntervalSize.cpp │ │ │ │ │ │ │ ├── Key.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── NodeBase.cpp │ │ │ │ │ │ │ ├── QuadTreeNode.cpp │ │ │ │ │ │ │ ├── Quadtree.cpp │ │ │ │ │ │ │ └── Root.cpp │ │ │ │ │ │ ├── strtree │ │ │ │ │ │ │ ├── AbstractNode.cpp │ │ │ │ │ │ │ ├── AbstractSTRtree.cpp │ │ │ │ │ │ │ ├── Interval.cpp │ │ │ │ │ │ │ ├── ItemBoundable.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── SIRtree.cpp │ │ │ │ │ │ │ └── STRtree.cpp │ │ │ │ │ │ └── sweepline │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── SweepLineEvent.cpp │ │ │ │ │ │ │ ├── SweepLineIndex.cpp │ │ │ │ │ │ │ └── SweepLineInterval.cpp │ │ │ │ │ ├── info.plist.in │ │ │ │ │ ├── inlines.cpp │ │ │ │ │ ├── io │ │ │ │ │ │ ├── ByteOrderDataInStream.cpp │ │ │ │ │ │ ├── ByteOrderValues.cpp │ │ │ │ │ │ ├── CLocalizer.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── ParseException.cpp │ │ │ │ │ │ ├── StringTokenizer.cpp │ │ │ │ │ │ ├── Unload.cpp │ │ │ │ │ │ ├── WKBReader.cpp │ │ │ │ │ │ ├── WKBWriter.cpp │ │ │ │ │ │ ├── WKTReader.cpp │ │ │ │ │ │ ├── WKTWriter.cpp │ │ │ │ │ │ └── Writer.cpp │ │ │ │ │ ├── linearref │ │ │ │ │ │ ├── ExtractLineByLocation.cpp │ │ │ │ │ │ ├── LengthIndexOfPoint.cpp │ │ │ │ │ │ ├── LengthIndexedLine.cpp │ │ │ │ │ │ ├── LengthLocationMap.cpp │ │ │ │ │ │ ├── LinearGeometryBuilder.cpp │ │ │ │ │ │ ├── LinearIterator.cpp │ │ │ │ │ │ ├── LinearLocation.cpp │ │ │ │ │ │ ├── LocationIndexOfLine.cpp │ │ │ │ │ │ ├── LocationIndexOfPoint.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── noding │ │ │ │ │ │ ├── BasicSegmentString.cpp │ │ │ │ │ │ ├── FastNodingValidator.cpp │ │ │ │ │ │ ├── FastSegmentSetIntersectionFinder.cpp │ │ │ │ │ │ ├── GeometryNoder.cpp │ │ │ │ │ │ ├── IntersectionAdder.cpp │ │ │ │ │ │ ├── IntersectionFinderAdder.cpp │ │ │ │ │ │ ├── IteratedNoder.cpp │ │ │ │ │ │ ├── MCIndexNoder.cpp │ │ │ │ │ │ ├── MCIndexSegmentSetMutualIntersector.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── NodedSegmentString.cpp │ │ │ │ │ │ ├── NodingValidator.cpp │ │ │ │ │ │ ├── Octant.cpp │ │ │ │ │ │ ├── OrientedCoordinateArray.cpp │ │ │ │ │ │ ├── ScaledNoder.cpp │ │ │ │ │ │ ├── SegmentIntersectionDetector.cpp │ │ │ │ │ │ ├── SegmentNode.cpp │ │ │ │ │ │ ├── SegmentNodeList.cpp │ │ │ │ │ │ ├── SegmentString.cpp │ │ │ │ │ │ ├── SegmentStringUtil.cpp │ │ │ │ │ │ ├── SimpleNoder.cpp │ │ │ │ │ │ ├── SingleInteriorIntersectionFinder.cpp │ │ │ │ │ │ └── snapround │ │ │ │ │ │ │ ├── HotPixel.cpp │ │ │ │ │ │ │ ├── MCIndexPointSnapper.cpp │ │ │ │ │ │ │ ├── MCIndexSnapRounder.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── SimpleSnapRounder.cpp │ │ │ │ │ ├── operation │ │ │ │ │ │ ├── GeometryGraphOperation.cpp │ │ │ │ │ │ ├── IsSimpleOp.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ ├── BufferBuilder.cpp │ │ │ │ │ │ │ ├── BufferInputLineSimplifier.cpp │ │ │ │ │ │ │ ├── BufferOp.cpp │ │ │ │ │ │ │ ├── BufferParameters.cpp │ │ │ │ │ │ │ ├── BufferSubgraph.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── OffsetCurveBuilder.cpp │ │ │ │ │ │ │ ├── OffsetCurveSetBuilder.cpp │ │ │ │ │ │ │ ├── OffsetSegmentGenerator.cpp │ │ │ │ │ │ │ ├── RightmostEdgeFinder.cpp │ │ │ │ │ │ │ └── SubgraphDepthLocater.cpp │ │ │ │ │ │ ├── distance │ │ │ │ │ │ │ ├── ConnectedElementLocationFilter.cpp │ │ │ │ │ │ │ ├── ConnectedElementPointFilter.cpp │ │ │ │ │ │ │ ├── DistanceOp.cpp │ │ │ │ │ │ │ ├── GeometryLocation.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── linemerge │ │ │ │ │ │ │ ├── EdgeString.cpp │ │ │ │ │ │ │ ├── LineMergeDirectedEdge.cpp │ │ │ │ │ │ │ ├── LineMergeEdge.cpp │ │ │ │ │ │ │ ├── LineMergeGraph.cpp │ │ │ │ │ │ │ ├── LineMerger.cpp │ │ │ │ │ │ │ ├── LineSequencer.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── overlay │ │ │ │ │ │ │ ├── EdgeSetNoder.cpp │ │ │ │ │ │ │ ├── ElevationMatrix.cpp │ │ │ │ │ │ │ ├── ElevationMatrixCell.cpp │ │ │ │ │ │ │ ├── LineBuilder.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MaximalEdgeRing.cpp │ │ │ │ │ │ │ ├── MinimalEdgeRing.cpp │ │ │ │ │ │ │ ├── OverlayNodeFactory.cpp │ │ │ │ │ │ │ ├── OverlayOp.cpp │ │ │ │ │ │ │ ├── PointBuilder.cpp │ │ │ │ │ │ │ ├── PolygonBuilder.cpp │ │ │ │ │ │ │ ├── snap │ │ │ │ │ │ │ │ ├── GeometrySnapper.cpp │ │ │ │ │ │ │ │ ├── LineStringSnapper.cpp │ │ │ │ │ │ │ │ ├── SnapIfNeededOverlayOp.cpp │ │ │ │ │ │ │ │ └── SnapOverlayOp.cpp │ │ │ │ │ │ │ └── validate │ │ │ │ │ │ │ │ ├── FuzzyPointLocator.cpp │ │ │ │ │ │ │ │ ├── OffsetPointGenerator.cpp │ │ │ │ │ │ │ │ └── OverlayResultValidator.cpp │ │ │ │ │ │ ├── polygonize │ │ │ │ │ │ │ ├── EdgeRing.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PolygonizeDirectedEdge.cpp │ │ │ │ │ │ │ ├── PolygonizeEdge.cpp │ │ │ │ │ │ │ ├── PolygonizeGraph.cpp │ │ │ │ │ │ │ └── Polygonizer.cpp │ │ │ │ │ │ ├── predicate │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── RectangleContains.cpp │ │ │ │ │ │ │ ├── RectangleIntersects.cpp │ │ │ │ │ │ │ └── SegmentIntersectionTester.cpp │ │ │ │ │ │ ├── relate │ │ │ │ │ │ │ ├── EdgeEndBuilder.cpp │ │ │ │ │ │ │ ├── EdgeEndBundle.cpp │ │ │ │ │ │ │ ├── EdgeEndBundleStar.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── RelateComputer.cpp │ │ │ │ │ │ │ ├── RelateNode.cpp │ │ │ │ │ │ │ ├── RelateNodeFactory.cpp │ │ │ │ │ │ │ ├── RelateNodeGraph.cpp │ │ │ │ │ │ │ └── RelateOp.cpp │ │ │ │ │ │ ├── sharedpaths │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── SharedPathsOp.cpp │ │ │ │ │ │ ├── union │ │ │ │ │ │ │ ├── CascadedPolygonUnion.cpp │ │ │ │ │ │ │ ├── CascadedUnion.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── PointGeometryUnion.cpp │ │ │ │ │ │ │ └── UnaryUnionOp.cpp │ │ │ │ │ │ └── valid │ │ │ │ │ │ │ ├── ConnectedInteriorTester.cpp │ │ │ │ │ │ │ ├── ConsistentAreaTester.cpp │ │ │ │ │ │ │ ├── IndexedNestedRingTester.cpp │ │ │ │ │ │ │ ├── IndexedNestedRingTester.h │ │ │ │ │ │ │ ├── IsValidOp.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── QuadtreeNestedRingTester.cpp │ │ │ │ │ │ │ ├── RepeatedPointTester.cpp │ │ │ │ │ │ │ ├── SimpleNestedRingTester.cpp │ │ │ │ │ │ │ ├── SweeplineNestedRingTester.cpp │ │ │ │ │ │ │ └── TopologyValidationError.cpp │ │ │ │ │ ├── planargraph │ │ │ │ │ │ ├── DirectedEdge.cpp │ │ │ │ │ │ ├── DirectedEdgeStar.cpp │ │ │ │ │ │ ├── Edge.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Node.cpp │ │ │ │ │ │ ├── NodeMap.cpp │ │ │ │ │ │ ├── PlanarGraph.cpp │ │ │ │ │ │ ├── Subgraph.cpp │ │ │ │ │ │ └── algorithm │ │ │ │ │ │ │ └── ConnectedSubgraphFinder.cpp │ │ │ │ │ ├── precision │ │ │ │ │ │ ├── CommonBits.cpp │ │ │ │ │ │ ├── CommonBitsOp.cpp │ │ │ │ │ │ ├── CommonBitsRemover.cpp │ │ │ │ │ │ ├── EnhancedPrecisionOp.cpp │ │ │ │ │ │ ├── GeometryPrecisionReducer.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── PrecisionReducerCoordinateOperation.cpp │ │ │ │ │ │ └── SimpleGeometryPrecisionReducer.cpp │ │ │ │ │ ├── simplify │ │ │ │ │ │ ├── DouglasPeuckerLineSimplifier.cpp │ │ │ │ │ │ ├── DouglasPeuckerSimplifier.cpp │ │ │ │ │ │ ├── LineSegmentIndex.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── TaggedLineSegment.cpp │ │ │ │ │ │ ├── TaggedLineString.cpp │ │ │ │ │ │ ├── TaggedLineStringSimplifier.cpp │ │ │ │ │ │ ├── TaggedLinesSimplifier.cpp │ │ │ │ │ │ └── TopologyPreservingSimplifier.cpp │ │ │ │ │ ├── triangulate │ │ │ │ │ │ ├── DelaunayTriangulationBuilder.cpp │ │ │ │ │ │ ├── IncrementalDelaunayTriangulator.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── quadedge │ │ │ │ │ │ │ ├── LastFoundQuadEdgeLocator.cpp │ │ │ │ │ │ │ ├── LocateFailureException.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── QuadEdge.cpp │ │ │ │ │ │ │ ├── QuadEdgeLocator.cpp │ │ │ │ │ │ │ ├── QuadEdgeSubdivision.cpp │ │ │ │ │ │ │ ├── TrianglePredicate.cpp │ │ │ │ │ │ │ ├── TriangleVisitor.cpp │ │ │ │ │ │ │ └── Vertex.cpp │ │ │ │ │ └── util │ │ │ │ │ │ ├── Assert.cpp │ │ │ │ │ │ ├── GeometricShapeFactory.cpp │ │ │ │ │ │ ├── Interrupt.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Profiler.cpp │ │ │ │ │ │ └── math.cpp │ │ │ │ ├── swig │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── geos.i │ │ │ │ │ ├── geos.i.in │ │ │ │ │ ├── python │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── geos.pth │ │ │ │ │ │ ├── geos.py │ │ │ │ │ │ ├── geos_wrap.cxx │ │ │ │ │ │ ├── python.i │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── example.py │ │ │ │ │ │ │ ├── runtests.py │ │ │ │ │ │ │ └── test_geometry.py │ │ │ │ │ └── ruby │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── geos_wrap.cxx │ │ │ │ │ │ ├── ruby.i │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── example.rb │ │ │ │ │ │ ├── geos_tests.rb │ │ │ │ │ │ ├── test_buffer.rb │ │ │ │ │ │ ├── test_combinations.rb │ │ │ │ │ │ ├── test_coordinate_sequence.rb │ │ │ │ │ │ ├── test_envelope.rb │ │ │ │ │ │ ├── test_geometry.rb │ │ │ │ │ │ ├── test_helper.rb │ │ │ │ │ │ ├── test_io.rb │ │ │ │ │ │ ├── test_operations.rb │ │ │ │ │ │ ├── test_relations.rb │ │ │ │ │ │ ├── test_srid.rb │ │ │ │ │ │ └── test_version.rb │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bigtest │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GeometryTestFactory.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── TestSweepLineSpeed.cpp │ │ │ │ │ │ ├── bigtest.h │ │ │ │ │ │ └── bug234.cpp │ │ │ │ │ ├── geostest │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── brokengrammar │ │ │ │ │ │ ├── geostest.c │ │ │ │ │ │ ├── test.expected │ │ │ │ │ │ ├── test.wkt │ │ │ │ │ │ └── testrunner.sh │ │ │ │ │ ├── perf │ │ │ │ │ │ ├── ClassSizes.cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── capi │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── memleak_mp_prep.c │ │ │ │ │ │ └── operation │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ ├── IteratedBufferStressTest.cpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ │ └── predicate │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── RectangleIntersectsPerfTest.cpp │ │ │ │ │ ├── thread │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── badthreadtest.c │ │ │ │ │ │ └── threadtest.c │ │ │ │ │ ├── unit │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── algorithm │ │ │ │ │ │ │ ├── AngleTest.cpp │ │ │ │ │ │ │ ├── CGAlgorithms │ │ │ │ │ │ │ │ ├── computeOrientationTest.cpp │ │ │ │ │ │ │ │ ├── isCCWTest.cpp │ │ │ │ │ │ │ │ ├── isPointInRingTest.cpp │ │ │ │ │ │ │ │ └── signedAreaTest.cpp │ │ │ │ │ │ │ ├── ConvexHullTest.cpp │ │ │ │ │ │ │ ├── InteriorPointAreaTest.cpp │ │ │ │ │ │ │ ├── PointLocatorTest.cpp │ │ │ │ │ │ │ ├── RobustLineIntersectionTest.cpp │ │ │ │ │ │ │ ├── RobustLineIntersectorTest.cpp │ │ │ │ │ │ │ └── distance │ │ │ │ │ │ │ │ └── DiscreteHausdorffDistanceTest.cpp │ │ │ │ │ │ ├── capi │ │ │ │ │ │ │ ├── GEOSBufferTest.cpp │ │ │ │ │ │ │ ├── GEOSContainsTest.cpp │ │ │ │ │ │ │ ├── GEOSConvexHullTest.cpp │ │ │ │ │ │ │ ├── GEOSCoordSeqTest.cpp │ │ │ │ │ │ │ ├── GEOSDelaunayTriangulationTest.cpp │ │ │ │ │ │ │ ├── GEOSDistanceTest.cpp │ │ │ │ │ │ │ ├── GEOSGeomFromWKBTest.cpp │ │ │ │ │ │ │ ├── GEOSGeomToWKTTest.cpp │ │ │ │ │ │ │ ├── GEOSGeom_create.cpp │ │ │ │ │ │ │ ├── GEOSGeom_extractUniquePointsTest.cpp │ │ │ │ │ │ │ ├── GEOSGetCentroidTest.cpp │ │ │ │ │ │ │ ├── GEOSInterruptTest.cpp │ │ │ │ │ │ │ ├── GEOSIntersectsTest.cpp │ │ │ │ │ │ │ ├── GEOSLineString_PointTest.cpp │ │ │ │ │ │ │ ├── GEOSNodeTest.cpp │ │ │ │ │ │ │ ├── GEOSOffsetCurveTest.cpp │ │ │ │ │ │ │ ├── GEOSOrientationIndex.cpp │ │ │ │ │ │ │ ├── GEOSPointOnSurfaceTest.cpp │ │ │ │ │ │ │ ├── GEOSPolygonizer_getCutEdgesTest.cpp │ │ │ │ │ │ │ ├── GEOSPreparedGeometryTest.cpp │ │ │ │ │ │ │ ├── GEOSRelateBoundaryNodeRuleTest.cpp │ │ │ │ │ │ │ ├── GEOSRelatePatternMatchTest.cpp │ │ │ │ │ │ │ ├── GEOSSharedPathsTest.cpp │ │ │ │ │ │ │ ├── GEOSSimplifyTest.cpp │ │ │ │ │ │ │ ├── GEOSSnapTest.cpp │ │ │ │ │ │ │ ├── GEOSUnaryUnionTest.cpp │ │ │ │ │ │ │ ├── GEOSWithinTest.cpp │ │ │ │ │ │ │ └── GEOSisValidDetailTest.cpp │ │ │ │ │ │ ├── geom │ │ │ │ │ │ │ ├── CoordinateArraySequenceFactoryTest.cpp │ │ │ │ │ │ │ ├── CoordinateArraySequenceTest.cpp │ │ │ │ │ │ │ ├── CoordinateListTest.cpp │ │ │ │ │ │ │ ├── CoordinateTest.cpp │ │ │ │ │ │ │ ├── DimensionTest.cpp │ │ │ │ │ │ │ ├── EnvelopeTest.cpp │ │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ │ │ ├── clone.cpp │ │ │ │ │ │ │ │ ├── coversTest.cpp │ │ │ │ │ │ │ │ └── isRectangleTest.cpp │ │ │ │ │ │ │ ├── GeometryFactoryTest.cpp │ │ │ │ │ │ │ ├── IntersectionMatrixTest.cpp │ │ │ │ │ │ │ ├── LineSegmentTest.cpp │ │ │ │ │ │ │ ├── LineStringTest.cpp │ │ │ │ │ │ │ ├── LinearRingTest.cpp │ │ │ │ │ │ │ ├── LocationTest.cpp │ │ │ │ │ │ │ ├── MultiLineStringTest.cpp │ │ │ │ │ │ │ ├── MultiPointTest.cpp │ │ │ │ │ │ │ ├── MultiPolygonTest.cpp │ │ │ │ │ │ │ ├── PointTest.cpp │ │ │ │ │ │ │ ├── PolygonTest.cpp │ │ │ │ │ │ │ ├── PrecisionModelTest.cpp │ │ │ │ │ │ │ ├── TriangleTest.cpp │ │ │ │ │ │ │ ├── prep │ │ │ │ │ │ │ │ └── PreparedGeometryFactoryTest.cpp │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── GeometryExtracterTest.cpp │ │ │ │ │ │ ├── geos_unit.cpp │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ └── quadtree │ │ │ │ │ │ │ │ └── DoubleBitsTest.cpp │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ ├── ByteOrderValuesTest.cpp │ │ │ │ │ │ │ ├── WKBReaderTest.cpp │ │ │ │ │ │ │ ├── WKBWriterTest.cpp │ │ │ │ │ │ │ ├── WKTReaderTest.cpp │ │ │ │ │ │ │ └── WKTWriterTest.cpp │ │ │ │ │ │ ├── linearref │ │ │ │ │ │ │ └── LengthIndexedLineTest.cpp │ │ │ │ │ │ ├── noding │ │ │ │ │ │ │ ├── BasicSegmentStringTest.cpp │ │ │ │ │ │ │ ├── NodedSegmentStringTest.cpp │ │ │ │ │ │ │ ├── OrientedCoordinateArray.cpp │ │ │ │ │ │ │ ├── SegmentNodeTest.cpp │ │ │ │ │ │ │ ├── SegmentPointComparatorTest.cpp │ │ │ │ │ │ │ └── snapround │ │ │ │ │ │ │ │ ├── HotPixelTest.cpp │ │ │ │ │ │ │ │ └── MCIndexSnapRounderTest.cpp │ │ │ │ │ │ ├── operation │ │ │ │ │ │ │ ├── IsSimpleOpTest.cpp │ │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ │ ├── BufferOpTest.cpp │ │ │ │ │ │ │ │ └── BufferParametersTest.cpp │ │ │ │ │ │ │ ├── distance │ │ │ │ │ │ │ │ └── DistanceOpTest.cpp │ │ │ │ │ │ │ ├── linemerge │ │ │ │ │ │ │ │ ├── LineMergerTest.cpp │ │ │ │ │ │ │ │ └── LineSequencerTest.cpp │ │ │ │ │ │ │ ├── overlay │ │ │ │ │ │ │ │ ├── snap │ │ │ │ │ │ │ │ │ ├── GeometrySnapperTest.cpp │ │ │ │ │ │ │ │ │ └── LineStringSnapperTest.cpp │ │ │ │ │ │ │ │ └── validate │ │ │ │ │ │ │ │ │ ├── FuzzyPointLocatorTest.cpp │ │ │ │ │ │ │ │ │ ├── OffsetPointGeneratorTest.cpp │ │ │ │ │ │ │ │ │ └── OverlayResultValidatorTest.cpp │ │ │ │ │ │ │ ├── polygonize │ │ │ │ │ │ │ │ └── PolygonizeTest.cpp │ │ │ │ │ │ │ ├── sharedpaths │ │ │ │ │ │ │ │ └── SharedPathsOpTest.cpp │ │ │ │ │ │ │ ├── union │ │ │ │ │ │ │ │ ├── CascadedPolygonUnionTest.cpp │ │ │ │ │ │ │ │ └── UnaryUnionOpTest.cpp │ │ │ │ │ │ │ └── valid │ │ │ │ │ │ │ │ ├── IsValidTest.cpp │ │ │ │ │ │ │ │ ├── ValidClosedRingTest.cpp │ │ │ │ │ │ │ │ └── ValidSelfTouchingRingFormingHoleTest.cpp │ │ │ │ │ │ ├── precision │ │ │ │ │ │ │ ├── GeometryPrecisionReducerTest.cpp │ │ │ │ │ │ │ └── SimpleGeometryPrecisionReducerTest.cpp │ │ │ │ │ │ ├── simplify │ │ │ │ │ │ │ ├── DouglasPeuckerSimplifierTest.cpp │ │ │ │ │ │ │ └── TopologyPreservingSimplifierTest.cpp │ │ │ │ │ │ ├── triangulate │ │ │ │ │ │ │ ├── DelaunayTest.cpp │ │ │ │ │ │ │ └── quadedge │ │ │ │ │ │ │ │ ├── QuadEdgeSubdivisionTest.cpp │ │ │ │ │ │ │ │ └── QuadEdgeTest.cpp │ │ │ │ │ │ ├── tut │ │ │ │ │ │ │ ├── tut.hpp │ │ │ │ │ │ │ ├── tut_assert.hpp │ │ │ │ │ │ │ ├── tut_console_reporter.hpp │ │ │ │ │ │ │ ├── tut_exception.hpp │ │ │ │ │ │ │ ├── tut_posix.hpp │ │ │ │ │ │ │ ├── tut_reporter.hpp │ │ │ │ │ │ │ ├── tut_restartable.hpp │ │ │ │ │ │ │ ├── tut_result.hpp │ │ │ │ │ │ │ └── tut_runner.hpp │ │ │ │ │ │ ├── util │ │ │ │ │ │ │ └── UniqueCoordinateArrayFilterTest.cpp │ │ │ │ │ │ └── utility.h │ │ │ │ │ └── xmltester │ │ │ │ │ │ ├── BufferResultMatcher.cpp │ │ │ │ │ │ ├── BufferResultMatcher.h │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── SimpleWKTTester.cpp │ │ │ │ │ │ ├── SingleSidedBufferResultMatcher.cpp │ │ │ │ │ │ ├── SingleSidedBufferResultMatcher.h │ │ │ │ │ │ ├── XMLTester.cpp │ │ │ │ │ │ ├── XMLTester.h │ │ │ │ │ │ ├── testrunner.sh │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── TestBufferExternal.xml │ │ │ │ │ │ ├── TestBufferExternal2.xml │ │ │ │ │ │ ├── TestIsValid.xml │ │ │ │ │ │ ├── badguy3.xml │ │ │ │ │ │ ├── buffer.xml │ │ │ │ │ │ ├── failure │ │ │ │ │ │ │ └── TestOverlay.xml │ │ │ │ │ │ ├── fme.xml │ │ │ │ │ │ ├── general │ │ │ │ │ │ │ ├── TestBoundary.xml │ │ │ │ │ │ │ ├── TestBuffer.xml │ │ │ │ │ │ │ ├── TestBufferMitredJoin.xml │ │ │ │ │ │ │ ├── TestCentroid.xml │ │ │ │ │ │ │ ├── TestConvexHull-big.xml │ │ │ │ │ │ │ ├── TestConvexHull.xml │ │ │ │ │ │ │ ├── TestDistance.xml │ │ │ │ │ │ │ ├── TestFunctionAA.xml │ │ │ │ │ │ │ ├── TestFunctionAAPrec.xml │ │ │ │ │ │ │ ├── TestFunctionLA.xml │ │ │ │ │ │ │ ├── TestFunctionLAPrec.xml │ │ │ │ │ │ │ ├── TestFunctionLL.xml │ │ │ │ │ │ │ ├── TestFunctionLLPrec.xml │ │ │ │ │ │ │ ├── TestFunctionPA.xml │ │ │ │ │ │ │ ├── TestFunctionPL.xml │ │ │ │ │ │ │ ├── TestFunctionPLPrec.xml │ │ │ │ │ │ │ ├── TestFunctionPP.xml │ │ │ │ │ │ │ ├── TestInteriorPoint.xml │ │ │ │ │ │ │ ├── TestRectanglePredicate.xml │ │ │ │ │ │ │ ├── TestRelateAA.xml │ │ │ │ │ │ │ ├── TestRelateAC.xml │ │ │ │ │ │ │ ├── TestRelateLA.xml │ │ │ │ │ │ │ ├── TestRelateLC.xml │ │ │ │ │ │ │ ├── TestRelateLL.xml │ │ │ │ │ │ │ ├── TestRelatePA.xml │ │ │ │ │ │ │ ├── TestRelatePL.xml │ │ │ │ │ │ │ ├── TestRelatePP.xml │ │ │ │ │ │ │ ├── TestSimple.xml │ │ │ │ │ │ │ ├── TestUnaryUnion.xml │ │ │ │ │ │ │ ├── TestUnaryUnionFloating.xml │ │ │ │ │ │ │ ├── TestValid.xml │ │ │ │ │ │ │ ├── TestValid2-big.xml │ │ │ │ │ │ │ ├── TestValid2.xml │ │ │ │ │ │ │ └── TestWithinDistance.xml │ │ │ │ │ │ ├── heisenbugs.xml │ │ │ │ │ │ ├── hexwkb.xml │ │ │ │ │ │ ├── hole_from_shell.xml │ │ │ │ │ │ ├── hole_red.xml │ │ │ │ │ │ ├── linemerge.xml │ │ │ │ │ │ ├── robust │ │ │ │ │ │ │ ├── TestRobustOverlayFixed.xml │ │ │ │ │ │ │ └── TestRobustRelate.xml │ │ │ │ │ │ ├── robustness.xml │ │ │ │ │ │ ├── safe │ │ │ │ │ │ │ ├── 16595.xml │ │ │ │ │ │ │ ├── 16596.xml │ │ │ │ │ │ │ └── TestBufferJagged.xml │ │ │ │ │ │ ├── singlesidedbuffer.xml │ │ │ │ │ │ ├── split.xml │ │ │ │ │ │ ├── stmlf │ │ │ │ │ │ │ ├── stmlf-cases-20061020-invalid-output.xml │ │ │ │ │ │ │ ├── stmlf-cases-20061020.xml │ │ │ │ │ │ │ └── stmlf-cases-20070119.xml │ │ │ │ │ │ ├── test.xml │ │ │ │ │ │ ├── testLeaksBig.xml │ │ │ │ │ │ └── ticket │ │ │ │ │ │ │ ├── bug176.xml │ │ │ │ │ │ │ ├── bug188.xml │ │ │ │ │ │ │ ├── bug244.xml │ │ │ │ │ │ │ ├── bug275.xml │ │ │ │ │ │ │ ├── bug350.xml │ │ │ │ │ │ │ ├── bug356.xml │ │ │ │ │ │ │ ├── bug358.xml │ │ │ │ │ │ │ ├── bug360.xml │ │ │ │ │ │ │ ├── bug366.xml │ │ │ │ │ │ │ ├── bug392.xml │ │ │ │ │ │ │ ├── bug398.xml │ │ │ │ │ │ │ ├── bug434.xml │ │ │ │ │ │ │ ├── bug488.xml │ │ │ │ │ │ │ ├── bug527.xml │ │ │ │ │ │ │ ├── bug586.xml │ │ │ │ │ │ │ ├── bug599.xml │ │ │ │ │ │ │ ├── bug605.xml │ │ │ │ │ │ │ └── bug615.xml │ │ │ │ │ │ └── tinyxml │ │ │ │ │ │ ├── tinystr.cpp │ │ │ │ │ │ ├── tinystr.h │ │ │ │ │ │ ├── tinyxml.cpp │ │ │ │ │ │ ├── tinyxml.h │ │ │ │ │ │ ├── tinyxmlerror.cpp │ │ │ │ │ │ └── tinyxmlparser.cpp │ │ │ │ └── tools │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── geos-config.in │ │ │ └── rename_files.sh │ │ ├── iconv │ │ │ ├── binding.gyp │ │ │ ├── config │ │ │ │ ├── linux │ │ │ │ │ ├── ia32 │ │ │ │ │ │ └── config.h │ │ │ │ │ └── x64 │ │ │ │ │ │ └── config.h │ │ │ │ ├── mac │ │ │ │ │ └── x64 │ │ │ │ │ │ └── config.h │ │ │ │ └── win │ │ │ │ │ ├── ia32 │ │ │ │ │ └── config.h │ │ │ │ │ └── x64 │ │ │ │ │ └── config.h │ │ │ ├── iconv.h │ │ │ └── iconv │ │ │ │ ├── ABOUT-NLS │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── ChangeLog │ │ │ │ ├── DEPENDENCIES │ │ │ │ ├── DESIGN │ │ │ │ ├── HACKING │ │ │ │ ├── INSTALL.generic │ │ │ │ ├── Makefile.devel │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── NOTES │ │ │ │ ├── PORTS │ │ │ │ ├── README │ │ │ │ ├── README.djgpp │ │ │ │ ├── README.woe32 │ │ │ │ ├── THANKS │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── build-aux │ │ │ │ ├── config.guess │ │ │ │ ├── config.libpath │ │ │ │ ├── config.rpath │ │ │ │ ├── config.sub │ │ │ │ ├── install-reloc │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── reloc-ldflags │ │ │ │ └── snippet │ │ │ │ │ ├── _Noreturn.h │ │ │ │ │ ├── arg-nonnull.h │ │ │ │ │ ├── c++defs.h │ │ │ │ │ └── warn-on-use.h │ │ │ │ ├── config.h.in │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── djgpp │ │ │ │ ├── Makefile.maint │ │ │ │ ├── README │ │ │ │ ├── README.in │ │ │ │ ├── config.bat │ │ │ │ ├── config.sed │ │ │ │ ├── config.site │ │ │ │ ├── edtest.bat │ │ │ │ ├── fnchange.in │ │ │ │ ├── fnchange.lst │ │ │ │ ├── makefile.sed │ │ │ │ ├── sources.sed │ │ │ │ ├── stateful-check.sed │ │ │ │ ├── stateless-check.sed │ │ │ │ └── translit-check.sed │ │ │ │ ├── doc │ │ │ │ └── relocatable.texi │ │ │ │ ├── extras │ │ │ │ ├── ChangeLog │ │ │ │ ├── iconv_string.c │ │ │ │ └── iconv_string.h │ │ │ │ ├── gnulib-local │ │ │ │ ├── lib │ │ │ │ │ ├── alloca.in.h │ │ │ │ │ ├── error.h.diff │ │ │ │ │ ├── progname.h.diff │ │ │ │ │ ├── xalloc.h │ │ │ │ │ ├── xmalloc.c │ │ │ │ │ └── xstrdup.c │ │ │ │ ├── m4 │ │ │ │ │ └── alloca.m4 │ │ │ │ └── modules │ │ │ │ │ ├── libiconv-misc │ │ │ │ │ ├── mbstate │ │ │ │ │ └── xalloc │ │ │ │ ├── include │ │ │ │ ├── export.h │ │ │ │ ├── iconv.h.build.in │ │ │ │ └── iconv.h.in │ │ │ │ ├── lib │ │ │ │ ├── Makefile.in │ │ │ │ ├── aliases.gperf │ │ │ │ ├── aliases.h │ │ │ │ ├── aliases2.h │ │ │ │ ├── aliases_aix.h │ │ │ │ ├── aliases_aix_sysaix.h │ │ │ │ ├── aliases_dos.h │ │ │ │ ├── aliases_extra.h │ │ │ │ ├── aliases_osf1.h │ │ │ │ ├── aliases_osf1_sysosf1.h │ │ │ │ ├── aliases_sysaix.gperf │ │ │ │ ├── aliases_sysaix.h │ │ │ │ ├── aliases_syshpux.gperf │ │ │ │ ├── aliases_syshpux.h │ │ │ │ ├── aliases_sysosf1.gperf │ │ │ │ ├── aliases_sysosf1.h │ │ │ │ ├── aliases_syssolaris.gperf │ │ │ │ ├── aliases_syssolaris.h │ │ │ │ ├── armscii_8.h │ │ │ │ ├── ascii.h │ │ │ │ ├── atarist.h │ │ │ │ ├── big5.h │ │ │ │ ├── big5_2003.h │ │ │ │ ├── big5hkscs1999.h │ │ │ │ ├── big5hkscs2001.h │ │ │ │ ├── big5hkscs2004.h │ │ │ │ ├── big5hkscs2008.h │ │ │ │ ├── c99.h │ │ │ │ ├── canonical.h │ │ │ │ ├── canonical_aix.h │ │ │ │ ├── canonical_aix_sysaix.h │ │ │ │ ├── canonical_dos.h │ │ │ │ ├── canonical_extra.h │ │ │ │ ├── canonical_local.h │ │ │ │ ├── canonical_local_sysaix.h │ │ │ │ ├── canonical_local_syshpux.h │ │ │ │ ├── canonical_local_sysosf1.h │ │ │ │ ├── canonical_local_syssolaris.h │ │ │ │ ├── canonical_osf1.h │ │ │ │ ├── canonical_osf1_sysosf1.h │ │ │ │ ├── canonical_sysaix.h │ │ │ │ ├── canonical_syshpux.h │ │ │ │ ├── canonical_sysosf1.h │ │ │ │ ├── canonical_syssolaris.h │ │ │ │ ├── ces_big5.h │ │ │ │ ├── ces_gbk.h │ │ │ │ ├── cjk_variants.h │ │ │ │ ├── cns11643.h │ │ │ │ ├── cns11643_1.h │ │ │ │ ├── cns11643_15.h │ │ │ │ ├── cns11643_2.h │ │ │ │ ├── cns11643_3.h │ │ │ │ ├── cns11643_4.h │ │ │ │ ├── cns11643_4a.h │ │ │ │ ├── cns11643_4b.h │ │ │ │ ├── cns11643_5.h │ │ │ │ ├── cns11643_6.h │ │ │ │ ├── cns11643_7.h │ │ │ │ ├── cns11643_inv.h │ │ │ │ ├── config.h.in │ │ │ │ ├── converters.h │ │ │ │ ├── cp1046.h │ │ │ │ ├── cp1124.h │ │ │ │ ├── cp1125.h │ │ │ │ ├── cp1129.h │ │ │ │ ├── cp1131.h │ │ │ │ ├── cp1133.h │ │ │ │ ├── cp1161.h │ │ │ │ ├── cp1162.h │ │ │ │ ├── cp1163.h │ │ │ │ ├── cp1250.h │ │ │ │ ├── cp1251.h │ │ │ │ ├── cp1252.h │ │ │ │ ├── cp1253.h │ │ │ │ ├── cp1254.h │ │ │ │ ├── cp1255.h │ │ │ │ ├── cp1256.h │ │ │ │ ├── cp1257.h │ │ │ │ ├── cp1258.h │ │ │ │ ├── cp437.h │ │ │ │ ├── cp737.h │ │ │ │ ├── cp775.h │ │ │ │ ├── cp850.h │ │ │ │ ├── cp852.h │ │ │ │ ├── cp853.h │ │ │ │ ├── cp855.h │ │ │ │ ├── cp856.h │ │ │ │ ├── cp857.h │ │ │ │ ├── cp858.h │ │ │ │ ├── cp860.h │ │ │ │ ├── cp861.h │ │ │ │ ├── cp862.h │ │ │ │ ├── cp863.h │ │ │ │ ├── cp864.h │ │ │ │ ├── cp865.h │ │ │ │ ├── cp866.h │ │ │ │ ├── cp869.h │ │ │ │ ├── cp874.h │ │ │ │ ├── cp922.h │ │ │ │ ├── cp932.h │ │ │ │ ├── cp932ext.h │ │ │ │ ├── cp936.h │ │ │ │ ├── cp936ext.h │ │ │ │ ├── cp943.h │ │ │ │ ├── cp949.h │ │ │ │ ├── cp950.h │ │ │ │ ├── cp950ext.h │ │ │ │ ├── dec_hanyu.h │ │ │ │ ├── dec_kanji.h │ │ │ │ ├── encodings.def │ │ │ │ ├── encodings_aix.def │ │ │ │ ├── encodings_dos.def │ │ │ │ ├── encodings_extra.def │ │ │ │ ├── encodings_local.def │ │ │ │ ├── encodings_osf1.def │ │ │ │ ├── euc_cn.h │ │ │ │ ├── euc_jisx0213.h │ │ │ │ ├── euc_jp.h │ │ │ │ ├── euc_kr.h │ │ │ │ ├── euc_tw.h │ │ │ │ ├── flags.h │ │ │ │ ├── flushwc.h │ │ │ │ ├── gb12345.h │ │ │ │ ├── gb12345ext.h │ │ │ │ ├── gb18030.h │ │ │ │ ├── gb18030ext.h │ │ │ │ ├── gb18030uni.h │ │ │ │ ├── gb2312.h │ │ │ │ ├── gbk.h │ │ │ │ ├── gbkext1.h │ │ │ │ ├── gbkext2.h │ │ │ │ ├── gbkext_inv.h │ │ │ │ ├── genaliases.c │ │ │ │ ├── genaliases2.c │ │ │ │ ├── genflags.c │ │ │ │ ├── gentranslit.c │ │ │ │ ├── georgian_academy.h │ │ │ │ ├── georgian_ps.h │ │ │ │ ├── hkscs1999.h │ │ │ │ ├── hkscs2001.h │ │ │ │ ├── hkscs2004.h │ │ │ │ ├── hkscs2008.h │ │ │ │ ├── hp_roman8.h │ │ │ │ ├── hz.h │ │ │ │ ├── iconv.c │ │ │ │ ├── iconv_open1.h │ │ │ │ ├── iconv_open2.h │ │ │ │ ├── iconv_relocatable.c │ │ │ │ ├── iso2022_cn.h │ │ │ │ ├── iso2022_cnext.h │ │ │ │ ├── iso2022_jp.h │ │ │ │ ├── iso2022_jp1.h │ │ │ │ ├── iso2022_jp2.h │ │ │ │ ├── iso2022_jp3.h │ │ │ │ ├── iso2022_kr.h │ │ │ │ ├── iso646_cn.h │ │ │ │ ├── iso646_jp.h │ │ │ │ ├── iso8859_1.h │ │ │ │ ├── iso8859_10.h │ │ │ │ ├── iso8859_11.h │ │ │ │ ├── iso8859_13.h │ │ │ │ ├── iso8859_14.h │ │ │ │ ├── iso8859_15.h │ │ │ │ ├── iso8859_16.h │ │ │ │ ├── iso8859_2.h │ │ │ │ ├── iso8859_3.h │ │ │ │ ├── iso8859_4.h │ │ │ │ ├── iso8859_5.h │ │ │ │ ├── iso8859_6.h │ │ │ │ ├── iso8859_7.h │ │ │ │ ├── iso8859_8.h │ │ │ │ ├── iso8859_9.h │ │ │ │ ├── isoir165.h │ │ │ │ ├── isoir165ext.h │ │ │ │ ├── java.h │ │ │ │ ├── jisx0201.h │ │ │ │ ├── jisx0208.h │ │ │ │ ├── jisx0212.h │ │ │ │ ├── jisx0213.h │ │ │ │ ├── johab.h │ │ │ │ ├── johab_hangul.h │ │ │ │ ├── koi8_r.h │ │ │ │ ├── koi8_ru.h │ │ │ │ ├── koi8_t.h │ │ │ │ ├── koi8_u.h │ │ │ │ ├── ksc5601.h │ │ │ │ ├── loop_unicode.h │ │ │ │ ├── loop_wchar.h │ │ │ │ ├── loops.h │ │ │ │ ├── mac_arabic.h │ │ │ │ ├── mac_centraleurope.h │ │ │ │ ├── mac_croatian.h │ │ │ │ ├── mac_cyrillic.h │ │ │ │ ├── mac_greek.h │ │ │ │ ├── mac_hebrew.h │ │ │ │ ├── mac_iceland.h │ │ │ │ ├── mac_roman.h │ │ │ │ ├── mac_romania.h │ │ │ │ ├── mac_thai.h │ │ │ │ ├── mac_turkish.h │ │ │ │ ├── mac_ukraine.h │ │ │ │ ├── mulelao.h │ │ │ │ ├── nextstep.h │ │ │ │ ├── pt154.h │ │ │ │ ├── relocatable.h │ │ │ │ ├── riscos1.h │ │ │ │ ├── rk1048.h │ │ │ │ ├── shift_jisx0213.h │ │ │ │ ├── sjis.h │ │ │ │ ├── tcvn.h │ │ │ │ ├── tds565.h │ │ │ │ ├── tis620.h │ │ │ │ ├── translit.def │ │ │ │ ├── translit.h │ │ │ │ ├── ucs2.h │ │ │ │ ├── ucs2be.h │ │ │ │ ├── ucs2internal.h │ │ │ │ ├── ucs2le.h │ │ │ │ ├── ucs2swapped.h │ │ │ │ ├── ucs4.h │ │ │ │ ├── ucs4be.h │ │ │ │ ├── ucs4internal.h │ │ │ │ ├── ucs4le.h │ │ │ │ ├── ucs4swapped.h │ │ │ │ ├── uhc_1.h │ │ │ │ ├── uhc_2.h │ │ │ │ ├── utf16.h │ │ │ │ ├── utf16be.h │ │ │ │ ├── utf16le.h │ │ │ │ ├── utf32.h │ │ │ │ ├── utf32be.h │ │ │ │ ├── utf32le.h │ │ │ │ ├── utf7.h │ │ │ │ ├── utf8.h │ │ │ │ ├── vietcomb.h │ │ │ │ └── viscii.h │ │ │ │ ├── libcharset │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── ChangeLog │ │ │ │ ├── DEPENDENCIES │ │ │ │ ├── HACKING │ │ │ │ ├── INSTALL.generic │ │ │ │ ├── INTEGRATE │ │ │ │ ├── Makefile.devel │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── README.djgpp │ │ │ │ ├── README.woe32 │ │ │ │ ├── autoconf │ │ │ │ │ └── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── build-aux │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.libpath │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ └── mkinstalldirs │ │ │ │ ├── config.h.in │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── djgpp │ │ │ │ │ ├── Makefile.maint │ │ │ │ │ ├── README │ │ │ │ │ ├── README.in │ │ │ │ │ ├── config.bat │ │ │ │ │ ├── config.sed │ │ │ │ │ ├── config.site │ │ │ │ │ ├── fnchange.in │ │ │ │ │ └── fnchange.lst │ │ │ │ ├── include │ │ │ │ │ ├── export.h │ │ │ │ │ ├── libcharset.h.in │ │ │ │ │ ├── localcharset.h.build.in │ │ │ │ │ └── localcharset.h.in │ │ │ │ ├── lib │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── config.charset │ │ │ │ │ ├── localcharset.c │ │ │ │ │ ├── localcharset_relocatable.c │ │ │ │ │ ├── ref-add.sin │ │ │ │ │ ├── ref-del.sin │ │ │ │ │ └── relocatable.h │ │ │ │ ├── m4 │ │ │ │ │ ├── codeset.m4 │ │ │ │ │ ├── fcntl-o.m4 │ │ │ │ │ ├── glibc21.m4 │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ │ ├── relocatable-lib.m4 │ │ │ │ │ └── visibility.m4 │ │ │ │ └── tools │ │ │ │ │ ├── README │ │ │ │ │ ├── aix-3.2.5 │ │ │ │ │ ├── aix-4.1.5 │ │ │ │ │ ├── aix-4.2.0 │ │ │ │ │ ├── aix-4.3.2 │ │ │ │ │ ├── all-charsets │ │ │ │ │ ├── all-charsets-X11 │ │ │ │ │ ├── all-locales │ │ │ │ │ ├── beos-5 │ │ │ │ │ ├── cygwin-1.7.2 │ │ │ │ │ ├── darwin-6.8 │ │ │ │ │ ├── darwin-7.5 │ │ │ │ │ ├── darwin-9.5 │ │ │ │ │ ├── freebsd-3.3 │ │ │ │ │ ├── glibc-2.1.3 │ │ │ │ │ ├── glibc-2.1.90 │ │ │ │ │ ├── glibc-2.2 │ │ │ │ │ ├── glibc-2.2-XF86-3.3.6 │ │ │ │ │ ├── glibc-2.2-XF86-4.0.1f │ │ │ │ │ ├── hpux-10.01 │ │ │ │ │ ├── hpux-10.20 │ │ │ │ │ ├── hpux-11.00 │ │ │ │ │ ├── irix-6.5 │ │ │ │ │ ├── locale_charmap │ │ │ │ │ ├── locale_charset.c │ │ │ │ │ ├── locale_codeset.c │ │ │ │ │ ├── locale_monthnames.c │ │ │ │ │ ├── locale_x11encoding.c │ │ │ │ │ ├── netbsd-3.0 │ │ │ │ │ ├── openbsd-4.1 │ │ │ │ │ ├── osf1-4.0a │ │ │ │ │ ├── osf1-4.0d │ │ │ │ │ ├── osf1-5.1 │ │ │ │ │ ├── solaris-2.4 │ │ │ │ │ ├── solaris-2.5.1 │ │ │ │ │ ├── solaris-2.6 │ │ │ │ │ ├── solaris-2.6-cjk │ │ │ │ │ ├── solaris-2.7 │ │ │ │ │ ├── sunos-4.1.4 │ │ │ │ │ └── win32 │ │ │ │ ├── m4 │ │ │ │ ├── cp.m4 │ │ │ │ ├── eilseq.m4 │ │ │ │ ├── endian.m4 │ │ │ │ ├── fcntl-o.m4 │ │ │ │ ├── general.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ln.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ └── proto.m4 │ │ │ │ ├── man │ │ │ │ ├── Makefile.in │ │ │ │ ├── iconv.1 │ │ │ │ ├── iconv.1.html │ │ │ │ ├── iconv.3 │ │ │ │ ├── iconv.3.html │ │ │ │ ├── iconv_close.3 │ │ │ │ ├── iconv_close.3.html │ │ │ │ ├── iconv_open.3 │ │ │ │ ├── iconv_open.3.html │ │ │ │ ├── iconv_open_into.3 │ │ │ │ ├── iconv_open_into.3.html │ │ │ │ ├── iconvctl.3 │ │ │ │ └── iconvctl.3.html │ │ │ │ ├── os2 │ │ │ │ └── iconv.def │ │ │ │ ├── po │ │ │ │ ├── ChangeLog │ │ │ │ ├── LINGUAS │ │ │ │ ├── Makefile.in.in │ │ │ │ ├── Makevars │ │ │ │ ├── POTFILES.in │ │ │ │ ├── Rules-quot │ │ │ │ ├── af.gmo │ │ │ │ ├── af.po │ │ │ │ ├── bg.gmo │ │ │ │ ├── bg.po │ │ │ │ ├── boldquot.sed │ │ │ │ ├── ca.gmo │ │ │ │ ├── ca.po │ │ │ │ ├── cs.gmo │ │ │ │ ├── cs.po │ │ │ │ ├── da.gmo │ │ │ │ ├── da.po │ │ │ │ ├── de.gmo │ │ │ │ ├── de.po │ │ │ │ ├── el.gmo │ │ │ │ ├── el.po │ │ │ │ ├── en@boldquot.header │ │ │ │ ├── en@quot.header │ │ │ │ ├── eo.gmo │ │ │ │ ├── eo.po │ │ │ │ ├── es.gmo │ │ │ │ ├── es.po │ │ │ │ ├── et.gmo │ │ │ │ ├── et.po │ │ │ │ ├── fi.gmo │ │ │ │ ├── fi.po │ │ │ │ ├── fr.gmo │ │ │ │ ├── fr.po │ │ │ │ ├── ga.gmo │ │ │ │ ├── ga.po │ │ │ │ ├── gl.gmo │ │ │ │ ├── gl.po │ │ │ │ ├── hr.gmo │ │ │ │ ├── hr.po │ │ │ │ ├── hu.gmo │ │ │ │ ├── hu.po │ │ │ │ ├── id.gmo │ │ │ │ ├── id.po │ │ │ │ ├── insert-header.sin │ │ │ │ ├── it.gmo │ │ │ │ ├── it.po │ │ │ │ ├── ja.gmo │ │ │ │ ├── ja.po │ │ │ │ ├── libiconv.pot │ │ │ │ ├── nl.gmo │ │ │ │ ├── nl.po │ │ │ │ ├── pl.gmo │ │ │ │ ├── pl.po │ │ │ │ ├── pt_BR.gmo │ │ │ │ ├── pt_BR.po │ │ │ │ ├── quot.sed │ │ │ │ ├── remove-potcdate.sin │ │ │ │ ├── rm.gmo │ │ │ │ ├── rm.po │ │ │ │ ├── ro.gmo │ │ │ │ ├── ro.po │ │ │ │ ├── ru.gmo │ │ │ │ ├── ru.po │ │ │ │ ├── sk.gmo │ │ │ │ ├── sk.po │ │ │ │ ├── sl.gmo │ │ │ │ ├── sl.po │ │ │ │ ├── sq.gmo │ │ │ │ ├── sq.po │ │ │ │ ├── sr.gmo │ │ │ │ ├── sr.po │ │ │ │ ├── stamp-po │ │ │ │ ├── sv.gmo │ │ │ │ ├── sv.po │ │ │ │ ├── tr.gmo │ │ │ │ ├── tr.po │ │ │ │ ├── uk.gmo │ │ │ │ ├── uk.po │ │ │ │ ├── vi.gmo │ │ │ │ ├── vi.po │ │ │ │ ├── wa.gmo │ │ │ │ ├── wa.po │ │ │ │ ├── zh_CN.gmo │ │ │ │ ├── zh_CN.po │ │ │ │ ├── zh_TW.gmo │ │ │ │ └── zh_TW.po │ │ │ │ ├── preload │ │ │ │ ├── Makefile.devel │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ └── configure.ac │ │ │ │ ├── src │ │ │ │ ├── Makefile.in │ │ │ │ ├── iconv.c │ │ │ │ └── iconv_no_i18n.c │ │ │ │ ├── srclib │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.gnulib │ │ │ │ ├── Makefile.in │ │ │ │ ├── alloca.in.h │ │ │ │ ├── allocator.c │ │ │ │ ├── allocator.h │ │ │ │ ├── areadlink.c │ │ │ │ ├── areadlink.h │ │ │ │ ├── binary-io.h │ │ │ │ ├── c-ctype.c │ │ │ │ ├── c-ctype.h │ │ │ │ ├── canonicalize-lgpl.c │ │ │ │ ├── careadlinkat.c │ │ │ │ ├── careadlinkat.h │ │ │ │ ├── dosname.h │ │ │ │ ├── errno.in.h │ │ │ │ ├── error.c │ │ │ │ ├── error.h │ │ │ │ ├── fcntl.in.h │ │ │ │ ├── gettext.h │ │ │ │ ├── intprops.h │ │ │ │ ├── localcharset.h │ │ │ │ ├── lstat.c │ │ │ │ ├── malloca.c │ │ │ │ ├── malloca.h │ │ │ │ ├── malloca.valgrind │ │ │ │ ├── memmove.c │ │ │ │ ├── pathmax.h │ │ │ │ ├── progname.c │ │ │ │ ├── progname.h │ │ │ │ ├── progreloc.c │ │ │ │ ├── read.c │ │ │ │ ├── readlink.c │ │ │ │ ├── relocatable.c │ │ │ │ ├── relocatable.h │ │ │ │ ├── relocwrapper.c │ │ │ │ ├── safe-read.c │ │ │ │ ├── safe-read.h │ │ │ │ ├── setenv.c │ │ │ │ ├── signal.in.h │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── stat.c │ │ │ │ ├── stdbool.in.h │ │ │ │ ├── stddef.in.h │ │ │ │ ├── stdint.in.h │ │ │ │ ├── stdio-write.c │ │ │ │ ├── stdio.in.h │ │ │ │ ├── stdlib.in.h │ │ │ │ ├── streq.h │ │ │ │ ├── strerror-override.c │ │ │ │ ├── strerror-override.h │ │ │ │ ├── strerror.c │ │ │ │ ├── string.in.h │ │ │ │ ├── sys_stat.in.h │ │ │ │ ├── time.in.h │ │ │ │ ├── unistd.in.h │ │ │ │ ├── unitypes.in.h │ │ │ │ ├── uniwidth.in.h │ │ │ │ ├── uniwidth │ │ │ │ │ ├── cjk.h │ │ │ │ │ └── width.c │ │ │ │ ├── unlocked-io.h │ │ │ │ ├── verify.h │ │ │ │ ├── xalloc.h │ │ │ │ ├── xmalloc.c │ │ │ │ ├── xreadlink.c │ │ │ │ ├── xreadlink.h │ │ │ │ └── xstrdup.c │ │ │ │ ├── srcm4 │ │ │ │ ├── 00gnulib.m4 │ │ │ │ ├── alloca.m4 │ │ │ │ ├── asm-underscore.m4 │ │ │ │ ├── canonicalize.m4 │ │ │ │ ├── codeset.m4 │ │ │ │ ├── double-slash-root.m4 │ │ │ │ ├── eealloc.m4 │ │ │ │ ├── environ.m4 │ │ │ │ ├── errno_h.m4 │ │ │ │ ├── error.m4 │ │ │ │ ├── extensions.m4 │ │ │ │ ├── fcntl-o.m4 │ │ │ │ ├── fcntl_h.m4 │ │ │ │ ├── gettext.m4 │ │ │ │ ├── glibc2.m4 │ │ │ │ ├── glibc21.m4 │ │ │ │ ├── gnulib-cache.m4 │ │ │ │ ├── gnulib-common.m4 │ │ │ │ ├── gnulib-comp.m4 │ │ │ │ ├── gnulib-tool.m4 │ │ │ │ ├── iconv.m4 │ │ │ │ ├── include_next.m4 │ │ │ │ ├── intdiv0.m4 │ │ │ │ ├── intl.m4 │ │ │ │ ├── intldir.m4 │ │ │ │ ├── intlmacosx.m4 │ │ │ │ ├── intmax.m4 │ │ │ │ ├── inttypes-pri.m4 │ │ │ │ ├── inttypes_h.m4 │ │ │ │ ├── largefile.m4 │ │ │ │ ├── lcmessage.m4 │ │ │ │ ├── lib-ld.m4 │ │ │ │ ├── lib-link.m4 │ │ │ │ ├── lib-prefix.m4 │ │ │ │ ├── libunistring-base.m4 │ │ │ │ ├── lock.m4 │ │ │ │ ├── longlong.m4 │ │ │ │ ├── lstat.m4 │ │ │ │ ├── malloca.m4 │ │ │ │ ├── mbstate_t.m4 │ │ │ │ ├── memmove.m4 │ │ │ │ ├── multiarch.m4 │ │ │ │ ├── nls.m4 │ │ │ │ ├── nocrash.m4 │ │ │ │ ├── pathmax.m4 │ │ │ │ ├── po.m4 │ │ │ │ ├── printf-posix.m4 │ │ │ │ ├── progtest.m4 │ │ │ │ ├── read.m4 │ │ │ │ ├── readlink.m4 │ │ │ │ ├── relocatable-lib.m4 │ │ │ │ ├── relocatable.m4 │ │ │ │ ├── safe-read.m4 │ │ │ │ ├── setenv.m4 │ │ │ │ ├── signal_h.m4 │ │ │ │ ├── signalblocking.m4 │ │ │ │ ├── sigpipe.m4 │ │ │ │ ├── size_max.m4 │ │ │ │ ├── ssize_t.m4 │ │ │ │ ├── stat.m4 │ │ │ │ ├── stdbool.m4 │ │ │ │ ├── stddef_h.m4 │ │ │ │ ├── stdint.m4 │ │ │ │ ├── stdint_h.m4 │ │ │ │ ├── stdio_h.m4 │ │ │ │ ├── stdlib_h.m4 │ │ │ │ ├── strerror.m4 │ │ │ │ ├── string_h.m4 │ │ │ │ ├── sys_socket_h.m4 │ │ │ │ ├── sys_stat_h.m4 │ │ │ │ ├── threadlib.m4 │ │ │ │ ├── time_h.m4 │ │ │ │ ├── uintmax_t.m4 │ │ │ │ ├── unistd_h.m4 │ │ │ │ ├── unlocked-io.m4 │ │ │ │ ├── visibility.m4 │ │ │ │ ├── warn-on-use.m4 │ │ │ │ ├── wchar_t.m4 │ │ │ │ ├── wint_t.m4 │ │ │ │ └── xsize.m4 │ │ │ │ ├── tests │ │ │ │ ├── ARMSCII-8.IRREVERSIBLE.TXT │ │ │ │ ├── ARMSCII-8.TXT │ │ │ │ ├── ASCII.TXT │ │ │ │ ├── ATARIST.TXT │ │ │ │ ├── BIG5-2003.IRREVERSIBLE.TXT │ │ │ │ ├── BIG5-2003.TXT │ │ │ │ ├── BIG5-HKSCS-1999-snippet │ │ │ │ ├── BIG5-HKSCS-1999-snippet.UTF-8 │ │ │ │ ├── BIG5-HKSCS-1999.IRREVERSIBLE.TXT │ │ │ │ ├── BIG5-HKSCS-1999.TXT │ │ │ │ ├── BIG5-HKSCS-2001-snippet │ │ │ │ ├── BIG5-HKSCS-2001-snippet.UTF-8 │ │ │ │ ├── BIG5-HKSCS-2001.IRREVERSIBLE.TXT │ │ │ │ ├── BIG5-HKSCS-2001.TXT │ │ │ │ ├── BIG5-HKSCS-2004-snippet │ │ │ │ ├── BIG5-HKSCS-2004-snippet.UTF-8 │ │ │ │ ├── BIG5-HKSCS-2004.IRREVERSIBLE.TXT │ │ │ │ ├── BIG5-HKSCS-2004.TXT │ │ │ │ ├── BIG5-HKSCS-2008-snippet │ │ │ │ ├── BIG5-HKSCS-2008-snippet.UTF-8 │ │ │ │ ├── BIG5-HKSCS-2008.IRREVERSIBLE.TXT │ │ │ │ ├── BIG5-HKSCS-2008.TXT │ │ │ │ ├── BIG5.TXT │ │ │ │ ├── CP1046.TXT │ │ │ │ ├── CP1124.TXT │ │ │ │ ├── CP1125.TXT │ │ │ │ ├── CP1129.TXT │ │ │ │ ├── CP1131.TXT │ │ │ │ ├── CP1133.TXT │ │ │ │ ├── CP1161.IRREVERSIBLE.TXT │ │ │ │ ├── CP1161.TXT │ │ │ │ ├── CP1162.TXT │ │ │ │ ├── CP1163.IRREVERSIBLE.TXT │ │ │ │ ├── CP1163.TXT │ │ │ │ ├── CP1250.TXT │ │ │ │ ├── CP1251.TXT │ │ │ │ ├── CP1252.TXT │ │ │ │ ├── CP1253.TXT │ │ │ │ ├── CP1254.TXT │ │ │ │ ├── CP1255-snippet │ │ │ │ ├── CP1255-snippet.UTF-8 │ │ │ │ ├── CP1255.IRREVERSIBLE.TXT │ │ │ │ ├── CP1255.TXT │ │ │ │ ├── CP1256.TXT │ │ │ │ ├── CP1257.TXT │ │ │ │ ├── CP1258-snippet │ │ │ │ ├── CP1258-snippet.UTF-8 │ │ │ │ ├── CP1258.IRREVERSIBLE.TXT │ │ │ │ ├── CP1258.TXT │ │ │ │ ├── CP437.TXT │ │ │ │ ├── CP737.TXT │ │ │ │ ├── CP775.TXT │ │ │ │ ├── CP850.TXT │ │ │ │ ├── CP852.TXT │ │ │ │ ├── CP853.TXT │ │ │ │ ├── CP855.TXT │ │ │ │ ├── CP856.TXT │ │ │ │ ├── CP857.TXT │ │ │ │ ├── CP858.TXT │ │ │ │ ├── CP860.TXT │ │ │ │ ├── CP861.TXT │ │ │ │ ├── CP862.TXT │ │ │ │ ├── CP863.TXT │ │ │ │ ├── CP864.TXT │ │ │ │ ├── CP865.TXT │ │ │ │ ├── CP866.TXT │ │ │ │ ├── CP869.TXT │ │ │ │ ├── CP874.TXT │ │ │ │ ├── CP922.TXT │ │ │ │ ├── CP932.IRREVERSIBLE.TXT │ │ │ │ ├── CP932.TXT │ │ │ │ ├── CP936.TXT │ │ │ │ ├── CP949.TXT │ │ │ │ ├── CP950.IRREVERSIBLE.TXT │ │ │ │ ├── CP950.TXT │ │ │ │ ├── DEC-HANYU.IRREVERSIBLE.TXT │ │ │ │ ├── DEC-HANYU.TXT │ │ │ │ ├── DEC-KANJI.TXT │ │ │ │ ├── EUC-CN.TXT │ │ │ │ ├── EUC-JISX0213.TXT │ │ │ │ ├── EUC-JP.IRREVERSIBLE.TXT │ │ │ │ ├── EUC-JP.TXT │ │ │ │ ├── EUC-KR.TXT │ │ │ │ ├── EUC-TW.IRREVERSIBLE.TXT │ │ │ │ ├── EUC-TW.TXT │ │ │ │ ├── GB18030-BMP.TXT │ │ │ │ ├── GB18030.IRREVERSIBLE.TXT │ │ │ │ ├── GBK.TXT │ │ │ │ ├── Georgian-Academy.TXT │ │ │ │ ├── Georgian-PS.TXT │ │ │ │ ├── HP-ROMAN8.TXT │ │ │ │ ├── HZ-snippet │ │ │ │ ├── HZ-snippet.UTF-8 │ │ │ │ ├── ISO-2022-CN-EXT-snippet │ │ │ │ ├── ISO-2022-CN-EXT-snippet.UTF-8 │ │ │ │ ├── ISO-2022-CN-snippet │ │ │ │ ├── ISO-2022-CN-snippet.UTF-8 │ │ │ │ ├── ISO-2022-JP-1-snippet │ │ │ │ ├── ISO-2022-JP-1-snippet.UTF-8 │ │ │ │ ├── ISO-2022-JP-2-snippet │ │ │ │ ├── ISO-2022-JP-2-snippet.UTF-8 │ │ │ │ ├── ISO-2022-JP-3-snippet │ │ │ │ ├── ISO-2022-JP-3-snippet.UTF-8 │ │ │ │ ├── ISO-2022-JP-snippet │ │ │ │ ├── ISO-2022-JP-snippet.UTF-8 │ │ │ │ ├── ISO-2022-KR-snippet │ │ │ │ ├── ISO-2022-KR-snippet.UTF-8 │ │ │ │ ├── ISO-8859-1.TXT │ │ │ │ ├── ISO-8859-10.TXT │ │ │ │ ├── ISO-8859-11.TXT │ │ │ │ ├── ISO-8859-13.TXT │ │ │ │ ├── ISO-8859-14.TXT │ │ │ │ ├── ISO-8859-15.TXT │ │ │ │ ├── ISO-8859-16.TXT │ │ │ │ ├── ISO-8859-2.TXT │ │ │ │ ├── ISO-8859-3.TXT │ │ │ │ ├── ISO-8859-4.TXT │ │ │ │ ├── ISO-8859-5.TXT │ │ │ │ ├── ISO-8859-6.TXT │ │ │ │ ├── ISO-8859-7.TXT │ │ │ │ ├── ISO-8859-8.TXT │ │ │ │ ├── ISO-8859-9.TXT │ │ │ │ ├── ISO-IR-165.IRREVERSIBLE.TXT │ │ │ │ ├── ISO-IR-165.TXT │ │ │ │ ├── ISO646-CN.TXT │ │ │ │ ├── ISO646-JP.TXT │ │ │ │ ├── JIS_X0201.TXT │ │ │ │ ├── JOHAB.TXT │ │ │ │ ├── KOI8-R.TXT │ │ │ │ ├── KOI8-RU.TXT │ │ │ │ ├── KOI8-T.TXT │ │ │ │ ├── KOI8-U.TXT │ │ │ │ ├── MacArabic.TXT │ │ │ │ ├── MacCentralEurope.TXT │ │ │ │ ├── MacCroatian.TXT │ │ │ │ ├── MacCyrillic.TXT │ │ │ │ ├── MacGreek.TXT │ │ │ │ ├── MacHebrew.TXT │ │ │ │ ├── MacIceland.TXT │ │ │ │ ├── MacRoman.TXT │ │ │ │ ├── MacRomania.TXT │ │ │ │ ├── MacThai.TXT │ │ │ │ ├── MacTurkish.TXT │ │ │ │ ├── MacUkraine.TXT │ │ │ │ ├── Makefile.in │ │ │ │ ├── MuleLao-1.TXT │ │ │ │ ├── NEXTSTEP.TXT │ │ │ │ ├── PT154.TXT │ │ │ │ ├── Quotes.ASCII │ │ │ │ ├── Quotes.ISO-8859-1 │ │ │ │ ├── Quotes.UTF-8 │ │ │ │ ├── RISCOS-LATIN1.TXT │ │ │ │ ├── RK1048.TXT │ │ │ │ ├── SHIFT_JIS.TXT │ │ │ │ ├── SHIFT_JISX0213.TXT │ │ │ │ ├── TCVN-snippet │ │ │ │ ├── TCVN-snippet.UTF-8 │ │ │ │ ├── TCVN.IRREVERSIBLE.TXT │ │ │ │ ├── TCVN.TXT │ │ │ │ ├── TDS565.TXT │ │ │ │ ├── TIS-620.TXT │ │ │ │ ├── Translit1.ASCII │ │ │ │ ├── Translit1.ISO-8859-1 │ │ │ │ ├── TranslitFail1.ISO-8859-1 │ │ │ │ ├── UCS-2BE-snippet │ │ │ │ ├── UCS-2BE-snippet.UTF-8 │ │ │ │ ├── UCS-2LE-snippet │ │ │ │ ├── UCS-2LE-snippet.UTF-8 │ │ │ │ ├── UCS-4BE-snippet │ │ │ │ ├── UCS-4BE-snippet.UTF-8 │ │ │ │ ├── UCS-4LE-snippet │ │ │ │ ├── UCS-4LE-snippet.UTF-8 │ │ │ │ ├── UTF-16-snippet │ │ │ │ ├── UTF-16-snippet.UTF-8 │ │ │ │ ├── UTF-16BE-snippet │ │ │ │ ├── UTF-16BE-snippet.UTF-8 │ │ │ │ ├── UTF-16LE-snippet │ │ │ │ ├── UTF-16LE-snippet.UTF-8 │ │ │ │ ├── UTF-32-snippet │ │ │ │ ├── UTF-32-snippet.UTF-8 │ │ │ │ ├── UTF-32BE-snippet │ │ │ │ ├── UTF-32BE-snippet.UTF-8 │ │ │ │ ├── UTF-32LE-snippet │ │ │ │ ├── UTF-32LE-snippet.UTF-8 │ │ │ │ ├── UTF-7-snippet │ │ │ │ ├── UTF-7-snippet.UTF-8 │ │ │ │ ├── VISCII.TXT │ │ │ │ ├── check-stateful │ │ │ │ ├── check-stateful.bat │ │ │ │ ├── check-stateless │ │ │ │ ├── check-stateless.bat │ │ │ │ ├── check-subst │ │ │ │ ├── check-translit │ │ │ │ ├── check-translit.bat │ │ │ │ ├── check-translitfailure │ │ │ │ ├── gengb18030z.c │ │ │ │ ├── genutf8.c │ │ │ │ ├── table-from.c │ │ │ │ ├── table-to.c │ │ │ │ ├── test-shiftseq.c │ │ │ │ ├── test-to-wchar.c │ │ │ │ └── uniq-u.c │ │ │ │ ├── tools │ │ │ │ ├── 8bit_tab_to_h.c │ │ │ │ ├── JISX0213.TXT │ │ │ │ ├── Makefile │ │ │ │ ├── cjk_tab_to_h.c │ │ │ │ └── cjk_variants.c │ │ │ │ ├── windows │ │ │ │ ├── iconv.rc │ │ │ │ ├── libiconv.rc │ │ │ │ └── windres-options │ │ │ │ └── woe32dll │ │ │ │ ├── export.h │ │ │ │ └── iconv-exports.c │ │ └── proj │ │ │ ├── binding.gyp │ │ │ ├── config │ │ │ ├── linux │ │ │ │ ├── ia32 │ │ │ │ │ └── proj_config.h │ │ │ │ └── x64 │ │ │ │ │ └── proj_config.h │ │ │ └── proj_config.h │ │ │ └── proj │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── jniwrap │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── build.xml │ │ │ ├── doxygen.cfg │ │ │ └── org │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── proj4 │ │ │ │ ├── LatLong.java │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Others.java │ │ │ │ ├── PJ.java │ │ │ │ ├── PJException.java │ │ │ │ ├── Proj4.java │ │ │ │ ├── Proj4Factory.java │ │ │ │ ├── ProjectionData.java │ │ │ │ ├── Projections.java │ │ │ │ └── package-info.java │ │ │ ├── ltconfig │ │ │ ├── ltmain.sh │ │ │ ├── makefile.vc │ │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── man1 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cs2cs.1 │ │ │ │ ├── geod.1 │ │ │ │ └── proj.1 │ │ │ └── man3 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── pj_init.3 │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ ├── nad │ │ │ ├── CH │ │ │ ├── GL27 │ │ │ ├── IGNF │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── epsg │ │ │ ├── esri │ │ │ ├── esri.extra │ │ │ ├── makefile.vc │ │ │ ├── nad.lst │ │ │ ├── nad27 │ │ │ ├── nad83 │ │ │ ├── ntv2_out.dist │ │ │ ├── other.extra │ │ │ ├── pj_out27.dist │ │ │ ├── pj_out83.dist │ │ │ ├── proj_def.dat │ │ │ ├── proj_outIGNF.dist │ │ │ ├── td_out.dist │ │ │ ├── test27 │ │ │ ├── test83 │ │ │ ├── testIGNF │ │ │ ├── testdatumfile │ │ │ ├── testntv2 │ │ │ ├── testvarious │ │ │ ├── tv_out.dist │ │ │ └── world │ │ │ ├── nmake.opt │ │ │ ├── proj.pc.in │ │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PJ_aea.c │ │ │ ├── PJ_aeqd.c │ │ │ ├── PJ_airy.c │ │ │ ├── PJ_aitoff.c │ │ │ ├── PJ_august.c │ │ │ ├── PJ_bacon.c │ │ │ ├── PJ_bipc.c │ │ │ ├── PJ_boggs.c │ │ │ ├── PJ_bonne.c │ │ │ ├── PJ_cass.c │ │ │ ├── PJ_cc.c │ │ │ ├── PJ_cea.c │ │ │ ├── PJ_chamb.c │ │ │ ├── PJ_collg.c │ │ │ ├── PJ_crast.c │ │ │ ├── PJ_denoy.c │ │ │ ├── PJ_eck1.c │ │ │ ├── PJ_eck2.c │ │ │ ├── PJ_eck3.c │ │ │ ├── PJ_eck4.c │ │ │ ├── PJ_eck5.c │ │ │ ├── PJ_eqc.c │ │ │ ├── PJ_eqdc.c │ │ │ ├── PJ_fahey.c │ │ │ ├── PJ_fouc_s.c │ │ │ ├── PJ_gall.c │ │ │ ├── PJ_geos.c │ │ │ ├── PJ_gins8.c │ │ │ ├── PJ_gn_sinu.c │ │ │ ├── PJ_gnom.c │ │ │ ├── PJ_goode.c │ │ │ ├── PJ_gstmerc.c │ │ │ ├── PJ_hammer.c │ │ │ ├── PJ_hatano.c │ │ │ ├── PJ_healpix.c │ │ │ ├── PJ_igh.c │ │ │ ├── PJ_imw_p.c │ │ │ ├── PJ_isea.c │ │ │ ├── PJ_krovak.c │ │ │ ├── PJ_labrd.c │ │ │ ├── PJ_laea.c │ │ │ ├── PJ_lagrng.c │ │ │ ├── PJ_larr.c │ │ │ ├── PJ_lask.c │ │ │ ├── PJ_lcc.c │ │ │ ├── PJ_lcca.c │ │ │ ├── PJ_loxim.c │ │ │ ├── PJ_lsat.c │ │ │ ├── PJ_mbt_fps.c │ │ │ ├── PJ_mbtfpp.c │ │ │ ├── PJ_mbtfpq.c │ │ │ ├── PJ_merc.c │ │ │ ├── PJ_mill.c │ │ │ ├── PJ_mod_ster.c │ │ │ ├── PJ_moll.c │ │ │ ├── PJ_natearth.c │ │ │ ├── PJ_nell.c │ │ │ ├── PJ_nell_h.c │ │ │ ├── PJ_nocol.c │ │ │ ├── PJ_nsper.c │ │ │ ├── PJ_nzmg.c │ │ │ ├── PJ_ob_tran.c │ │ │ ├── PJ_ocea.c │ │ │ ├── PJ_oea.c │ │ │ ├── PJ_omerc.c │ │ │ ├── PJ_ortho.c │ │ │ ├── PJ_poly.c │ │ │ ├── PJ_putp2.c │ │ │ ├── PJ_putp3.c │ │ │ ├── PJ_putp4p.c │ │ │ ├── PJ_putp5.c │ │ │ ├── PJ_putp6.c │ │ │ ├── PJ_robin.c │ │ │ ├── PJ_rpoly.c │ │ │ ├── PJ_sconics.c │ │ │ ├── PJ_somerc.c │ │ │ ├── PJ_stere.c │ │ │ ├── PJ_sterea.c │ │ │ ├── PJ_sts.c │ │ │ ├── PJ_tcc.c │ │ │ ├── PJ_tcea.c │ │ │ ├── PJ_tmerc.c │ │ │ ├── PJ_tpeqd.c │ │ │ ├── PJ_urm5.c │ │ │ ├── PJ_urmfps.c │ │ │ ├── PJ_vandg.c │ │ │ ├── PJ_vandg2.c │ │ │ ├── PJ_vandg4.c │ │ │ ├── PJ_wag2.c │ │ │ ├── PJ_wag3.c │ │ │ ├── PJ_wag7.c │ │ │ ├── PJ_wink1.c │ │ │ ├── PJ_wink2.c │ │ │ ├── aasincos.c │ │ │ ├── adjlon.c │ │ │ ├── bch2bps.c │ │ │ ├── bchgen.c │ │ │ ├── biveval.c │ │ │ ├── cs2cs.c │ │ │ ├── dmstor.c │ │ │ ├── emess.c │ │ │ ├── emess.h │ │ │ ├── gen_cheb.c │ │ │ ├── geocent.c │ │ │ ├── geocent.h │ │ │ ├── geod.c │ │ │ ├── geod_for.c │ │ │ ├── geod_inv.c │ │ │ ├── geod_set.c │ │ │ ├── geodesic.h │ │ │ ├── jniproj.c │ │ │ ├── makefile.vc │ │ │ ├── mk_cheby.c │ │ │ ├── multistresstest.c │ │ │ ├── nad2bin.c │ │ │ ├── nad_cvt.c │ │ │ ├── nad_init.c │ │ │ ├── nad_intr.c │ │ │ ├── org_proj4_Projections.h │ │ │ ├── p_series.c │ │ │ ├── pj_apply_gridshift.c │ │ │ ├── pj_apply_vgridshift.c │ │ │ ├── pj_auth.c │ │ │ ├── pj_ctx.c │ │ │ ├── pj_datum_set.c │ │ │ ├── pj_datums.c │ │ │ ├── pj_deriv.c │ │ │ ├── pj_ell_set.c │ │ │ ├── pj_ellps.c │ │ │ ├── pj_errno.c │ │ │ ├── pj_factors.c │ │ │ ├── pj_fwd.c │ │ │ ├── pj_gauss.c │ │ │ ├── pj_geocent.c │ │ │ ├── pj_gridinfo.c │ │ │ ├── pj_gridlist.c │ │ │ ├── pj_init.c │ │ │ ├── pj_initcache.c │ │ │ ├── pj_inv.c │ │ │ ├── pj_latlong.c │ │ │ ├── pj_list.c │ │ │ ├── pj_list.h │ │ │ ├── pj_log.c │ │ │ ├── pj_malloc.c │ │ │ ├── pj_mlfn.c │ │ │ ├── pj_msfn.c │ │ │ ├── pj_mutex.c │ │ │ ├── pj_open_lib.c │ │ │ ├── pj_param.c │ │ │ ├── pj_phi2.c │ │ │ ├── pj_pr_list.c │ │ │ ├── pj_qsfn.c │ │ │ ├── pj_release.c │ │ │ ├── pj_strerrno.c │ │ │ ├── pj_transform.c │ │ │ ├── pj_tsfn.c │ │ │ ├── pj_units.c │ │ │ ├── pj_utils.c │ │ │ ├── pj_zpoly1.c │ │ │ ├── proj.c │ │ │ ├── proj.def │ │ │ ├── proj_api.h │ │ │ ├── proj_config.h.in │ │ │ ├── proj_etmerc.c │ │ │ ├── proj_mdist.c │ │ │ ├── proj_rouss.c │ │ │ ├── projects.h │ │ │ ├── rtodms.c │ │ │ └── vector1.c │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── demo1.c │ │ ├── demo2.c │ │ ├── demo3.c │ │ ├── demo4.c │ │ ├── demo5.c │ │ └── examples.doxy │ ├── geos │ │ └── geos.target.mk │ ├── install-sh │ ├── ltmain.sh │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── mainpage.doxy │ ├── makefile.vc │ ├── missing │ ├── nmake.opt │ ├── spatialite-sql-latest.html │ ├── spatialite.pc.in │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── gaiaaux │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gg_sqlaux.c │ │ │ └── gg_utf8.c │ │ ├── gaiaexif │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── gaia_exif.c │ │ ├── gaiageo │ │ │ ├── Ewkt.c │ │ │ ├── Ewkt.h │ │ │ ├── Gml.c │ │ │ ├── Gml.h │ │ │ ├── Kml.c │ │ │ ├── Kml.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── flex │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── ewktLexer.l │ │ │ │ ├── geoJsonLexer.l │ │ │ │ ├── gmlLexer.l │ │ │ │ ├── kmlLexer.l │ │ │ │ └── vanuatuLexer.l │ │ │ ├── geoJSON.c │ │ │ ├── geoJSON.h │ │ │ ├── gg_advanced.c │ │ │ ├── gg_endian.c │ │ │ ├── gg_ewkt.c │ │ │ ├── gg_extras.c │ │ │ ├── gg_geoJSON.c │ │ │ ├── gg_geodesic.c │ │ │ ├── gg_geometries.c │ │ │ ├── gg_geoscvt.c │ │ │ ├── gg_gml.c │ │ │ ├── gg_kml.c │ │ │ ├── gg_lwgeom.c │ │ │ ├── gg_relations.c │ │ │ ├── gg_shape.c │ │ │ ├── gg_transform.c │ │ │ ├── gg_vanuatu.c │ │ │ ├── gg_voronoj.c │ │ │ ├── gg_wkb.c │ │ │ ├── gg_wkt.c │ │ │ ├── lemon │ │ │ │ ├── Ewkt.y │ │ │ │ ├── Gml.y │ │ │ │ ├── Kml.y │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── geoJSON.y │ │ │ │ ├── lemon_src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── lemon.c │ │ │ │ │ └── lempar.c │ │ │ │ └── vanuatuWkt.y │ │ │ ├── lex.Ewkt.c │ │ │ ├── lex.GeoJson.c │ │ │ ├── lex.Gml.c │ │ │ ├── lex.Kml.c │ │ │ ├── lex.VanuatuWkt.c │ │ │ ├── vanuatuWkt.c │ │ │ └── vanuatuWkt.h │ │ ├── headers │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── spatialite.h │ │ │ ├── spatialite │ │ │ │ ├── debug.h │ │ │ │ ├── gaiaaux.h │ │ │ │ ├── gaiaexif.h │ │ │ │ ├── gaiageo.h │ │ │ │ ├── gg_advanced.h │ │ │ │ ├── gg_const.h │ │ │ │ ├── gg_core.h │ │ │ │ ├── gg_dynamic.h │ │ │ │ ├── gg_formats.h │ │ │ │ ├── gg_mbr.h │ │ │ │ ├── gg_structs.h │ │ │ │ ├── spatialite.h │ │ │ │ └── sqlite.h │ │ │ └── spatialite_private.h │ │ ├── shapefiles │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── shapefiles.c │ │ ├── spatialite │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── mbrcache.c │ │ │ ├── metatables.c │ │ │ ├── spatialite.c │ │ │ ├── statistics.c │ │ │ ├── virtualXL.c │ │ │ ├── virtualdbf.c │ │ │ ├── virtualfdo.c │ │ │ ├── virtualnetwork.c │ │ │ ├── virtualshape.c │ │ │ └── virtualspatialindex.c │ │ ├── srsinit │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── epsg_inlined_00.c │ │ │ ├── epsg_inlined_01.c │ │ │ ├── epsg_inlined_02.c │ │ │ ├── epsg_inlined_03.c │ │ │ ├── epsg_inlined_04.c │ │ │ ├── epsg_inlined_05.c │ │ │ ├── epsg_inlined_06.c │ │ │ ├── epsg_inlined_07.c │ │ │ ├── epsg_inlined_08.c │ │ │ ├── epsg_inlined_09.c │ │ │ ├── epsg_inlined_10.c │ │ │ ├── epsg_inlined_11.c │ │ │ ├── epsg_inlined_12.c │ │ │ ├── epsg_inlined_13.c │ │ │ ├── epsg_inlined_14.c │ │ │ ├── epsg_inlined_15.c │ │ │ ├── epsg_inlined_16.c │ │ │ ├── epsg_inlined_17.c │ │ │ ├── epsg_inlined_18.c │ │ │ ├── epsg_inlined_19.c │ │ │ ├── epsg_inlined_20.c │ │ │ ├── epsg_inlined_21.c │ │ │ ├── epsg_inlined_22.c │ │ │ ├── epsg_inlined_23.c │ │ │ ├── epsg_inlined_24.c │ │ │ ├── epsg_inlined_25.c │ │ │ ├── epsg_inlined_26.c │ │ │ ├── epsg_inlined_27.c │ │ │ ├── epsg_inlined_28.c │ │ │ ├── epsg_inlined_29.c │ │ │ ├── epsg_inlined_30.c │ │ │ ├── epsg_inlined_31.c │ │ │ ├── epsg_inlined_32.c │ │ │ ├── epsg_inlined_33.c │ │ │ ├── epsg_inlined_34.c │ │ │ ├── epsg_inlined_35.c │ │ │ ├── epsg_inlined_36.c │ │ │ ├── epsg_inlined_37.c │ │ │ ├── epsg_inlined_38.c │ │ │ ├── epsg_inlined_39.c │ │ │ ├── epsg_inlined_40.c │ │ │ ├── epsg_inlined_extra.c │ │ │ ├── epsg_inlined_prussian.c │ │ │ ├── epsg_inlined_wgs84_00.c │ │ │ ├── epsg_inlined_wgs84_01.c │ │ │ ├── epsg_update │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.txt │ │ │ │ └── auto_epsg.c │ │ │ └── srs_init.c │ │ ├── versioninfo │ │ │ └── version.c │ │ └── virtualtext │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── virtualtext.c │ └── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── WritingSQLTestCase.txt │ │ ├── asprintf4win.h │ │ ├── check_bufovflw.c │ │ ├── check_create.c │ │ ├── check_dbf_load.c │ │ ├── check_endian.c │ │ ├── check_exif.c │ │ ├── check_extension.c │ │ ├── check_extra_relations_fncts.c │ │ ├── check_fdo1.c │ │ ├── check_fdo2.c │ │ ├── check_fdo3.c │ │ ├── check_fdo_bufovflw.c │ │ ├── check_gaia_utf8.c │ │ ├── check_gaia_util.c │ │ ├── check_geom_aux.c │ │ ├── check_geometry_cols.c │ │ ├── check_geoscvt_fncts.c │ │ ├── check_init.c │ │ ├── check_init2.c │ │ ├── check_math_funcs.c │ │ ├── check_mbrcache.c │ │ ├── check_recover_geom.c │ │ ├── check_relations_fncts.c │ │ ├── check_shp_load.c │ │ ├── check_shp_load_3d.c │ │ ├── check_spatialindex.c │ │ ├── check_sql_stmt.c │ │ ├── check_version.c │ │ ├── check_virtual_ovflw.c │ │ ├── check_virtualtable1.c │ │ ├── check_virtualtable2.c │ │ ├── check_virtualtable3.c │ │ ├── check_virtualtable4.c │ │ ├── check_virtualtable5.c │ │ ├── check_virtualtable6.c │ │ ├── check_xls_load.c │ │ ├── fnmatch4win.h │ │ ├── fnmatch_impl4win.h │ │ ├── scandir4win.h │ │ ├── shape_3d.c │ │ ├── shape_cp1252.c │ │ ├── shape_primitives.c │ │ ├── shape_utf8_1.c │ │ ├── shape_utf8_1ex.c │ │ ├── shape_utf8_2.c │ │ ├── shapetest1.dbf │ │ ├── shapetest1.prj │ │ ├── shapetest1.qpj │ │ ├── shapetest1.shp │ │ ├── shapetest1.shx │ │ ├── shp │ │ ├── foggia │ │ │ ├── local_councils.dbf │ │ │ ├── local_councils.prj │ │ │ ├── local_councils.shp │ │ │ └── local_councils.shx │ │ ├── gaza │ │ │ ├── aeroway.dbf │ │ │ ├── aeroway.prj │ │ │ ├── aeroway.shp │ │ │ ├── aeroway.shx │ │ │ ├── barrier.dbf │ │ │ ├── barrier.prj │ │ │ ├── barrier.shp │ │ │ ├── barrier.shx │ │ │ ├── route.dbf │ │ │ ├── route.prj │ │ │ ├── route.shp │ │ │ └── route.shx │ │ ├── merano-3d │ │ │ ├── points.dbf │ │ │ ├── points.prj │ │ │ ├── points.shp │ │ │ ├── points.shx │ │ │ ├── polygons.dbf │ │ │ ├── polygons.prj │ │ │ ├── polygons.shp │ │ │ ├── polygons.shx │ │ │ ├── roads.dbf │ │ │ ├── roads.prj │ │ │ ├── roads.shp │ │ │ └── roads.shx │ │ ├── new-caledonia │ │ │ ├── buildings.dbf │ │ │ ├── buildings.prj │ │ │ ├── buildings.shp │ │ │ ├── buildings.shx │ │ │ ├── points.dbf │ │ │ ├── points.prj │ │ │ ├── points.shp │ │ │ ├── points.shx │ │ │ ├── railways.dbf │ │ │ ├── railways.shp │ │ │ └── railways.shx │ │ └── taiwan │ │ │ ├── hystoric.dbf │ │ │ ├── hystoric.prj │ │ │ ├── hystoric.shp │ │ │ ├── hystoric.shx │ │ │ ├── leisure.dbf │ │ │ ├── leisure.prj │ │ │ ├── leisure.shp │ │ │ ├── leisure.shx │ │ │ ├── route.dbf │ │ │ ├── route.prj │ │ │ ├── route.shp │ │ │ └── route.shx │ │ ├── sql_stmt_geos_tests │ │ ├── bdmpolyfromtext1.testcase │ │ ├── bdmpolyfromtext10.testcase │ │ ├── bdmpolyfromtext13.testcase │ │ ├── bdmpolyfromtext14.testcase │ │ ├── bdmpolyfromtext15.testcase │ │ ├── bdmpolyfromtext16.testcase │ │ ├── bdmpolyfromtext17.testcase │ │ ├── bdmpolyfromtext2.testcase │ │ ├── bdmpolyfromtext3.testcase │ │ ├── bdmpolyfromtext4.testcase │ │ ├── bdmpolyfromtext9.testcase │ │ ├── bdmpolyfromwkb1.testcase │ │ ├── bdmpolyfromwkb10.testcase │ │ ├── bdmpolyfromwkb11.testcase │ │ ├── bdmpolyfromwkb12.testcase │ │ ├── bdmpolyfromwkb13.testcase │ │ ├── bdmpolyfromwkb14.testcase │ │ ├── bdmpolyfromwkb15.testcase │ │ ├── bdmpolyfromwkb16.testcase │ │ ├── bdmpolyfromwkb17.testcase │ │ ├── bdmpolyfromwkb18.testcase │ │ ├── bdmpolyfromwkb19.testcase │ │ ├── bdmpolyfromwkb2.testcase │ │ ├── bdmpolyfromwkb3.testcase │ │ ├── bdmpolyfromwkb4.testcase │ │ ├── bdmpolyfromwkb5.testcase │ │ ├── bdmpolyfromwkb6.testcase │ │ ├── bdmpolyfromwkb7.testcase │ │ ├── bdmpolyfromwkb8.testcase │ │ ├── bdmpolyfromwkb9.testcase │ │ ├── bdpolyfromtext1.testcase │ │ ├── bdpolyfromtext10.testcase │ │ ├── bdpolyfromtext11.testcase │ │ ├── bdpolyfromtext12.testcase │ │ ├── bdpolyfromtext13.testcase │ │ ├── bdpolyfromtext14.testcase │ │ ├── bdpolyfromtext15.testcase │ │ ├── bdpolyfromtext16.testcase │ │ ├── bdpolyfromtext2.testcase │ │ ├── bdpolyfromtext3.testcase │ │ ├── bdpolyfromtext4.testcase │ │ ├── bdpolyfromtext5.testcase │ │ ├── bdpolyfromtext6.testcase │ │ ├── bdpolyfromtext7.testcase │ │ ├── bdpolyfromtext8.testcase │ │ ├── bdpolyfromtext9.testcase │ │ ├── bdpolyfromwkb1.testcase │ │ ├── bdpolyfromwkb10.testcase │ │ ├── bdpolyfromwkb11.testcase │ │ ├── bdpolyfromwkb12.testcase │ │ ├── bdpolyfromwkb13.testcase │ │ ├── bdpolyfromwkb14.testcase │ │ ├── bdpolyfromwkb15.testcase │ │ ├── bdpolyfromwkb16.testcase │ │ ├── bdpolyfromwkb17.testcase │ │ ├── bdpolyfromwkb18.testcase │ │ ├── bdpolyfromwkb19.testcase │ │ ├── bdpolyfromwkb2.testcase │ │ ├── bdpolyfromwkb3.testcase │ │ ├── bdpolyfromwkb4.testcase │ │ ├── bdpolyfromwkb5.testcase │ │ ├── bdpolyfromwkb6.testcase │ │ ├── bdpolyfromwkb7.testcase │ │ ├── bdpolyfromwkb8.testcase │ │ ├── bdpolyfromwkb9.testcase │ │ ├── boundary1.testcase │ │ ├── boundary2.testcase │ │ ├── boundary3.testcase │ │ ├── boundary4.testcase │ │ ├── boundary5.testcase │ │ ├── boundary6.testcase │ │ ├── boundary7.testcase │ │ ├── boundary8.testcase │ │ ├── boundary9.testcase │ │ ├── buffer1.testcase │ │ ├── buffer10.testcase │ │ ├── buffer2.testcase │ │ ├── buffer3.testcase │ │ ├── buffer4.testcase │ │ ├── buffer5.testcase │ │ ├── buffer6.testcase │ │ ├── buffer7.testcase │ │ ├── buffer8.testcase │ │ ├── buffer9.testcase │ │ ├── buildarea1.testcase │ │ ├── buildarea2.testcase │ │ ├── buildarea3.testcase │ │ ├── buildarea4.testcase │ │ ├── buildarea5.testcase │ │ ├── buildarea6.testcase │ │ ├── centroid1.testcase │ │ ├── centroid2.testcase │ │ ├── centroid3.testcase │ │ ├── centroid4.testcase │ │ ├── centroid5.testcase │ │ ├── centroid6.testcase │ │ ├── centroid7.testcase │ │ ├── centroid8.testcase │ │ ├── convexhull1.testcase │ │ ├── convexhull10.testcase │ │ ├── convexhull2.testcase │ │ ├── convexhull3.testcase │ │ ├── convexhull4.testcase │ │ ├── convexhull5.testcase │ │ ├── convexhull6.testcase │ │ ├── convexhull7.testcase │ │ ├── convexhull8.testcase │ │ ├── convexhull9.testcase │ │ ├── difference1.testcase │ │ ├── difference10.testcase │ │ ├── difference11.testcase │ │ ├── difference12.testcase │ │ ├── difference2.testcase │ │ ├── difference3.testcase │ │ ├── difference4.testcase │ │ ├── difference6.testcase │ │ ├── difference7.testcase │ │ ├── difference8.testcase │ │ ├── difference9.testcase │ │ ├── distance1.testcase │ │ ├── distance10.testcase │ │ ├── distance2.testcase │ │ ├── distance3.testcase │ │ ├── distance4.testcase │ │ ├── distance5.testcase │ │ ├── distance6.testcase │ │ ├── distance7.testcase │ │ ├── distance8.testcase │ │ ├── distance9.testcase │ │ ├── intersection1.testcase │ │ ├── intersection10.testcase │ │ ├── intersection11.testcase │ │ ├── intersection12.testcase │ │ ├── intersection2.testcase │ │ ├── intersection3.testcase │ │ ├── intersection4.testcase │ │ ├── intersection5.testcase │ │ ├── intersection6.testcase │ │ ├── intersection7.testcase │ │ ├── intersection8.testcase │ │ ├── intersection9.testcase │ │ ├── isclosed1.testcase │ │ ├── isclosed10.testcase │ │ ├── isclosed2.testcase │ │ ├── isclosed3.testcase │ │ ├── isclosed4.testcase │ │ ├── isclosed5.testcase │ │ ├── isclosed6.testcase │ │ ├── isclosed7.testcase │ │ ├── isclosed8.testcase │ │ ├── isclosed9.testcase │ │ ├── isring1.testcase │ │ ├── isring2.testcase │ │ ├── isring3.testcase │ │ ├── isring4.testcase │ │ ├── isring5.testcase │ │ ├── isring6.testcase │ │ ├── isring7.testcase │ │ ├── isring8.testcase │ │ ├── isring9.testcase │ │ ├── issimple1.testcase │ │ ├── issimple2.testcase │ │ ├── issimple3.testcase │ │ ├── issimple4.testcase │ │ ├── issimple5.testcase │ │ ├── issimple6.testcase │ │ ├── isvalid1.testcase │ │ ├── isvalid10.testcase │ │ ├── isvalid11.testcase │ │ ├── isvalid12.testcase │ │ ├── isvalid13.testcase │ │ ├── isvalid14.testcase │ │ ├── isvalid15.testcase │ │ ├── isvalid16.testcase │ │ ├── isvalid17.testcase │ │ ├── isvalid18.testcase │ │ ├── isvalid19.testcase │ │ ├── isvalid2.testcase │ │ ├── isvalid20.testcase │ │ ├── isvalid3.testcase │ │ ├── isvalid4.testcase │ │ ├── isvalid5.testcase │ │ ├── isvalid6.testcase │ │ ├── isvalid7.testcase │ │ ├── isvalid8.testcase │ │ ├── isvalid9.testcase │ │ ├── pointonsurface1.testcase │ │ ├── pointonsurface2.testcase │ │ ├── pointonsurface3.testcase │ │ ├── pointonsurface4.testcase │ │ ├── pointonsurface5.testcase │ │ ├── pointonsurface6.testcase │ │ ├── pointonsurface7.testcase │ │ ├── polygonize1.testcase │ │ ├── polygonize10.testcase │ │ ├── polygonize11.testcase │ │ ├── polygonize12.testcase │ │ ├── polygonize13.testcase │ │ ├── polygonize14.testcase │ │ ├── polygonize2.testcase │ │ ├── polygonize3.testcase │ │ ├── polygonize4.testcase │ │ ├── polygonize5.testcase │ │ ├── polygonize6.testcase │ │ ├── polygonize7.testcase │ │ ├── polygonize8.testcase │ │ ├── polygonize9.testcase │ │ ├── ptdistancewithin1.testcase │ │ ├── ptdistancewithin10.testcase │ │ ├── ptdistancewithin11.testcase │ │ ├── ptdistancewithin12.testcase │ │ ├── ptdistancewithin13.testcase │ │ ├── ptdistancewithin14.testcase │ │ ├── ptdistancewithin15.testcase │ │ ├── ptdistancewithin16.testcase │ │ ├── ptdistancewithin17.testcase │ │ ├── ptdistancewithin18.testcase │ │ ├── ptdistancewithin2.testcase │ │ ├── ptdistancewithin3.testcase │ │ ├── ptdistancewithin4.testcase │ │ ├── ptdistancewithin5.testcase │ │ ├── ptdistancewithin6.testcase │ │ ├── ptdistancewithin7.testcase │ │ ├── ptdistancewithin8.testcase │ │ ├── ptdistancewithin9.testcase │ │ ├── ptdistwithin1.testcase │ │ ├── ptdistwithin10.testcase │ │ ├── ptdistwithin11.testcase │ │ ├── ptdistwithin12.testcase │ │ ├── ptdistwithin13.testcase │ │ ├── ptdistwithin14.testcase │ │ ├── ptdistwithin15.testcase │ │ ├── ptdistwithin16.testcase │ │ ├── ptdistwithin2.testcase │ │ ├── ptdistwithin3.testcase │ │ ├── ptdistwithin4.testcase │ │ ├── ptdistwithin5.testcase │ │ ├── ptdistwithin6.testcase │ │ ├── ptdistwithin7.testcase │ │ ├── ptdistwithin8.testcase │ │ ├── ptdistwithin9.testcase │ │ ├── relate1.testcase │ │ ├── relate2.testcase │ │ ├── relate3.testcase │ │ ├── relate4.testcase │ │ ├── relate5.testcase │ │ ├── relate6.testcase │ │ ├── relate7.testcase │ │ ├── relate8.testcase │ │ ├── relate9.testcase │ │ ├── relations1.testcase │ │ ├── relations2.testcase │ │ ├── relations3.testcase │ │ ├── relations4.testcase │ │ ├── relations5.testcase │ │ ├── relations6.testcase │ │ ├── relations7.testcase │ │ ├── relations8.testcase │ │ ├── routing6.testcase │ │ ├── simplify1.testcase │ │ ├── simplify10.testcase │ │ ├── simplify11.testcase │ │ ├── simplify12.testcase │ │ ├── simplify13.testcase │ │ ├── simplify14.testcase │ │ ├── simplify15.testcase │ │ ├── simplify16.testcase │ │ ├── simplify2.testcase │ │ ├── simplify3.testcase │ │ ├── simplify4.testcase │ │ ├── simplify5.testcase │ │ ├── simplify6.testcase │ │ ├── simplify7.testcase │ │ ├── simplify8.testcase │ │ ├── simplify9.testcase │ │ ├── st_area1.testcase │ │ ├── st_area2.testcase │ │ ├── st_area3.testcase │ │ ├── st_area4.testcase │ │ ├── st_area5.testcase │ │ ├── st_area6.testcase │ │ ├── st_area7.testcase │ │ ├── st_area8.testcase │ │ ├── st_area9.testcase │ │ ├── st_length1.testcase │ │ ├── st_length10.testcase │ │ ├── st_length11.testcase │ │ ├── st_length12.testcase │ │ ├── st_length13.testcase │ │ ├── st_length14.testcase │ │ ├── st_length15.testcase │ │ ├── st_length16.testcase │ │ ├── st_length17.testcase │ │ ├── st_length18.testcase │ │ ├── st_length2.testcase │ │ ├── st_length3.testcase │ │ ├── st_length4.testcase │ │ ├── st_length5.testcase │ │ ├── st_length6.testcase │ │ ├── st_length7.testcase │ │ ├── st_length8.testcase │ │ ├── st_length9.testcase │ │ ├── st_perimeter1.testcase │ │ ├── st_perimeter10.testcase │ │ ├── st_perimeter11.testcase │ │ ├── st_perimeter12.testcase │ │ ├── st_perimeter13.testcase │ │ ├── st_perimeter14.testcase │ │ ├── st_perimeter15.testcase │ │ ├── st_perimeter16.testcase │ │ ├── st_perimeter17.testcase │ │ ├── st_perimeter18.testcase │ │ ├── st_perimeter2.testcase │ │ ├── st_perimeter3.testcase │ │ ├── st_perimeter4.testcase │ │ ├── st_perimeter5.testcase │ │ ├── st_perimeter6.testcase │ │ ├── st_perimeter7.testcase │ │ ├── st_perimeter8.testcase │ │ ├── st_perimeter9.testcase │ │ ├── symdifference1.testcase │ │ ├── symdifference10.testcase │ │ ├── symdifference11.testcase │ │ ├── symdifference2.testcase │ │ ├── symdifference3.testcase │ │ ├── symdifference4.testcase │ │ ├── symdifference5.testcase │ │ ├── symdifference6.testcase │ │ ├── symdifference7.testcase │ │ ├── symdifference8.testcase │ │ ├── symdifference9.testcase │ │ ├── union1.testcase │ │ ├── union10.testcase │ │ ├── union11.testcase │ │ ├── union12.testcase │ │ ├── union13.testcase │ │ ├── union14.testcase │ │ ├── union15.testcase │ │ ├── union16.testcase │ │ ├── union17.testcase │ │ ├── union18.testcase │ │ ├── union19.testcase │ │ ├── union2.testcase │ │ ├── union20.testcase │ │ ├── union21.testcase │ │ ├── union22.testcase │ │ ├── union23.testcase │ │ ├── union24.testcase │ │ ├── union25.testcase │ │ ├── union26.testcase │ │ ├── union27.testcase │ │ ├── union28.testcase │ │ ├── union29.testcase │ │ ├── union3.testcase │ │ ├── union4.testcase │ │ ├── union5.testcase │ │ ├── union6.testcase │ │ ├── union7.testcase │ │ ├── union8.testcase │ │ └── union9.testcase │ │ ├── sql_stmt_geosadvanced_tests │ │ ├── closestpoint1.testcase │ │ ├── closestpoint10.testcase │ │ ├── closestpoint11.testcase │ │ ├── closestpoint12.testcase │ │ ├── closestpoint13.testcase │ │ ├── closestpoint14.testcase │ │ ├── closestpoint15.testcase │ │ ├── closestpoint16.testcase │ │ ├── closestpoint17.testcase │ │ ├── closestpoint18.testcase │ │ ├── closestpoint19.testcase │ │ ├── closestpoint2.testcase │ │ ├── closestpoint20.testcase │ │ ├── closestpoint21.testcase │ │ ├── closestpoint22.testcase │ │ ├── closestpoint3.testcase │ │ ├── closestpoint4.testcase │ │ ├── closestpoint5.testcase │ │ ├── closestpoint6.testcase │ │ ├── closestpoint7.testcase │ │ ├── closestpoint8.testcase │ │ ├── closestpoint9.testcase │ │ ├── coveredby1.testcase │ │ ├── coveredby2.testcase │ │ ├── covers1.testcase │ │ ├── covers2.testcase │ │ ├── covers_covered1.testcase │ │ ├── covers_covered2.testcase │ │ ├── covers_covered3.testcase │ │ ├── covers_covered4.testcase │ │ ├── covers_covered5.testcase │ │ ├── covers_covered6.testcase │ │ ├── covers_covered7.testcase │ │ ├── createtopo1.testcase │ │ ├── createtopo10.testcase │ │ ├── createtopo11.testcase │ │ ├── createtopo12.testcase │ │ ├── createtopo13.testcase │ │ ├── createtopo14.testcase │ │ ├── createtopo15.testcase │ │ ├── createtopo16.testcase │ │ ├── createtopo17.testcase │ │ ├── createtopo18.testcase │ │ ├── createtopo2.testcase │ │ ├── createtopo3.testcase │ │ ├── createtopo4.testcase │ │ ├── createtopo5.testcase │ │ ├── createtopo6.testcase │ │ ├── createtopo7.testcase │ │ ├── createtopo8.testcase │ │ ├── createtopo9.testcase │ │ ├── distance_geogr1.testcase │ │ ├── distance_geogr10.testcase │ │ ├── distance_geogr11.testcase │ │ ├── distance_geogr12.testcase │ │ ├── distance_geogr2.testcase │ │ ├── distance_geogr3.testcase │ │ ├── distance_geogr4.testcase │ │ ├── distance_geogr5.testcase │ │ ├── distance_geogr6.testcase │ │ ├── distance_geogr7.testcase │ │ ├── distance_geogr8.testcase │ │ ├── distance_geogr9.testcase │ │ ├── hausdorffdistance1.testcase │ │ ├── hausdorffdistance2.testcase │ │ ├── hausdorffdistance3.testcase │ │ ├── hausdorffdistance4.testcase │ │ ├── hausdorffdistance5.testcase │ │ ├── hausdorffdistance6.testcase │ │ ├── hausdorffdistance7.testcase │ │ ├── hexgrid1.testcase │ │ ├── hexgrid10.testcase │ │ ├── hexgrid11.testcase │ │ ├── hexgrid12.testcase │ │ ├── hexgrid13.testcase │ │ ├── hexgrid14.testcase │ │ ├── hexgrid15.testcase │ │ ├── hexgrid16.testcase │ │ ├── hexgrid17.testcase │ │ ├── hexgrid18.testcase │ │ ├── hexgrid19.testcase │ │ ├── hexgrid2.testcase │ │ ├── hexgrid20.testcase │ │ ├── hexgrid21.testcase │ │ ├── hexgrid22.testcase │ │ ├── hexgrid23.testcase │ │ ├── hexgrid3.testcase │ │ ├── hexgrid4.testcase │ │ ├── hexgrid5.testcase │ │ ├── hexgrid6.testcase │ │ ├── hexgrid7.testcase │ │ ├── hexgrid8.testcase │ │ ├── hexgrid9.testcase │ │ ├── interpolateequidistantpoint1.testcase │ │ ├── interpolateequidistantpoint10.testcase │ │ ├── interpolateequidistantpoint11.testcase │ │ ├── interpolateequidistantpoint12.testcase │ │ ├── interpolateequidistantpoint13.testcase │ │ ├── interpolateequidistantpoint14.testcase │ │ ├── interpolateequidistantpoint2.testcase │ │ ├── interpolateequidistantpoint3.testcase │ │ ├── interpolateequidistantpoint4.testcase │ │ ├── interpolateequidistantpoint5.testcase │ │ ├── interpolateequidistantpoint6.testcase │ │ ├── interpolateequidistantpoint7.testcase │ │ ├── interpolateequidistantpoint8.testcase │ │ ├── interpolateequidistantpoint9.testcase │ │ ├── interpolatepoint1.testcase │ │ ├── interpolatepoint10.testcase │ │ ├── interpolatepoint11.testcase │ │ ├── interpolatepoint12.testcase │ │ ├── interpolatepoint13.testcase │ │ ├── interpolatepoint14.testcase │ │ ├── interpolatepoint2.testcase │ │ ├── interpolatepoint3.testcase │ │ ├── interpolatepoint4.testcase │ │ ├── interpolatepoint5.testcase │ │ ├── interpolatepoint6.testcase │ │ ├── interpolatepoint7.testcase │ │ ├── interpolatepoint8.testcase │ │ ├── interpolatepoint9.testcase │ │ ├── linemerge1.testcase │ │ ├── linemerge10.testcase │ │ ├── linemerge2.testcase │ │ ├── linemerge3.testcase │ │ ├── linemerge4.testcase │ │ ├── linemerge5.testcase │ │ ├── linemerge6.testcase │ │ ├── linemerge7.testcase │ │ ├── linemerge8.testcase │ │ ├── linemerge9.testcase │ │ ├── linesnodes1.testcase │ │ ├── linesnodes10.testcase │ │ ├── linesnodes11.testcase │ │ ├── linesnodes12.testcase │ │ ├── linesnodes13.testcase │ │ ├── linesnodes14.testcase │ │ ├── linesnodes15.testcase │ │ ├── linesnodes16.testcase │ │ ├── linesnodes17.testcase │ │ ├── linesnodes18.testcase │ │ ├── linesnodes19.testcase │ │ ├── linesnodes2.testcase │ │ ├── linesnodes3.testcase │ │ ├── linesnodes4.testcase │ │ ├── linesnodes5.testcase │ │ ├── linesnodes6.testcase │ │ ├── linesnodes7.testcase │ │ ├── linesnodes8.testcase │ │ ├── linesnodes9.testcase │ │ ├── linesubstring1.testcase │ │ ├── linesubstring10.testcase │ │ ├── linesubstring11.testcase │ │ ├── linesubstring12.testcase │ │ ├── linesubstring13.testcase │ │ ├── linesubstring14.testcase │ │ ├── linesubstring15.testcase │ │ ├── linesubstring16.testcase │ │ ├── linesubstring17.testcase │ │ ├── linesubstring18.testcase │ │ ├── linesubstring19.testcase │ │ ├── linesubstring2.testcase │ │ ├── linesubstring20.testcase │ │ ├── linesubstring21.testcase │ │ ├── linesubstring22.testcase │ │ ├── linesubstring23.testcase │ │ ├── linesubstring24.testcase │ │ ├── linesubstring25.testcase │ │ ├── linesubstring26.testcase │ │ ├── linesubstring3.testcase │ │ ├── linesubstring4.testcase │ │ ├── linesubstring5.testcase │ │ ├── linesubstring6.testcase │ │ ├── linesubstring7.testcase │ │ ├── linesubstring8.testcase │ │ ├── linesubstring9.testcase │ │ ├── locatepoint1.testcase │ │ ├── locatepoint10.testcase │ │ ├── locatepoint11.testcase │ │ ├── locatepoint12.testcase │ │ ├── locatepoint2.testcase │ │ ├── locatepoint3.testcase │ │ ├── locatepoint4.testcase │ │ ├── locatepoint5.testcase │ │ ├── locatepoint6.testcase │ │ ├── locatepoint7.testcase │ │ ├── locatepoint8.testcase │ │ ├── locatepoint9.testcase │ │ ├── offsetcurve1.testcase │ │ ├── offsetcurve10.testcase │ │ ├── offsetcurve11.testcase │ │ ├── offsetcurve12.testcase │ │ ├── offsetcurve13.testcase │ │ ├── offsetcurve14.testcase │ │ ├── offsetcurve2.testcase │ │ ├── offsetcurve3.testcase │ │ ├── offsetcurve4.testcase │ │ ├── offsetcurve5.testcase │ │ ├── offsetcurve6.testcase │ │ ├── offsetcurve7.testcase │ │ ├── offsetcurve8.testcase │ │ ├── offsetcurve9.testcase │ │ ├── ringsnodes1.testcase │ │ ├── ringsnodes2.testcase │ │ ├── ringsnodes3.testcase │ │ ├── ringsnodes4.testcase │ │ ├── ringsnodes5.testcase │ │ ├── ringsnodes6.testcase │ │ ├── sharedpaths1.testcase │ │ ├── sharedpaths10.testcase │ │ ├── sharedpaths11.testcase │ │ ├── sharedpaths12.testcase │ │ ├── sharedpaths13.testcase │ │ ├── sharedpaths14.testcase │ │ ├── sharedpaths15.testcase │ │ ├── sharedpaths16.testcase │ │ ├── sharedpaths17.testcase │ │ ├── sharedpaths18.testcase │ │ ├── sharedpaths19.testcase │ │ ├── sharedpaths2.testcase │ │ ├── sharedpaths20.testcase │ │ ├── sharedpaths21.testcase │ │ ├── sharedpaths22.testcase │ │ ├── sharedpaths23.testcase │ │ ├── sharedpaths24.testcase │ │ ├── sharedpaths25.testcase │ │ ├── sharedpaths26.testcase │ │ ├── sharedpaths27.testcase │ │ ├── sharedpaths28.testcase │ │ ├── sharedpaths29.testcase │ │ ├── sharedpaths3.testcase │ │ ├── sharedpaths30.testcase │ │ ├── sharedpaths31.testcase │ │ ├── sharedpaths32.testcase │ │ ├── sharedpaths4.testcase │ │ ├── sharedpaths5.testcase │ │ ├── sharedpaths6.testcase │ │ ├── sharedpaths7.testcase │ │ ├── sharedpaths8.testcase │ │ ├── sharedpaths9.testcase │ │ ├── shortestline1.testcase │ │ ├── shortestline2.testcase │ │ ├── shortestline3.testcase │ │ ├── shortestline4.testcase │ │ ├── shortestline5.testcase │ │ ├── shortestline6.testcase │ │ ├── shortestline7.testcase │ │ ├── singlesidedbuffer1.testcase │ │ ├── singlesidedbuffer11.testcase │ │ ├── singlesidedbuffer12.testcase │ │ ├── singlesidedbuffer13.testcase │ │ ├── singlesidedbuffer14.testcase │ │ ├── singlesidedbuffer15.testcase │ │ ├── singlesidedbuffer16.testcase │ │ ├── singlesidedbuffer17.testcase │ │ ├── singlesidedbuffer2.testcase │ │ ├── singlesidedbuffer3.testcase │ │ ├── singlesidedbuffer4.testcase │ │ ├── singlesidedbuffer5.testcase │ │ ├── singlesidedbuffer6.testcase │ │ ├── singlesidedbuffer7.testcase │ │ ├── singlesidedbuffer8.testcase │ │ ├── singlesidedbuffer9.testcase │ │ ├── snap1.testcase │ │ ├── snap10.testcase │ │ ├── snap2.testcase │ │ ├── snap3.testcase │ │ ├── snap4.testcase │ │ ├── snap5.testcase │ │ ├── snap6.testcase │ │ ├── snap7.testcase │ │ ├── snap8.testcase │ │ ├── snap9.testcase │ │ ├── squaregrid1.testcase │ │ ├── squaregrid10.testcase │ │ ├── squaregrid11.testcase │ │ ├── squaregrid12.testcase │ │ ├── squaregrid13.testcase │ │ ├── squaregrid14.testcase │ │ ├── squaregrid15.testcase │ │ ├── squaregrid16.testcase │ │ ├── squaregrid17.testcase │ │ ├── squaregrid18.testcase │ │ ├── squaregrid19.testcase │ │ ├── squaregrid2.testcase │ │ ├── squaregrid20.testcase │ │ ├── squaregrid21.testcase │ │ ├── squaregrid22.testcase │ │ ├── squaregrid23.testcase │ │ ├── squaregrid3.testcase │ │ ├── squaregrid4.testcase │ │ ├── squaregrid5.testcase │ │ ├── squaregrid6.testcase │ │ ├── squaregrid7.testcase │ │ ├── squaregrid8.testcase │ │ ├── squaregrid9.testcase │ │ ├── trianggrid1.testcase │ │ ├── trianggrid10.testcase │ │ ├── trianggrid11.testcase │ │ ├── trianggrid12.testcase │ │ ├── trianggrid13.testcase │ │ ├── trianggrid14.testcase │ │ ├── trianggrid15.testcase │ │ ├── trianggrid16.testcase │ │ ├── trianggrid17.testcase │ │ ├── trianggrid18.testcase │ │ ├── trianggrid19.testcase │ │ ├── trianggrid2.testcase │ │ ├── trianggrid20.testcase │ │ ├── trianggrid21.testcase │ │ ├── trianggrid22.testcase │ │ ├── trianggrid23.testcase │ │ ├── trianggrid3.testcase │ │ ├── trianggrid4.testcase │ │ ├── trianggrid5.testcase │ │ ├── trianggrid6.testcase │ │ ├── trianggrid7.testcase │ │ ├── trianggrid8.testcase │ │ ├── trianggrid9.testcase │ │ ├── unaryunion1.testcase │ │ ├── unaryunion2.testcase │ │ ├── unaryunion3.testcase │ │ ├── unaryunion4.testcase │ │ ├── unaryunion5.testcase │ │ ├── unaryunion6.testcase │ │ ├── unaryunion7.testcase │ │ └── unaryunion8.testcase │ │ ├── sql_stmt_geostrunk_tests │ │ ├── concave_hull1.testcase │ │ ├── concave_hull10.testcase │ │ ├── concave_hull11.testcase │ │ ├── concave_hull12.testcase │ │ ├── concave_hull13.testcase │ │ ├── concave_hull14.testcase │ │ ├── concave_hull15.testcase │ │ ├── concave_hull16.testcase │ │ ├── concave_hull17.testcase │ │ ├── concave_hull18.testcase │ │ ├── concave_hull19.testcase │ │ ├── concave_hull2.testcase │ │ ├── concave_hull3.testcase │ │ ├── concave_hull4.testcase │ │ ├── concave_hull5.testcase │ │ ├── concave_hull6.testcase │ │ ├── concave_hull7.testcase │ │ ├── concave_hull8.testcase │ │ ├── concave_hull9.testcase │ │ ├── delaunay1.testcase │ │ ├── delaunay10.testcase │ │ ├── delaunay11.testcase │ │ ├── delaunay12.testcase │ │ ├── delaunay13.testcase │ │ ├── delaunay14.testcase │ │ ├── delaunay15.testcase │ │ ├── delaunay16.testcase │ │ ├── delaunay17.testcase │ │ ├── delaunay18.testcase │ │ ├── delaunay19.testcase │ │ ├── delaunay2.testcase │ │ ├── delaunay3.testcase │ │ ├── delaunay4.testcase │ │ ├── delaunay5.testcase │ │ ├── delaunay6.testcase │ │ ├── delaunay7.testcase │ │ ├── delaunay8.testcase │ │ ├── delaunay9.testcase │ │ ├── voronoj1.testcase │ │ ├── voronoj10.testcase │ │ ├── voronoj11.testcase │ │ ├── voronoj12.testcase │ │ ├── voronoj13.testcase │ │ ├── voronoj14.testcase │ │ ├── voronoj15.testcase │ │ ├── voronoj16.testcase │ │ ├── voronoj17.testcase │ │ ├── voronoj18.testcase │ │ ├── voronoj19.testcase │ │ ├── voronoj2.testcase │ │ ├── voronoj20.testcase │ │ ├── voronoj3.testcase │ │ ├── voronoj4.testcase │ │ ├── voronoj5.testcase │ │ ├── voronoj6.testcase │ │ ├── voronoj8.testcase │ │ └── voronoj9.testcase │ │ ├── sql_stmt_lwgeom_tests │ │ ├── 3ddistance1.testcase │ │ ├── 3ddistance10.testcase │ │ ├── 3ddistance2.testcase │ │ ├── 3ddistance3.testcase │ │ ├── 3ddistance4.testcase │ │ ├── 3ddistance5.testcase │ │ ├── 3ddistance6.testcase │ │ ├── 3ddistance7.testcase │ │ ├── 3ddistance8.testcase │ │ ├── 3ddistance9.testcase │ │ ├── 3dmaxdistance1.testcase │ │ ├── 3dmaxdistance10.testcase │ │ ├── 3dmaxdistance2.testcase │ │ ├── 3dmaxdistance3.testcase │ │ ├── 3dmaxdistance4.testcase │ │ ├── 3dmaxdistance5.testcase │ │ ├── 3dmaxdistance6.testcase │ │ ├── 3dmaxdistance7.testcase │ │ ├── 3dmaxdistance8.testcase │ │ ├── 3dmaxdistance9.testcase │ │ ├── maxdistance1.testcase │ │ ├── maxdistance10.testcase │ │ ├── maxdistance2.testcase │ │ ├── maxdistance3.testcase │ │ ├── maxdistance4.testcase │ │ ├── maxdistance5.testcase │ │ ├── maxdistance6.testcase │ │ ├── maxdistance7.testcase │ │ ├── maxdistance8.testcase │ │ ├── maxdistance9.testcase │ │ ├── st_asx3d1.testcase │ │ ├── st_asx3d10.testcase │ │ ├── st_asx3d11.testcase │ │ ├── st_asx3d12.testcase │ │ ├── st_asx3d13.testcase │ │ ├── st_asx3d14.testcase │ │ ├── st_asx3d15.testcase │ │ ├── st_asx3d16.testcase │ │ ├── st_asx3d17.testcase │ │ ├── st_asx3d18.testcase │ │ ├── st_asx3d19.testcase │ │ ├── st_asx3d2.testcase │ │ ├── st_asx3d20.testcase │ │ ├── st_asx3d21.testcase │ │ ├── st_asx3d22.testcase │ │ ├── st_asx3d23.testcase │ │ ├── st_asx3d24.testcase │ │ ├── st_asx3d25.testcase │ │ ├── st_asx3d26.testcase │ │ ├── st_asx3d27.testcase │ │ ├── st_asx3d28.testcase │ │ ├── st_asx3d29.testcase │ │ ├── st_asx3d3.testcase │ │ ├── st_asx3d30.testcase │ │ ├── st_asx3d4.testcase │ │ ├── st_asx3d5.testcase │ │ ├── st_asx3d6.testcase │ │ ├── st_asx3d7.testcase │ │ ├── st_asx3d8.testcase │ │ ├── st_asx3d9.testcase │ │ ├── st_azimuth1.testcase │ │ ├── st_azimuth10.testcase │ │ ├── st_azimuth11.testcase │ │ ├── st_azimuth12.testcase │ │ ├── st_azimuth13.testcase │ │ ├── st_azimuth14.testcase │ │ ├── st_azimuth15.testcase │ │ ├── st_azimuth16.testcase │ │ ├── st_azimuth17.testcase │ │ ├── st_azimuth2.testcase │ │ ├── st_azimuth3.testcase │ │ ├── st_azimuth4.testcase │ │ ├── st_azimuth5.testcase │ │ ├── st_azimuth6.testcase │ │ ├── st_azimuth7.testcase │ │ ├── st_azimuth8.testcase │ │ ├── st_azimuth9.testcase │ │ ├── st_geohash1.testcase │ │ ├── st_geohash10.testcase │ │ ├── st_geohash2.testcase │ │ ├── st_geohash3.testcase │ │ ├── st_geohash4.testcase │ │ ├── st_geohash5.testcase │ │ ├── st_geohash6.testcase │ │ ├── st_geohash7.testcase │ │ ├── st_geohash8.testcase │ │ ├── st_geohash9.testcase │ │ ├── st_makevalid1.testcase │ │ ├── st_makevalid2.testcase │ │ ├── st_makevalid3.testcase │ │ ├── st_makevalid4.testcase │ │ ├── st_makevalid5.testcase │ │ ├── st_makevalid6.testcase │ │ ├── st_makevalid7.testcase │ │ ├── st_makevalid8.testcase │ │ ├── st_makevaliddiscarded1.testcase │ │ ├── st_makevaliddiscarded2.testcase │ │ ├── st_makevaliddiscarded3.testcase │ │ ├── st_makevaliddiscarded4.testcase │ │ ├── st_makevaliddiscarded5.testcase │ │ ├── st_makevaliddiscarded6.testcase │ │ ├── st_makevaliddiscarded7.testcase │ │ ├── st_makevaliddiscarded8.testcase │ │ ├── st_segmentize1.testcase │ │ ├── st_segmentize10.testcase │ │ ├── st_segmentize11.testcase │ │ ├── st_segmentize12.testcase │ │ ├── st_segmentize13.testcase │ │ ├── st_segmentize14.testcase │ │ ├── st_segmentize16.testcase │ │ ├── st_segmentize17.testcase │ │ ├── st_segmentize18.testcase │ │ ├── st_segmentize19.testcase │ │ ├── st_segmentize2.testcase │ │ ├── st_segmentize20.testcase │ │ ├── st_segmentize21.testcase │ │ ├── st_segmentize22.testcase │ │ ├── st_segmentize23.testcase │ │ ├── st_segmentize24.testcase │ │ ├── st_segmentize25.testcase │ │ ├── st_segmentize26.testcase │ │ ├── st_segmentize27.testcase │ │ ├── st_segmentize28.testcase │ │ ├── st_segmentize29.testcase │ │ ├── st_segmentize3.testcase │ │ ├── st_segmentize30.testcase │ │ ├── st_segmentize31.testcase │ │ ├── st_segmentize4.testcase │ │ ├── st_segmentize5.testcase │ │ ├── st_segmentize6.testcase │ │ ├── st_segmentize7.testcase │ │ ├── st_segmentize8.testcase │ │ ├── st_segmentize9.testcase │ │ ├── st_snaptogrid1.testcase │ │ ├── st_snaptogrid10.testcase │ │ ├── st_snaptogrid11.testcase │ │ ├── st_snaptogrid12.testcase │ │ ├── st_snaptogrid13.testcase │ │ ├── st_snaptogrid14.testcase │ │ ├── st_snaptogrid15.testcase │ │ ├── st_snaptogrid16.testcase │ │ ├── st_snaptogrid17.testcase │ │ ├── st_snaptogrid18.testcase │ │ ├── st_snaptogrid19.testcase │ │ ├── st_snaptogrid2.testcase │ │ ├── st_snaptogrid20.testcase │ │ ├── st_snaptogrid21.testcase │ │ ├── st_snaptogrid22.testcase │ │ ├── st_snaptogrid23.testcase │ │ ├── st_snaptogrid24.testcase │ │ ├── st_snaptogrid25.testcase │ │ ├── st_snaptogrid26.testcase │ │ ├── st_snaptogrid27.testcase │ │ ├── st_snaptogrid28.testcase │ │ ├── st_snaptogrid29.testcase │ │ ├── st_snaptogrid3.testcase │ │ ├── st_snaptogrid30.testcase │ │ ├── st_snaptogrid31.testcase │ │ ├── st_snaptogrid32.testcase │ │ ├── st_snaptogrid33.testcase │ │ ├── st_snaptogrid34.testcase │ │ ├── st_snaptogrid35.testcase │ │ ├── st_snaptogrid36.testcase │ │ ├── st_snaptogrid37.testcase │ │ ├── st_snaptogrid38.testcase │ │ ├── st_snaptogrid39.testcase │ │ ├── st_snaptogrid4.testcase │ │ ├── st_snaptogrid40.testcase │ │ ├── st_snaptogrid41.testcase │ │ ├── st_snaptogrid42.testcase │ │ ├── st_snaptogrid43.testcase │ │ ├── st_snaptogrid44.testcase │ │ ├── st_snaptogrid45.testcase │ │ ├── st_snaptogrid46.testcase │ │ ├── st_snaptogrid47.testcase │ │ ├── st_snaptogrid48.testcase │ │ ├── st_snaptogrid49.testcase │ │ ├── st_snaptogrid5.testcase │ │ ├── st_snaptogrid50.testcase │ │ ├── st_snaptogrid51.testcase │ │ ├── st_snaptogrid52.testcase │ │ ├── st_snaptogrid53.testcase │ │ ├── st_snaptogrid54.testcase │ │ ├── st_snaptogrid55.testcase │ │ ├── st_snaptogrid56.testcase │ │ ├── st_snaptogrid57.testcase │ │ ├── st_snaptogrid58.testcase │ │ ├── st_snaptogrid59.testcase │ │ ├── st_snaptogrid6.testcase │ │ ├── st_snaptogrid60.testcase │ │ ├── st_snaptogrid61.testcase │ │ ├── st_snaptogrid62.testcase │ │ ├── st_snaptogrid63.testcase │ │ ├── st_snaptogrid64.testcase │ │ ├── st_snaptogrid65.testcase │ │ ├── st_snaptogrid7.testcase │ │ ├── st_snaptogrid8.testcase │ │ ├── st_snaptogrid9.testcase │ │ ├── st_split1.testcase │ │ ├── st_split10.testcase │ │ ├── st_split11.testcase │ │ ├── st_split12.testcase │ │ ├── st_split13.testcase │ │ ├── st_split14.testcase │ │ ├── st_split15.testcase │ │ ├── st_split16.testcase │ │ ├── st_split17.testcase │ │ ├── st_split18.testcase │ │ ├── st_split19.testcase │ │ ├── st_split2.testcase │ │ ├── st_split20.testcase │ │ ├── st_split21.testcase │ │ ├── st_split22.testcase │ │ ├── st_split23.testcase │ │ ├── st_split24.testcase │ │ ├── st_split25.testcase │ │ ├── st_split26.testcase │ │ ├── st_split27.testcase │ │ ├── st_split28.testcase │ │ ├── st_split29.testcase │ │ ├── st_split3.testcase │ │ ├── st_split30.testcase │ │ ├── st_split31.testcase │ │ ├── st_split32.testcase │ │ ├── st_split33.testcase │ │ ├── st_split34.testcase │ │ ├── st_split35.testcase │ │ ├── st_split36.testcase │ │ ├── st_split37.testcase │ │ ├── st_split38.testcase │ │ ├── st_split39.testcase │ │ ├── st_split4.testcase │ │ ├── st_split40.testcase │ │ ├── st_split41.testcase │ │ ├── st_split42.testcase │ │ ├── st_split43.testcase │ │ ├── st_split44.testcase │ │ ├── st_split45.testcase │ │ ├── st_split46.testcase │ │ ├── st_split47.testcase │ │ ├── st_split48.testcase │ │ ├── st_split49.testcase │ │ ├── st_split5.testcase │ │ ├── st_split6.testcase │ │ ├── st_split7.testcase │ │ ├── st_split8.testcase │ │ └── st_split9.testcase │ │ ├── sql_stmt_mathsql_tests │ │ ├── acos-text.testcase │ │ ├── acos.testcase │ │ ├── acos10.testcase │ │ ├── acos2.testcase │ │ ├── acos20.testcase │ │ ├── asin-text.testcase │ │ ├── asin1.testcase │ │ ├── asin10.testcase │ │ ├── asin2.testcase │ │ ├── asin20.testcase │ │ ├── atan-text.testcase │ │ ├── atan0.testcase │ │ ├── atan00.testcase │ │ ├── ceil-int.testcase │ │ ├── ceilfloat.testcase │ │ ├── ceilfloat2.testcase │ │ ├── ceilnull.testcase │ │ ├── cos-text.testcase │ │ ├── cos0.testcase │ │ ├── cos00.testcase │ │ ├── cot-text.testcase │ │ ├── cot0.testcase │ │ ├── cot00.testcase │ │ ├── cotpi2.testcase │ │ ├── degrees.testcase │ │ ├── degrees45.testcase │ │ ├── degreestext.testcase │ │ ├── exp0.testcase │ │ ├── exp00.testcase │ │ ├── exp1.testcase │ │ ├── exp10.testcase │ │ ├── expneg.testcase │ │ ├── exptext.testcase │ │ ├── floor32.testcase │ │ ├── floorint.testcase │ │ ├── floornull.testcase │ │ ├── log10-0.0.testcase │ │ ├── log10-100.0.testcase │ │ ├── log10-100.testcase │ │ ├── log10-text.testcase │ │ ├── log2-0.0.testcase │ │ ├── log2-0.testcase │ │ ├── log2-4.0.testcase │ │ ├── log2-4.testcase │ │ ├── log2-text.testcase │ │ ├── logn-text.testcase │ │ ├── logn0.testcase │ │ ├── logn00.testcase │ │ ├── logn1.testcase │ │ ├── logn10.testcase │ │ ├── logn2-01.testcase │ │ ├── logn2-02.testcase │ │ ├── logn2-2.2.testcase │ │ ├── logn2-4.2.testcase │ │ ├── logn2-4.2int.testcase │ │ ├── logn2-text.testcase │ │ ├── logn2-text2.testcase │ │ ├── logn2-text3.testcase │ │ ├── logn2-text4.testcase │ │ ├── pi.testcase │ │ ├── pow-badarg1.testcase │ │ ├── pow-badarg2.testcase │ │ ├── pow-edom.testcase │ │ ├── pow-fp.testcase │ │ ├── pow00-1.testcase │ │ ├── pow00-2.testcase │ │ ├── pow00.testcase │ │ ├── pow00double.testcase │ │ ├── rad-text.testcase │ │ ├── rad0.testcase │ │ ├── radpi.testcase │ │ ├── round-29.testcase │ │ ├── round-31.testcase │ │ ├── round-text.testcase │ │ ├── round0.testcase │ │ ├── round29.testcase │ │ ├── round3.testcase │ │ ├── round30.testcase │ │ ├── round31.testcase │ │ ├── sign0.testcase │ │ ├── sign00.testcase │ │ ├── sign01.testcase │ │ ├── sign10.testcase │ │ ├── signeg.testcase │ │ ├── signeg2.testcase │ │ ├── signeg2int.testcase │ │ ├── signtext.testcase │ │ ├── sin-pi.testcase │ │ ├── sin-pi2.testcase │ │ ├── sin-text.testcase │ │ ├── sin0.testcase │ │ ├── sin00.testcase │ │ ├── sinpi.testcase │ │ ├── sinpi2.testcase │ │ ├── sqrt-1.testcase │ │ ├── sqrt-10.testcase │ │ ├── sqrt-64.testcase │ │ ├── sqrt-640.testcase │ │ ├── sqrt-text.testcase │ │ ├── sqrt0.testcase │ │ ├── sqrt00.testcase │ │ ├── stddev.testcase │ │ ├── tan-pi.testcase │ │ ├── tan-text.testcase │ │ ├── tan0.testcase │ │ ├── tan00.testcase │ │ ├── tanpi.testcase │ │ ├── tanpi4.testcase │ │ └── variance.testcase │ │ ├── sql_stmt_proj_tests │ │ ├── askml1.testcase │ │ ├── askml10.testcase │ │ ├── askml11.testcase │ │ ├── askml2.testcase │ │ ├── askml3.testcase │ │ ├── askml4.testcase │ │ ├── askml5.testcase │ │ ├── askml6.testcase │ │ ├── askml7.testcase │ │ ├── askml8.testcase │ │ ├── askml9.testcase │ │ ├── fromgml42.testcase │ │ ├── output1.testcase │ │ ├── output10.testcase │ │ ├── output11.testcase │ │ ├── output12.testcase │ │ ├── output13.testcase │ │ ├── output14.testcase │ │ ├── output15.testcase │ │ ├── output16.testcase │ │ ├── output17.testcase │ │ ├── output18.testcase │ │ ├── output19.testcase │ │ ├── output2.testcase │ │ ├── output20.testcase │ │ ├── output21.testcase │ │ ├── output22.testcase │ │ ├── output23.testcase │ │ ├── output24.testcase │ │ ├── output25.testcase │ │ ├── output26.testcase │ │ ├── output27.testcase │ │ ├── output28.testcase │ │ ├── output29.testcase │ │ ├── output3.testcase │ │ ├── output30.testcase │ │ ├── output31.testcase │ │ ├── output32.testcase │ │ ├── output33.testcase │ │ ├── output34.testcase │ │ ├── output35.testcase │ │ ├── output36.testcase │ │ ├── output37.testcase │ │ ├── output38.testcase │ │ ├── output4.testcase │ │ ├── output5.testcase │ │ ├── output6.testcase │ │ ├── output7.testcase │ │ ├── output8.testcase │ │ ├── output9.testcase │ │ ├── transform1.testcase │ │ ├── transform10.testcase │ │ ├── transform11.testcase │ │ ├── transform12.testcase │ │ ├── transform13.testcase │ │ ├── transform14.testcase │ │ ├── transform15.testcase │ │ ├── transform16.testcase │ │ ├── transform17.testcase │ │ ├── transform18.testcase │ │ ├── transform19.testcase │ │ ├── transform2.testcase │ │ ├── transform20.testcase │ │ ├── transform21.testcase │ │ ├── transform3.testcase │ │ ├── transform4.testcase │ │ ├── transform5.testcase │ │ ├── transform6.testcase │ │ ├── transform7.testcase │ │ ├── transform8.testcase │ │ └── transform9.testcase │ │ ├── sql_stmt_security_tests │ │ ├── blobfromfile1.testcase │ │ ├── blobfromfile2.testcase │ │ ├── blobfromfile3.testcase │ │ ├── blobfromfile4.testcase │ │ ├── isXblob1.testcase │ │ ├── isXblob2.testcase │ │ ├── isXblob3.testcase │ │ ├── isXblob4.testcase │ │ ├── isXblob8.testcase │ │ └── isXblob9.testcase │ │ ├── sql_stmt_tests │ │ ├── DSCN0042.JPG │ │ ├── DSC_1467.JPG │ │ ├── La_folla_durante_il_Palio.jpg │ │ ├── NumPoints.testcase │ │ ├── NumPoints2.testcase │ │ ├── NumPoints3.testcase │ │ ├── NumPoints4.testcase │ │ ├── NumPoints5.testcase │ │ ├── NumPoints6.testcase │ │ ├── NumPoints7.testcase │ │ ├── SridFromAuthCRS.testcase │ │ ├── SridFromAuthCRS2.testcase │ │ ├── SridFromAuthCRS3.testcase │ │ ├── SridFromAuthCRS4.testcase │ │ ├── SridFromAuthCRS5.testcase │ │ ├── SridFromAuthCRS6.testcase │ │ ├── asbinary1.testcase │ │ ├── asbinary10.testcase │ │ ├── asbinary11.testcase │ │ ├── asbinary12.testcase │ │ ├── asbinary13.testcase │ │ ├── asbinary14.testcase │ │ ├── asbinary15.testcase │ │ ├── asbinary16.testcase │ │ ├── asbinary17.testcase │ │ ├── asbinary2.testcase │ │ ├── asbinary3.testcase │ │ ├── asbinary4.testcase │ │ ├── asbinary5.testcase │ │ ├── asbinary6.testcase │ │ ├── asbinary7.testcase │ │ ├── asbinary8.testcase │ │ ├── asbinary9.testcase │ │ ├── asewkb1.testcase │ │ ├── asewkb10.testcase │ │ ├── asewkb11.testcase │ │ ├── asewkb12.testcase │ │ ├── asewkb13.testcase │ │ ├── asewkb14.testcase │ │ ├── asewkb15.testcase │ │ ├── asewkb16.testcase │ │ ├── asewkb17.testcase │ │ ├── asewkb2.testcase │ │ ├── asewkb3.testcase │ │ ├── asewkb4.testcase │ │ ├── asewkb5.testcase │ │ ├── asewkb6.testcase │ │ ├── asewkb7.testcase │ │ ├── asewkb8.testcase │ │ ├── asewkb9.testcase │ │ ├── asfgf1.testcase │ │ ├── asfgf2.testcase │ │ ├── asfgf3.testcase │ │ ├── asfgf4.testcase │ │ ├── asfgf5.testcase │ │ ├── asfgf6.testcase │ │ ├── asfgf7.testcase │ │ ├── asfgf8.testcase │ │ ├── asfgf9.testcase │ │ ├── asgeojson1.testcase │ │ ├── asgeojson2.testcase │ │ ├── asgeojson3.testcase │ │ ├── asgeojson4.testcase │ │ ├── asgeojson5.testcase │ │ ├── asgeojson6.testcase │ │ ├── asgeojson7.testcase │ │ ├── asgml1.testcase │ │ ├── asgml10.testcase │ │ ├── asgml11.testcase │ │ ├── asgml2.testcase │ │ ├── asgml3.testcase │ │ ├── asgml4.testcase │ │ ├── asgml5.testcase │ │ ├── asgml6.testcase │ │ ├── asgml7.testcase │ │ ├── asgml8.testcase │ │ ├── asgml9.testcase │ │ ├── assvg1.testcase │ │ ├── assvg17.testcase │ │ ├── assvg18.testcase │ │ ├── assvg19.testcase │ │ ├── assvg2.testcase │ │ ├── assvg20.testcase │ │ ├── assvg21.testcase │ │ ├── assvg22.testcase │ │ ├── assvg23.testcase │ │ ├── assvg24.testcase │ │ ├── assvg25.testcase │ │ ├── assvg26.testcase │ │ ├── assvg3.testcase │ │ ├── assvg4.testcase │ │ ├── assvg5.testcase │ │ ├── assvg6.testcase │ │ ├── assvg7.testcase │ │ ├── assvg8.testcase │ │ ├── assvg9.testcase │ │ ├── aswkt-text.testcase │ │ ├── badEWKT1.testcase │ │ ├── badEWKT2.testcase │ │ ├── badEWKT3.testcase │ │ ├── badEWKT4.testcase │ │ ├── badEWKT5.testcase │ │ ├── badEWKT6.testcase │ │ ├── badEWKT7.testcase │ │ ├── badEWKT8.testcase │ │ ├── badGML1.testcase │ │ ├── badGML2.testcase │ │ ├── badGML3.testcase │ │ ├── badGML4.testcase │ │ ├── badGML5.testcase │ │ ├── badGML6.testcase │ │ ├── badGML7.testcase │ │ ├── badGeoJSON1.testcase │ │ ├── badGeoJSON2.testcase │ │ ├── badGeoJSON3.testcase │ │ ├── badGeoJSON4.testcase │ │ ├── badGeoJSON5.testcase │ │ ├── badGeoJSON6.testcase │ │ ├── badGeoJSON7.testcase │ │ ├── badKML1.testcase │ │ ├── badKML2.testcase │ │ ├── badKML3.testcase │ │ ├── badKML4.testcase │ │ ├── badKML5.testcase │ │ ├── badKML6.testcase │ │ ├── badKML7.testcase │ │ ├── badwkt1.testcase │ │ ├── badwkt2.testcase │ │ ├── badwkt3.testcase │ │ ├── badwkt4.testcase │ │ ├── badwkt5.testcase │ │ ├── badwkt6.testcase │ │ ├── badwkt7.testcase │ │ ├── badwkt8.testcase │ │ ├── badwkt9.testcase │ │ ├── buildcirclembr1.testcase │ │ ├── buildcirclembr10.testcase │ │ ├── buildcirclembr11.testcase │ │ ├── buildcirclembr12.testcase │ │ ├── buildcirclembr2.testcase │ │ ├── buildcirclembr3.testcase │ │ ├── buildcirclembr4.testcase │ │ ├── buildcirclembr5.testcase │ │ ├── buildcirclembr6.testcase │ │ ├── buildcirclembr7.testcase │ │ ├── buildcirclembr8.testcase │ │ ├── buildcirclembr9.testcase │ │ ├── buildmbr1.testcase │ │ ├── buildmbr10.testcase │ │ ├── buildmbr11.testcase │ │ ├── buildmbr12.testcase │ │ ├── buildmbr13.testcase │ │ ├── buildmbr14.testcase │ │ ├── buildmbr2.testcase │ │ ├── buildmbr3.testcase │ │ ├── buildmbr4.testcase │ │ ├── buildmbr5.testcase │ │ ├── buildmbr6.testcase │ │ ├── buildmbr7.testcase │ │ ├── buildmbr8.testcase │ │ ├── buildmbr9.testcase │ │ ├── casttogeometrycollection.testcase │ │ ├── casttogeometrycollection2.testcase │ │ ├── casttogeometrycollection3.testcase │ │ ├── casttogeometrycollection4.testcase │ │ ├── casttogeometrycollection5.testcase │ │ ├── casttogeometrycollection6.testcase │ │ ├── casttolinestring1.testcase │ │ ├── casttolinestring2.testcase │ │ ├── casttolinestring3.testcase │ │ ├── casttolinestring4.testcase │ │ ├── casttolinestring5.testcase │ │ ├── casttolinestring6.testcase │ │ ├── casttolinestring7.testcase │ │ ├── casttolinestring8.testcase │ │ ├── casttomulti1.testcase │ │ ├── casttomulti11.testcase │ │ ├── casttomulti2.testcase │ │ ├── casttomulti3.testcase │ │ ├── casttomulti4.testcase │ │ ├── casttomulti5.testcase │ │ ├── casttomulti6.testcase │ │ ├── casttomulti7.testcase │ │ ├── casttomulti8.testcase │ │ ├── casttomultilinestring1.testcase │ │ ├── casttomultilinestring2.testcase │ │ ├── casttomultilinestring3.testcase │ │ ├── casttomultilinestring4.testcase │ │ ├── casttomultilinestring5.testcase │ │ ├── casttomultilinestring6.testcase │ │ ├── casttomultilinestring7.testcase │ │ ├── casttomultipoint1.testcase │ │ ├── casttomultipoint2.testcase │ │ ├── casttomultipoint3.testcase │ │ ├── casttomultipoint4.testcase │ │ ├── casttomultipoint5.testcase │ │ ├── casttomultipoint6.testcase │ │ ├── casttomultipoint7.testcase │ │ ├── casttomultipoint8.testcase │ │ ├── casttomultipoint9.testcase │ │ ├── casttomultipolygon1.testcase │ │ ├── casttomultipolygon2.testcase │ │ ├── casttomultipolygon3.testcase │ │ ├── casttomultipolygon4.testcase │ │ ├── casttomultipolygon5.testcase │ │ ├── casttopoint1.testcase │ │ ├── casttopoint2.testcase │ │ ├── casttopoint3.testcase │ │ ├── casttopoint4.testcase │ │ ├── casttopoint5.testcase │ │ ├── casttopoint6.testcase │ │ ├── casttopoint7.testcase │ │ ├── casttopoint8.testcase │ │ ├── casttopoly1.testcase │ │ ├── casttopoly2.testcase │ │ ├── casttopoly3.testcase │ │ ├── casttopoly4.testcase │ │ ├── casttopoly5.testcase │ │ ├── casttopoly6.testcase │ │ ├── casttopoly7.testcase │ │ ├── casttopoly8.testcase │ │ ├── casttosingle1.testcase │ │ ├── casttosingle10.testcase │ │ ├── casttosingle12.testcase │ │ ├── casttosingle2.testcase │ │ ├── casttosingle3.testcase │ │ ├── casttosingle4.testcase │ │ ├── casttosingle5.testcase │ │ ├── casttosingle6.testcase │ │ ├── casttosingle7.testcase │ │ ├── casttosingle8.testcase │ │ ├── casttosingle9.testcase │ │ ├── casttoxy1.testcase │ │ ├── casttoxy2.testcase │ │ ├── casttoxy3.testcase │ │ ├── casttoxym1.testcase │ │ ├── casttoxym2.testcase │ │ ├── casttoxym3.testcase │ │ ├── casttoxym4.testcase │ │ ├── casttoxym5.testcase │ │ ├── casttoxym6.testcase │ │ ├── casttoxyz1.testcase │ │ ├── casttoxyz2.testcase │ │ ├── casttoxyz3.testcase │ │ ├── casttoxyz4.testcase │ │ ├── casttoxyz5.testcase │ │ ├── casttoxyz6.testcase │ │ ├── casttoxyzm1.testcase │ │ ├── casttoxyzm2.testcase │ │ ├── casttoxyzm3.testcase │ │ ├── casttoxyzm4.testcase │ │ ├── casttoxyzm5.testcase │ │ ├── casttoxyzm6.testcase │ │ ├── ch_m.testcase │ │ ├── checkspatialmetadata1.testcase │ │ ├── checkspatialmetadata2.testcase │ │ ├── checkspatialmetadata3.testcase │ │ ├── checkspatialmetadata4.testcase │ │ ├── checkspatialmetadata5.testcase │ │ ├── cm_m.testcase │ │ ├── collect1.testcase │ │ ├── collect10.testcase │ │ ├── collect11.testcase │ │ ├── collect12.testcase │ │ ├── collect13.testcase │ │ ├── collect14.testcase │ │ ├── collect15.testcase │ │ ├── collect16.testcase │ │ ├── collect17.testcase │ │ ├── collect18.testcase │ │ ├── collect19.testcase │ │ ├── collect2.testcase │ │ ├── collect20.testcase │ │ ├── collect21.testcase │ │ ├── collect23.testcase │ │ ├── collect24.testcase │ │ ├── collect25.testcase │ │ ├── collect26.testcase │ │ ├── collect27.testcase │ │ ├── collect28.testcase │ │ ├── collect29.testcase │ │ ├── collect3.testcase │ │ ├── collect30.testcase │ │ ├── collect31.testcase │ │ ├── collect32.testcase │ │ ├── collect33.testcase │ │ ├── collect34.testcase │ │ ├── collect35.testcase │ │ ├── collect36.testcase │ │ ├── collect37.testcase │ │ ├── collect38.testcase │ │ ├── collect39.testcase │ │ ├── collect4.testcase │ │ ├── collect40.testcase │ │ ├── collect41.testcase │ │ ├── collect42.testcase │ │ ├── collect43.testcase │ │ ├── collect44.testcase │ │ ├── collect45.testcase │ │ ├── collect46.testcase │ │ ├── collect47.testcase │ │ ├── collect48.testcase │ │ ├── collect49.testcase │ │ ├── collect5.testcase │ │ ├── collect50.testcase │ │ ├── collect51.testcase │ │ ├── collect52.testcase │ │ ├── collect53.testcase │ │ ├── collect54.testcase │ │ ├── collect55.testcase │ │ ├── collect56.testcase │ │ ├── collect57.testcase │ │ ├── collect58.testcase │ │ ├── collect59.testcase │ │ ├── collect6.testcase │ │ ├── collect7.testcase │ │ ├── collect8.testcase │ │ ├── collect9.testcase │ │ ├── collectextract1.testcase │ │ ├── collectextract10.testcase │ │ ├── collectextract11.testcase │ │ ├── collectextract12.testcase │ │ ├── collectextract13.testcase │ │ ├── collectextract14.testcase │ │ ├── collectextract15.testcase │ │ ├── collectextract16.testcase │ │ ├── collectextract17.testcase │ │ ├── collectextract18.testcase │ │ ├── collectextract19.testcase │ │ ├── collectextract2.testcase │ │ ├── collectextract20.testcase │ │ ├── collectextract21.testcase │ │ ├── collectextract22.testcase │ │ ├── collectextract3.testcase │ │ ├── collectextract4.testcase │ │ ├── collectextract5.testcase │ │ ├── collectextract6.testcase │ │ ├── collectextract7.testcase │ │ ├── collectextract8.testcase │ │ ├── collectextract9.testcase │ │ ├── compressgeometry1.testcase │ │ ├── compressgeometry10.testcase │ │ ├── compressgeometry11.testcase │ │ ├── compressgeometry12.testcase │ │ ├── compressgeometry13.testcase │ │ ├── compressgeometry14.testcase │ │ ├── compressgeometry15.testcase │ │ ├── compressgeometry17.testcase │ │ ├── compressgeometry18.testcase │ │ ├── compressgeometry19.testcase │ │ ├── compressgeometry2.testcase │ │ ├── compressgeometry20.testcase │ │ ├── compressgeometry21.testcase │ │ ├── compressgeometry22.testcase │ │ ├── compressgeometry23.testcase │ │ ├── compressgeometry24.testcase │ │ ├── compressgeometry25.testcase │ │ ├── compressgeometry26.testcase │ │ ├── compressgeometry27.testcase │ │ ├── compressgeometry28.testcase │ │ ├── compressgeometry29.testcase │ │ ├── compressgeometry3.testcase │ │ ├── compressgeometry30.testcase │ │ ├── compressgeometry31.testcase │ │ ├── compressgeometry32.testcase │ │ ├── compressgeometry33.testcase │ │ ├── compressgeometry34.testcase │ │ ├── compressgeometry35.testcase │ │ ├── compressgeometry36.testcase │ │ ├── compressgeometry37.testcase │ │ ├── compressgeometry38.testcase │ │ ├── compressgeometry39.testcase │ │ ├── compressgeometry4.testcase │ │ ├── compressgeometry40.testcase │ │ ├── compressgeometry41.testcase │ │ ├── compressgeometry42.testcase │ │ ├── compressgeometry43.testcase │ │ ├── compressgeometry44.testcase │ │ ├── compressgeometry45.testcase │ │ ├── compressgeometry46.testcase │ │ ├── compressgeometry47.testcase │ │ ├── compressgeometry48.testcase │ │ ├── compressgeometry49.testcase │ │ ├── compressgeometry5.testcase │ │ ├── compressgeometry50.testcase │ │ ├── compressgeometry51.testcase │ │ ├── compressgeometry52.testcase │ │ ├── compressgeometry53.testcase │ │ ├── compressgeometry54.testcase │ │ ├── compressgeometry55.testcase │ │ ├── compressgeometry56.testcase │ │ ├── compressgeometry57.testcase │ │ ├── compressgeometry58.testcase │ │ ├── compressgeometry59.testcase │ │ ├── compressgeometry6.testcase │ │ ├── compressgeometry60.testcase │ │ ├── compressgeometry61.testcase │ │ ├── compressgeometry62.testcase │ │ ├── compressgeometry63.testcase │ │ ├── compressgeometry64.testcase │ │ ├── compressgeometry65.testcase │ │ ├── compressgeometry66.testcase │ │ ├── compressgeometry67.testcase │ │ ├── compressgeometry68.testcase │ │ ├── compressgeometry69.testcase │ │ ├── compressgeometry7.testcase │ │ ├── compressgeometry8.testcase │ │ ├── compressgeometry9.testcase │ │ ├── dimension1.testcase │ │ ├── dimension2.testcase │ │ ├── dimension3.testcase │ │ ├── dimension4.testcase │ │ ├── dimension5.testcase │ │ ├── dimension6.testcase │ │ ├── dimension7.testcase │ │ ├── dimension8.testcase │ │ ├── dissolve1.testcase │ │ ├── dissolve10.testcase │ │ ├── dissolve11.testcase │ │ ├── dissolve12.testcase │ │ ├── dissolve13.testcase │ │ ├── dissolve14.testcase │ │ ├── dissolve15.testcase │ │ ├── dissolve16.testcase │ │ ├── dissolve17.testcase │ │ ├── dissolve18.testcase │ │ ├── dissolve19.testcase │ │ ├── dissolve2.testcase │ │ ├── dissolve20.testcase │ │ ├── dissolve21.testcase │ │ ├── dissolve22.testcase │ │ ├── dissolve23.testcase │ │ ├── dissolve24.testcase │ │ ├── dissolve25.testcase │ │ ├── dissolve26.testcase │ │ ├── dissolve27.testcase │ │ ├── dissolve28.testcase │ │ ├── dissolve29.testcase │ │ ├── dissolve3.testcase │ │ ├── dissolve30.testcase │ │ ├── dissolve4.testcase │ │ ├── dissolve5.testcase │ │ ├── dissolve6.testcase │ │ ├── dissolve7.testcase │ │ ├── dissolve8.testcase │ │ ├── dissolve9.testcase │ │ ├── dm_m.testcase │ │ ├── emptyfile.txt │ │ ├── endpoint1.testcase │ │ ├── envelope1.testcase │ │ ├── envelope2.testcase │ │ ├── envelope3.testcase │ │ ├── envelope4.testcase │ │ ├── envelope5.testcase │ │ ├── envelope6.testcase │ │ ├── envelope7.testcase │ │ ├── envintersects1.testcase │ │ ├── envintersects10.testcase │ │ ├── envintersects2.testcase │ │ ├── envintersects3.testcase │ │ ├── envintersects4.testcase │ │ ├── envintersects5.testcase │ │ ├── envintersects6.testcase │ │ ├── envintersects7.testcase │ │ ├── envintersects8.testcase │ │ ├── envintersects9.testcase │ │ ├── ewkb1.testcase │ │ ├── ewkb10.testcase │ │ ├── ewkb11.testcase │ │ ├── ewkb12.testcase │ │ ├── ewkb2.testcase │ │ ├── ewkb3.testcase │ │ ├── ewkb4.testcase │ │ ├── ewkb5.testcase │ │ ├── ewkb6.testcase │ │ ├── ewkb7.testcase │ │ ├── ewkb8.testcase │ │ ├── ewkb9.testcase │ │ ├── expand1.testcase │ │ ├── expand2.testcase │ │ ├── expand3.testcase │ │ ├── expand4.testcase │ │ ├── expand5.testcase │ │ ├── expand6.testcase │ │ ├── expand7.testcase │ │ ├── extent1.testcase │ │ ├── extractmultilinestring1.testcase │ │ ├── extractmultilinestring2.testcase │ │ ├── extractmultilinestring3.testcase │ │ ├── extractmultipoint1.testcase │ │ ├── extractmultipoint2.testcase │ │ ├── extractmultipoint3.testcase │ │ ├── extractmultipolygon1.testcase │ │ ├── extractmultipolygon2.testcase │ │ ├── extractmultipolygon3.testcase │ │ ├── fath_m.testcase │ │ ├── fdo-wkb.sqlite_RO │ │ ├── fdo_ogr1.testcase │ │ ├── fdo_ogr2.testcase │ │ ├── fromWkb1.testcase │ │ ├── fromWkb10.testcase │ │ ├── fromWkb11.testcase │ │ ├── fromWkb12.testcase │ │ ├── fromWkb13.testcase │ │ ├── fromWkb14.testcase │ │ ├── fromWkb15.testcase │ │ ├── fromWkb16.testcase │ │ ├── fromWkb17.testcase │ │ ├── fromWkb18.testcase │ │ ├── fromWkb19.testcase │ │ ├── fromWkb2.testcase │ │ ├── fromWkb20.testcase │ │ ├── fromWkb21.testcase │ │ ├── fromWkb22.testcase │ │ ├── fromWkb23.testcase │ │ ├── fromWkb3.testcase │ │ ├── fromWkb4.testcase │ │ ├── fromWkb5.testcase │ │ ├── fromWkb6.testcase │ │ ├── fromWkb7.testcase │ │ ├── fromWkb8.testcase │ │ ├── fromWkb9.testcase │ │ ├── fromewkt1.testcase │ │ ├── fromewkt10.testcase │ │ ├── fromewkt11.testcase │ │ ├── fromewkt12.testcase │ │ ├── fromewkt13.testcase │ │ ├── fromewkt14.testcase │ │ ├── fromewkt15.testcase │ │ ├── fromewkt16.testcase │ │ ├── fromewkt17.testcase │ │ ├── fromewkt18.testcase │ │ ├── fromewkt19.testcase │ │ ├── fromewkt2.testcase │ │ ├── fromewkt20.testcase │ │ ├── fromewkt22.testcase │ │ ├── fromewkt23.testcase │ │ ├── fromewkt24.testcase │ │ ├── fromewkt25.testcase │ │ ├── fromewkt26.testcase │ │ ├── fromewkt27.testcase │ │ ├── fromewkt28.testcase │ │ ├── fromewkt29.testcase │ │ ├── fromewkt3.testcase │ │ ├── fromewkt30.testcase │ │ ├── fromewkt31.testcase │ │ ├── fromewkt32.testcase │ │ ├── fromewkt33.testcase │ │ ├── fromewkt34.testcase │ │ ├── fromewkt35.testcase │ │ ├── fromewkt36.testcase │ │ ├── fromewkt37.testcase │ │ ├── fromewkt38.testcase │ │ ├── fromewkt39.testcase │ │ ├── fromewkt4.testcase │ │ ├── fromewkt5.testcase │ │ ├── fromewkt6.testcase │ │ ├── fromewkt7.testcase │ │ ├── fromewkt8.testcase │ │ ├── fromewkt9.testcase │ │ ├── fromgeojson1.testcase │ │ ├── fromgeojson10.testcase │ │ ├── fromgeojson11.testcase │ │ ├── fromgeojson12.testcase │ │ ├── fromgeojson13.testcase │ │ ├── fromgeojson14.testcase │ │ ├── fromgeojson15.testcase │ │ ├── fromgeojson16.testcase │ │ ├── fromgeojson17.testcase │ │ ├── fromgeojson18.testcase │ │ ├── fromgeojson19.testcase │ │ ├── fromgeojson2.testcase │ │ ├── fromgeojson20.testcase │ │ ├── fromgeojson21.testcase │ │ ├── fromgeojson22.testcase │ │ ├── fromgeojson23.testcase │ │ ├── fromgeojson24.testcase │ │ ├── fromgeojson25.testcase │ │ ├── fromgeojson26.testcase │ │ ├── fromgeojson27.testcase │ │ ├── fromgeojson28.testcase │ │ ├── fromgeojson29.testcase │ │ ├── fromgeojson3.testcase │ │ ├── fromgeojson30.testcase │ │ ├── fromgeojson31.testcase │ │ ├── fromgeojson32.testcase │ │ ├── fromgeojson4.testcase │ │ ├── fromgeojson5.testcase │ │ ├── fromgeojson6.testcase │ │ ├── fromgeojson7.testcase │ │ ├── fromgeojson8.testcase │ │ ├── fromgeojson9.testcase │ │ ├── fromgml1.testcase │ │ ├── fromgml10.testcase │ │ ├── fromgml11.testcase │ │ ├── fromgml12.testcase │ │ ├── fromgml13.testcase │ │ ├── fromgml14.testcase │ │ ├── fromgml15.testcase │ │ ├── fromgml16.testcase │ │ ├── fromgml17.testcase │ │ ├── fromgml18.testcase │ │ ├── fromgml19.testcase │ │ ├── fromgml2.testcase │ │ ├── fromgml20.testcase │ │ ├── fromgml21.testcase │ │ ├── fromgml22.testcase │ │ ├── fromgml23.testcase │ │ ├── fromgml24.testcase │ │ ├── fromgml25.testcase │ │ ├── fromgml26.testcase │ │ ├── fromgml27.testcase │ │ ├── fromgml28.testcase │ │ ├── fromgml29.testcase │ │ ├── fromgml3.testcase │ │ ├── fromgml30.testcase │ │ ├── fromgml31.testcase │ │ ├── fromgml32.testcase │ │ ├── fromgml33.testcase │ │ ├── fromgml34.testcase │ │ ├── fromgml35.testcase │ │ ├── fromgml36.testcase │ │ ├── fromgml37.testcase │ │ ├── fromgml38.testcase │ │ ├── fromgml39.testcase │ │ ├── fromgml4.testcase │ │ ├── fromgml40.testcase │ │ ├── fromgml41.testcase │ │ ├── fromgml43.testcase │ │ ├── fromgml5.testcase │ │ ├── fromgml6.testcase │ │ ├── fromgml7.testcase │ │ ├── fromgml8.testcase │ │ ├── fromgml9.testcase │ │ ├── ft_m.testcase │ │ ├── garsmbr1.testcase │ │ ├── garsmbr10.testcase │ │ ├── garsmbr11.testcase │ │ ├── garsmbr12.testcase │ │ ├── garsmbr13.testcase │ │ ├── garsmbr14.testcase │ │ ├── garsmbr15.testcase │ │ ├── garsmbr16.testcase │ │ ├── garsmbr17.testcase │ │ ├── garsmbr18.testcase │ │ ├── garsmbr2.testcase │ │ ├── garsmbr20.testcase │ │ ├── garsmbr21.testcase │ │ ├── garsmbr22.testcase │ │ ├── garsmbr23.testcase │ │ ├── garsmbr24.testcase │ │ ├── garsmbr25.testcase │ │ ├── garsmbr26.testcase │ │ ├── garsmbr27.testcase │ │ ├── garsmbr28.testcase │ │ ├── garsmbr29.testcase │ │ ├── garsmbr3.testcase │ │ ├── garsmbr30.testcase │ │ ├── garsmbr31.testcase │ │ ├── garsmbr32.testcase │ │ ├── garsmbr33.testcase │ │ ├── garsmbr34.testcase │ │ ├── garsmbr35.testcase │ │ ├── garsmbr36.testcase │ │ ├── garsmbr4.testcase │ │ ├── garsmbr5.testcase │ │ ├── garsmbr6.testcase │ │ ├── garsmbr7.testcase │ │ ├── garsmbr8.testcase │ │ ├── garsmbr9.testcase │ │ ├── geodesic-len1.testcase │ │ ├── geodesic-len2.testcase │ │ ├── geodesic-len3.testcase │ │ ├── geodesic-len4.testcase │ │ ├── geodesic-len5.testcase │ │ ├── geodesic-len6.testcase │ │ ├── geodesic-len7.testcase │ │ ├── geodesic-len8.testcase │ │ ├── geojson1.testcase │ │ ├── geojson2.testcase │ │ ├── geojson3.testcase │ │ ├── geojson4.testcase │ │ ├── geojson5.testcase │ │ ├── geojson6.testcase │ │ ├── geomcollfromtext1.testcase │ │ ├── geomcollfromtext2.testcase │ │ ├── geomconstraints1.testcase │ │ ├── geomconstraints10.testcase │ │ ├── geomconstraints11.testcase │ │ ├── geomconstraints12.testcase │ │ ├── geomconstraints13.testcase │ │ ├── geomconstraints14.testcase │ │ ├── geomconstraints15.testcase │ │ ├── geomconstraints16.testcase │ │ ├── geomconstraints17.testcase │ │ ├── geomconstraints18.testcase │ │ ├── geomconstraints19.testcase │ │ ├── geomconstraints2.testcase │ │ ├── geomconstraints20.testcase │ │ ├── geomconstraints21.testcase │ │ ├── geomconstraints22.testcase │ │ ├── geomconstraints23.testcase │ │ ├── geomconstraints24.testcase │ │ ├── geomconstraints25.testcase │ │ ├── geomconstraints26.testcase │ │ ├── geomconstraints27.testcase │ │ ├── geomconstraints28.testcase │ │ ├── geomconstraints3.testcase │ │ ├── geomconstraints4.testcase │ │ ├── geomconstraints5.testcase │ │ ├── geomconstraints6.testcase │ │ ├── geomconstraints7.testcase │ │ ├── geomconstraints8.testcase │ │ ├── geomconstraints9.testcase │ │ ├── geometryn.testcase │ │ ├── geometryn1.testcase │ │ ├── geometryn10.testcase │ │ ├── geometryn11.testcase │ │ ├── geometryn12.testcase │ │ ├── geometryn13.testcase │ │ ├── geometryn14.testcase │ │ ├── geometryn15.testcase │ │ ├── geometryn16.testcase │ │ ├── geometryn17.testcase │ │ ├── geometryn18.testcase │ │ ├── geometryn19.testcase │ │ ├── geometryn2.testcase │ │ ├── geometryn20.testcase │ │ ├── geometryn3.testcase │ │ ├── geometryn4.testcase │ │ ├── geometryn5.testcase │ │ ├── geometryn6.testcase │ │ ├── geometryn7.testcase │ │ ├── geometryn8.testcase │ │ ├── geometryn9.testcase │ │ ├── geomfromewkb1.testcase │ │ ├── geomfromewkb2.testcase │ │ ├── geomfromkml1.testcase │ │ ├── geomfromkml10.testcase │ │ ├── geomfromkml11.testcase │ │ ├── geomfromkml12.testcase │ │ ├── geomfromkml13.testcase │ │ ├── geomfromkml14.testcase │ │ ├── geomfromkml15.testcase │ │ ├── geomfromkml16.testcase │ │ ├── geomfromkml17.testcase │ │ ├── geomfromkml18.testcase │ │ ├── geomfromkml19.testcase │ │ ├── geomfromkml2.testcase │ │ ├── geomfromkml20.testcase │ │ ├── geomfromkml21.testcase │ │ ├── geomfromkml22.testcase │ │ ├── geomfromkml23.testcase │ │ ├── geomfromkml3.testcase │ │ ├── geomfromkml4.testcase │ │ ├── geomfromkml5.testcase │ │ ├── geomfromkml6.testcase │ │ ├── geomfromkml7.testcase │ │ ├── geomfromkml8.testcase │ │ ├── geomfromkml9.testcase │ │ ├── geomfromtext1.testcase │ │ ├── geomfromtext10.testcase │ │ ├── geomfromtext11.testcase │ │ ├── geomfromtext12.testcase │ │ ├── geomfromtext13.testcase │ │ ├── geomfromtext14.testcase │ │ ├── geomfromtext15.testcase │ │ ├── geomfromtext16.testcase │ │ ├── geomfromtext17.testcase │ │ ├── geomfromtext18.testcase │ │ ├── geomfromtext19.testcase │ │ ├── geomfromtext2.testcase │ │ ├── geomfromtext20.testcase │ │ ├── geomfromtext21.testcase │ │ ├── geomfromtext22.testcase │ │ ├── geomfromtext23.testcase │ │ ├── geomfromtext24.testcase │ │ ├── geomfromtext25.testcase │ │ ├── geomfromtext26.testcase │ │ ├── geomfromtext27.testcase │ │ ├── geomfromtext28.testcase │ │ ├── geomfromtext29.testcase │ │ ├── geomfromtext3.testcase │ │ ├── geomfromtext30.testcase │ │ ├── geomfromtext31.testcase │ │ ├── geomfromtext32.testcase │ │ ├── geomfromtext33.testcase │ │ ├── geomfromtext34.testcase │ │ ├── geomfromtext35.testcase │ │ ├── geomfromtext36.testcase │ │ ├── geomfromtext37.testcase │ │ ├── geomfromtext38.testcase │ │ ├── geomfromtext39.testcase │ │ ├── geomfromtext4.testcase │ │ ├── geomfromtext40.testcase │ │ ├── geomfromtext41.testcase │ │ ├── geomfromtext42.testcase │ │ ├── geomfromtext43.testcase │ │ ├── geomfromtext44.testcase │ │ ├── geomfromtext45.testcase │ │ ├── geomfromtext5.testcase │ │ ├── geomfromtext6.testcase │ │ ├── geomfromtext7.testcase │ │ ├── geomfromtext8.testcase │ │ ├── geomfromtext9.testcase │ │ ├── geomtype1.testcase │ │ ├── geomtype10.testcase │ │ ├── geomtype11.testcase │ │ ├── geomtype12.testcase │ │ ├── geomtype13.testcase │ │ ├── geomtype14.testcase │ │ ├── geomtype15.testcase │ │ ├── geomtype16.testcase │ │ ├── geomtype17.testcase │ │ ├── geomtype18.testcase │ │ ├── geomtype19.testcase │ │ ├── geomtype2.testcase │ │ ├── geomtype20.testcase │ │ ├── geomtype21.testcase │ │ ├── geomtype22.testcase │ │ ├── geomtype23.testcase │ │ ├── geomtype24.testcase │ │ ├── geomtype25.testcase │ │ ├── geomtype26.testcase │ │ ├── geomtype27.testcase │ │ ├── geomtype28.testcase │ │ ├── geomtype29.testcase │ │ ├── geomtype3.testcase │ │ ├── geomtype30.testcase │ │ ├── geomtype31.testcase │ │ ├── geomtype32.testcase │ │ ├── geomtype33.testcase │ │ ├── geomtype34.testcase │ │ ├── geomtype35.testcase │ │ ├── geomtype36.testcase │ │ ├── geomtype37.testcase │ │ ├── geomtype38.testcase │ │ ├── geomtype39.testcase │ │ ├── geomtype4.testcase │ │ ├── geomtype40.testcase │ │ ├── geomtype41.testcase │ │ ├── geomtype42.testcase │ │ ├── geomtype43.testcase │ │ ├── geomtype44.testcase │ │ ├── geomtype45.testcase │ │ ├── geomtype46.testcase │ │ ├── geomtype47.testcase │ │ ├── geomtype48.testcase │ │ ├── geomtype49.testcase │ │ ├── geomtype5.testcase │ │ ├── geomtype50.testcase │ │ ├── geomtype51.testcase │ │ ├── geomtype52.testcase │ │ ├── geomtype53.testcase │ │ ├── geomtype54.testcase │ │ ├── geomtype55.testcase │ │ ├── geomtype56.testcase │ │ ├── geomtype57.testcase │ │ ├── geomtype58.testcase │ │ ├── geomtype59.testcase │ │ ├── geomtype6.testcase │ │ ├── geomtype60.testcase │ │ ├── geomtype61.testcase │ │ ├── geomtype62.testcase │ │ ├── geomtype63.testcase │ │ ├── geomtype64.testcase │ │ ├── geomtype65.testcase │ │ ├── geomtype66.testcase │ │ ├── geomtype67.testcase │ │ ├── geomtype68.testcase │ │ ├── geomtype69.testcase │ │ ├── geomtype7.testcase │ │ ├── geomtype8.testcase │ │ ├── geomtype9.testcase │ │ ├── gml1.testcase │ │ ├── gml10.testcase │ │ ├── gml11.testcase │ │ ├── gml12.testcase │ │ ├── gml13.testcase │ │ ├── gml14.testcase │ │ ├── gml15.testcase │ │ ├── gml16.testcase │ │ ├── gml2.testcase │ │ ├── gml3.testcase │ │ ├── gml4.testcase │ │ ├── gml5.testcase │ │ ├── gml6.testcase │ │ ├── gml7.testcase │ │ ├── gml8.testcase │ │ ├── gml9.testcase │ │ ├── greatcircle-badblob.testcase │ │ ├── greatcircle-poly.testcase │ │ ├── greatcircle-poly2.testcase │ │ ├── greatcircle-poly3.testcase │ │ ├── greatcircle-poly4.testcase │ │ ├── greatcircle-poly5.testcase │ │ ├── greatcircle-poly6.testcase │ │ ├── greatcircle-poly7.testcase │ │ ├── greatcircle-text.testcase │ │ ├── greatcircle.testcase │ │ ├── in_m.testcase │ │ ├── ind_ch_m.testcase │ │ ├── ind_ft_m.testcase │ │ ├── ind_yd_m.testcase │ │ ├── is3d1.testcase │ │ ├── is3d2.testcase │ │ ├── is3d3.testcase │ │ ├── is3d4.testcase │ │ ├── is3d5.testcase │ │ ├── is3d6.testcase │ │ ├── isXblob5.testcase │ │ ├── isXblob6.testcase │ │ ├── isXblob7.testcase │ │ ├── isempty.testcase │ │ ├── isempty2.testcase │ │ ├── isempty3.testcase │ │ ├── isempty4.testcase │ │ ├── ismeasured1.testcase │ │ ├── ismeasured2.testcase │ │ ├── ismeasured3.testcase │ │ ├── ismeasured4.testcase │ │ ├── ismeasured5.testcase │ │ ├── ismeasured6.testcase │ │ ├── k3b-icon.png │ │ ├── km_m.testcase │ │ ├── ktorrent_grad1.jpg │ │ ├── ktorrent_sidebar.gif │ │ ├── lhr1.testcase │ │ ├── lhr2.testcase │ │ ├── lhr3.testcase │ │ ├── lhr4.testcase │ │ ├── lhr5.testcase │ │ ├── lhr6.testcase │ │ ├── linefromtext1.testcase │ │ ├── linefromtext2.testcase │ │ ├── linesfromrings1.testcase │ │ ├── linesfromrings2.testcase │ │ ├── linesfromrings3.testcase │ │ ├── linesfromrings4.testcase │ │ ├── linesfromrings5.testcase │ │ ├── linesfromrings6.testcase │ │ ├── linesfromrings7.testcase │ │ ├── link_m.testcase │ │ ├── locatemeasure1.testcase │ │ ├── locatemeasure10.testcase │ │ ├── locatemeasure11.testcase │ │ ├── locatemeasure12.testcase │ │ ├── locatemeasure13.testcase │ │ ├── locatemeasure14.testcase │ │ ├── locatemeasure15.testcase │ │ ├── locatemeasure16.testcase │ │ ├── locatemeasure17.testcase │ │ ├── locatemeasure2.testcase │ │ ├── locatemeasure3.testcase │ │ ├── locatemeasure4.testcase │ │ ├── locatemeasure5.testcase │ │ ├── locatemeasure6.testcase │ │ ├── locatemeasure7.testcase │ │ ├── locatemeasure8.testcase │ │ ├── locatemeasure9.testcase │ │ ├── m_ch.testcase │ │ ├── m_cm.testcase │ │ ├── m_dm.testcase │ │ ├── m_fath.testcase │ │ ├── m_ft-text.testcase │ │ ├── m_ft.testcase │ │ ├── m_in.testcase │ │ ├── m_in_us.testcase │ │ ├── m_ind_ch.testcase │ │ ├── m_ind_ft.testcase │ │ ├── m_ind_yd.testcase │ │ ├── m_km.testcase │ │ ├── m_ln.testcase │ │ ├── m_mi.testcase │ │ ├── m_mm.testcase │ │ ├── m_nm.testcase │ │ ├── m_us_ch.testcase │ │ ├── m_us_ft.testcase │ │ ├── m_usmi.testcase │ │ ├── m_yd.testcase │ │ ├── m_yd_us.testcase │ │ ├── makeline.testcase │ │ ├── makeline10.testcase │ │ ├── makeline11.testcase │ │ ├── makeline12.testcase │ │ ├── makeline13.testcase │ │ ├── makeline14.testcase │ │ ├── makeline15.testcase │ │ ├── makeline16.testcase │ │ ├── makeline17.testcase │ │ ├── makeline18.testcase │ │ ├── makeline19.testcase │ │ ├── makeline2.testcase │ │ ├── makeline20.testcase │ │ ├── makeline21.testcase │ │ ├── makeline22.testcase │ │ ├── makeline23.testcase │ │ ├── makeline24.testcase │ │ ├── makeline3.testcase │ │ ├── makeline4.testcase │ │ ├── makeline5.testcase │ │ ├── makeline6.testcase │ │ ├── makeline7.testcase │ │ ├── makeline8.testcase │ │ ├── makeline9.testcase │ │ ├── makepoint-null1.testcase │ │ ├── makepoint-null2.testcase │ │ ├── makepoint-null3.testcase │ │ ├── makepoint-null4.testcase │ │ ├── makepoint-null5.testcase │ │ ├── makepoint-null6.testcase │ │ ├── makepoint-null7.testcase │ │ ├── makepoint1.testcase │ │ ├── makepoint10.testcase │ │ ├── makepoint11.testcase │ │ ├── makepoint12.testcase │ │ ├── makepoint13.testcase │ │ ├── makepoint14.testcase │ │ ├── makepoint15.testcase │ │ ├── makepoint2.testcase │ │ ├── makepoint3.testcase │ │ ├── makepoint4.testcase │ │ ├── makepoint5.testcase │ │ ├── makepoint6.testcase │ │ ├── makepoint7.testcase │ │ ├── makepoint8.testcase │ │ ├── makepoint9.testcase │ │ ├── makepointm-null1.testcase │ │ ├── makepointm-null2.testcase │ │ ├── makepointm-null3.testcase │ │ ├── makepointm-null4.testcase │ │ ├── makepointm-null5.testcase │ │ ├── makepointm-null6.testcase │ │ ├── makepointm-null7.testcase │ │ ├── makepointm-null8.testcase │ │ ├── makepointz-null1.testcase │ │ ├── makepointz-null2.testcase │ │ ├── makepointz-null3.testcase │ │ ├── makepointz-null4.testcase │ │ ├── makepointz-null5.testcase │ │ ├── makepointz-null6.testcase │ │ ├── makepointz-null7.testcase │ │ ├── makepointz-null8.testcase │ │ ├── makepointzm-null1.testcase │ │ ├── makepointzm-null10.testcase │ │ ├── makepointzm-null2.testcase │ │ ├── makepointzm-null3.testcase │ │ ├── makepointzm-null4.testcase │ │ ├── makepointzm-null5.testcase │ │ ├── makepointzm-null6.testcase │ │ ├── makepointzm-null7.testcase │ │ ├── makepointzm-null8.testcase │ │ ├── makepointzm-null9.testcase │ │ ├── maxm1.testcase │ │ ├── maxm2.testcase │ │ ├── maxm3.testcase │ │ ├── maxm4.testcase │ │ ├── maxm5.testcase │ │ ├── maxm6.testcase │ │ ├── maxm7.testcase │ │ ├── maxz1.testcase │ │ ├── maxz2.testcase │ │ ├── maxz3.testcase │ │ ├── maxz4.testcase │ │ ├── maxz5.testcase │ │ ├── maxz6.testcase │ │ ├── maxz7.testcase │ │ ├── mbr1.testcase │ │ ├── mbr10.testcase │ │ ├── mbr11.testcase │ │ ├── mbr12.testcase │ │ ├── mbr13.testcase │ │ ├── mbr14.testcase │ │ ├── mbr15.testcase │ │ ├── mbr16.testcase │ │ ├── mbr17.testcase │ │ ├── mbr18.testcase │ │ ├── mbr19.testcase │ │ ├── mbr2.testcase │ │ ├── mbr20.testcase │ │ ├── mbr21.testcase │ │ ├── mbr22.testcase │ │ ├── mbr23.testcase │ │ ├── mbr24.testcase │ │ ├── mbr25.testcase │ │ ├── mbr26.testcase │ │ ├── mbr27.testcase │ │ ├── mbr28.testcase │ │ ├── mbr29.testcase │ │ ├── mbr3.testcase │ │ ├── mbr30.testcase │ │ ├── mbr31.testcase │ │ ├── mbr32.testcase │ │ ├── mbr4.testcase │ │ ├── mbr5.testcase │ │ ├── mbr6.testcase │ │ ├── mbr7.testcase │ │ ├── mbr8.testcase │ │ ├── mbr9.testcase │ │ ├── mbrminmax1.testcase │ │ ├── mbrminmax2.testcase │ │ ├── mbrminmax3.testcase │ │ ├── mbrminmax4.testcase │ │ ├── mbrminmax5.testcase │ │ ├── mbrminmax6.testcase │ │ ├── mbrminmax7.testcase │ │ ├── mbrminmax8.testcase │ │ ├── mi_m.testcase │ │ ├── minm1.testcase │ │ ├── minm2.testcase │ │ ├── minm3.testcase │ │ ├── minm4.testcase │ │ ├── minm5.testcase │ │ ├── minm6.testcase │ │ ├── minz1.testcase │ │ ├── minz2.testcase │ │ ├── minz3.testcase │ │ ├── minz4.testcase │ │ ├── minz5.testcase │ │ ├── minz6.testcase │ │ ├── mlinefromtext1.testcase │ │ ├── mlinefromtext2.testcase │ │ ├── mm_m.testcase │ │ ├── mpointfromtext1.testcase │ │ ├── mpointfromtext2.testcase │ │ ├── mpolygonfromtext1.testcase │ │ ├── mpolygonfromtext2.testcase │ │ ├── ndims1.testcase │ │ ├── ndims2.testcase │ │ ├── ndims3.testcase │ │ ├── ndims4.testcase │ │ ├── ndims5.testcase │ │ ├── ndims6.testcase │ │ ├── nm_m.testcase │ │ ├── normalizelonlat1.testcase │ │ ├── normalizelonlat10.testcase │ │ ├── normalizelonlat11.testcase │ │ ├── normalizelonlat12.testcase │ │ ├── normalizelonlat13.testcase │ │ ├── normalizelonlat14.testcase │ │ ├── normalizelonlat15.testcase │ │ ├── normalizelonlat16.testcase │ │ ├── normalizelonlat17.testcase │ │ ├── normalizelonlat18.testcase │ │ ├── normalizelonlat19.testcase │ │ ├── normalizelonlat2.testcase │ │ ├── normalizelonlat20.testcase │ │ ├── normalizelonlat21.testcase │ │ ├── normalizelonlat22.testcase │ │ ├── normalizelonlat23.testcase │ │ ├── normalizelonlat24.testcase │ │ ├── normalizelonlat25.testcase │ │ ├── normalizelonlat26.testcase │ │ ├── normalizelonlat27.testcase │ │ ├── normalizelonlat3.testcase │ │ ├── normalizelonlat4.testcase │ │ ├── normalizelonlat5.testcase │ │ ├── normalizelonlat6.testcase │ │ ├── normalizelonlat7.testcase │ │ ├── normalizelonlat8.testcase │ │ ├── normalizelonlat9.testcase │ │ ├── npoints1.testcase │ │ ├── npoints2.testcase │ │ ├── npoints3.testcase │ │ ├── npoints4.testcase │ │ ├── npoints5.testcase │ │ ├── npoints6.testcase │ │ ├── nrings1.testcase │ │ ├── nrings2.testcase │ │ ├── nrings3.testcase │ │ ├── nrings4.testcase │ │ ├── nrings5.testcase │ │ ├── nrings6.testcase │ │ ├── numgeometries1.testcase │ │ ├── numgeometries2.testcase │ │ ├── numgeometries3.testcase │ │ ├── numgeometries4.testcase │ │ ├── numgeometries5.testcase │ │ ├── numgeometries6.testcase │ │ ├── pointfromtext1.testcase │ │ ├── pointfromtext2.testcase │ │ ├── pointn1.testcase │ │ ├── pointn10.testcase │ │ ├── pointn11.testcase │ │ ├── pointn12.testcase │ │ ├── pointn13.testcase │ │ ├── pointn14.testcase │ │ ├── pointn15.testcase │ │ ├── pointn2.testcase │ │ ├── pointn3.testcase │ │ ├── pointn4.testcase │ │ ├── pointn5.testcase │ │ ├── pointn6.testcase │ │ ├── pointn7.testcase │ │ ├── pointn8.testcase │ │ ├── pointn9.testcase │ │ ├── polygonfromtext1.testcase │ │ ├── polygonfromtext2.testcase │ │ ├── reflectcoords1.testcase │ │ ├── reflectcoords10.testcase │ │ ├── reflectcoords11.testcase │ │ ├── reflectcoords12.testcase │ │ ├── reflectcoords13.testcase │ │ ├── reflectcoords14.testcase │ │ ├── reflectcoords15.testcase │ │ ├── reflectcoords16.testcase │ │ ├── reflectcoords17.testcase │ │ ├── reflectcoords2.testcase │ │ ├── reflectcoords3.testcase │ │ ├── reflectcoords4.testcase │ │ ├── reflectcoords5.testcase │ │ ├── reflectcoords6.testcase │ │ ├── reflectcoords7.testcase │ │ ├── reflectcoords8.testcase │ │ ├── reflectcoords9.testcase │ │ ├── reverse1.testcase │ │ ├── reverse2.testcase │ │ ├── reverse3.testcase │ │ ├── reverse4.testcase │ │ ├── reverse5.testcase │ │ ├── reverse6.testcase │ │ ├── ring1.testcase │ │ ├── ring10.testcase │ │ ├── ring11.testcase │ │ ├── ring12.testcase │ │ ├── ring13.testcase │ │ ├── ring14.testcase │ │ ├── ring15.testcase │ │ ├── ring16.testcase │ │ ├── ring17.testcase │ │ ├── ring18.testcase │ │ ├── ring19.testcase │ │ ├── ring2.testcase │ │ ├── ring20.testcase │ │ ├── ring21.testcase │ │ ├── ring22.testcase │ │ ├── ring23.testcase │ │ ├── ring24.testcase │ │ ├── ring25.testcase │ │ ├── ring26.testcase │ │ ├── ring27.testcase │ │ ├── ring28.testcase │ │ ├── ring3.testcase │ │ ├── ring4.testcase │ │ ├── ring5.testcase │ │ ├── ring6.testcase │ │ ├── ring7.testcase │ │ ├── ring8.testcase │ │ ├── ring9.testcase │ │ ├── rotatecoords1.testcase │ │ ├── rotatecoords10.testcase │ │ ├── rotatecoords11.testcase │ │ ├── rotatecoords12.testcase │ │ ├── rotatecoords13.testcase │ │ ├── rotatecoords14.testcase │ │ ├── rotatecoords2.testcase │ │ ├── rotatecoords3.testcase │ │ ├── rotatecoords4.testcase │ │ ├── rotatecoords5.testcase │ │ ├── rotatecoords6.testcase │ │ ├── rotatecoords7.testcase │ │ ├── rotatecoords8.testcase │ │ ├── rotatecoords9.testcase │ │ ├── routing1.testcase │ │ ├── routing2.testcase │ │ ├── routing3.testcase │ │ ├── routing4.testcase │ │ ├── routing5.testcase │ │ ├── sandro.jpg │ │ ├── sanitizeGeometry1.testcase │ │ ├── sanitizeGeometry10.testcase │ │ ├── sanitizeGeometry11.testcase │ │ ├── sanitizeGeometry12.testcase │ │ ├── sanitizeGeometry13.testcase │ │ ├── sanitizeGeometry14.testcase │ │ ├── sanitizeGeometry15.testcase │ │ ├── sanitizeGeometry16.testcase │ │ ├── sanitizeGeometry2.testcase │ │ ├── sanitizeGeometry3.testcase │ │ ├── sanitizeGeometry4.testcase │ │ ├── sanitizeGeometry5.testcase │ │ ├── sanitizeGeometry6.testcase │ │ ├── sanitizeGeometry7.testcase │ │ ├── sanitizeGeometry8.testcase │ │ ├── sanitizeGeometry9.testcase │ │ ├── scalecoords1.testcase │ │ ├── scalecoords10.testcase │ │ ├── scalecoords11.testcase │ │ ├── scalecoords12.testcase │ │ ├── scalecoords13.testcase │ │ ├── scalecoords2.testcase │ │ ├── scalecoords3.testcase │ │ ├── scalecoords4.testcase │ │ ├── scalecoords5.testcase │ │ ├── scalecoords6.testcase │ │ ├── scalecoords7.testcase │ │ ├── scalecoords8.testcase │ │ ├── scalecoords9.testcase │ │ ├── shiftcoords1.testcase │ │ ├── shiftcoords10.testcase │ │ ├── shiftcoords11.testcase │ │ ├── shiftcoords12.testcase │ │ ├── shiftcoords13.testcase │ │ ├── shiftcoords14.testcase │ │ ├── shiftcoords15.testcase │ │ ├── shiftcoords2.testcase │ │ ├── shiftcoords3.testcase │ │ ├── shiftcoords4.testcase │ │ ├── shiftcoords5.testcase │ │ ├── shiftcoords6.testcase │ │ ├── shiftcoords7.testcase │ │ ├── shiftcoords8.testcase │ │ ├── shiftcoords9.testcase │ │ ├── shiftlongitude1.testcase │ │ ├── shiftlongitude10.testcase │ │ ├── shiftlongitude11.testcase │ │ ├── shiftlongitude12.testcase │ │ ├── shiftlongitude13.testcase │ │ ├── shiftlongitude14.testcase │ │ ├── shiftlongitude15.testcase │ │ ├── shiftlongitude16.testcase │ │ ├── shiftlongitude17.testcase │ │ ├── shiftlongitude18.testcase │ │ ├── shiftlongitude19.testcase │ │ ├── shiftlongitude2.testcase │ │ ├── shiftlongitude20.testcase │ │ ├── shiftlongitude21.testcase │ │ ├── shiftlongitude22.testcase │ │ ├── shiftlongitude23.testcase │ │ ├── shiftlongitude24.testcase │ │ ├── shiftlongitude25.testcase │ │ ├── shiftlongitude26.testcase │ │ ├── shiftlongitude3.testcase │ │ ├── shiftlongitude4.testcase │ │ ├── shiftlongitude5.testcase │ │ ├── shiftlongitude6.testcase │ │ ├── shiftlongitude7.testcase │ │ ├── shiftlongitude8.testcase │ │ ├── shiftlongitude9.testcase │ │ ├── spatialindex.testcase │ │ ├── srid1.testcase │ │ ├── srid10.testcase │ │ ├── srid11.testcase │ │ ├── srid2.testcase │ │ ├── srid3.testcase │ │ ├── srid4.testcase │ │ ├── srid5.testcase │ │ ├── srid6.testcase │ │ ├── srid7.testcase │ │ ├── srid8.testcase │ │ ├── srid9.testcase │ │ ├── st_m1.testcase │ │ ├── st_m2.testcase │ │ ├── st_m3.testcase │ │ ├── st_m4.testcase │ │ ├── st_m5.testcase │ │ ├── st_m6.testcase │ │ ├── st_m8.testcase │ │ ├── st_x1.testcase │ │ ├── st_x2.testcase │ │ ├── st_x3.testcase │ │ ├── st_x4.testcase │ │ ├── st_x5.testcase │ │ ├── st_x6.testcase │ │ ├── st_x7.testcase │ │ ├── st_x8.testcase │ │ ├── st_x9.testcase │ │ ├── st_y1.testcase │ │ ├── st_y2.testcase │ │ ├── st_y3.testcase │ │ ├── st_y4.testcase │ │ ├── st_y5.testcase │ │ ├── st_y7.testcase │ │ ├── st_y8.testcase │ │ ├── st_y9.testcase │ │ ├── st_z1.testcase │ │ ├── st_z2.testcase │ │ ├── st_z3.testcase │ │ ├── st_z4.testcase │ │ ├── st_z5.testcase │ │ ├── st_z6.testcase │ │ ├── st_z7.testcase │ │ ├── st_z8.testcase │ │ ├── st_z9.testcase │ │ ├── startpoint1.testcase │ │ ├── startpoint2.testcase │ │ ├── startpoint3.testcase │ │ ├── swapcoords1.testcase │ │ ├── swapcoords10.testcase │ │ ├── swapcoords11.testcase │ │ ├── swapcoords2.testcase │ │ ├── swapcoords3.testcase │ │ ├── swapcoords4.testcase │ │ ├── swapcoords5.testcase │ │ ├── swapcoords6.testcase │ │ ├── swapcoords7.testcase │ │ ├── swapcoords8.testcase │ │ ├── swapcoords9.testcase │ │ ├── testFDO.sqlite │ │ ├── testFGF.sqlite │ │ ├── testdb1.sqlite │ │ ├── togars1.testcase │ │ ├── togars10.testcase │ │ ├── togars11.testcase │ │ ├── togars12.testcase │ │ ├── togars2.testcase │ │ ├── togars3.testcase │ │ ├── togars4.testcase │ │ ├── togars5.testcase │ │ ├── togars6.testcase │ │ ├── togars7.testcase │ │ ├── togars8.testcase │ │ ├── togars9.testcase │ │ ├── translate1.testcase │ │ ├── translate10.testcase │ │ ├── translate11.testcase │ │ ├── translate12.testcase │ │ ├── translate13.testcase │ │ ├── translate14.testcase │ │ ├── translate15.testcase │ │ ├── translate16.testcase │ │ ├── translate17.testcase │ │ ├── translate18.testcase │ │ ├── translate19.testcase │ │ ├── translate2.testcase │ │ ├── translate3.testcase │ │ ├── translate4.testcase │ │ ├── translate5.testcase │ │ ├── translate6.testcase │ │ ├── translate7.testcase │ │ ├── translate8.testcase │ │ ├── translate9.testcase │ │ ├── trivial.sqlite_RO │ │ ├── uncompressgeom1.testcase │ │ ├── uncompressgeom2.testcase │ │ ├── uncompressgeom3.testcase │ │ ├── us_ch_m.testcase │ │ ├── us_ft_m.testcase │ │ ├── us_in_m.testcase │ │ ├── us_mi_m.testcase │ │ ├── us_yd_m.testcase │ │ ├── wkb1.testcase │ │ ├── wkb10.testcase │ │ ├── wkb11.testcase │ │ ├── wkb12.testcase │ │ ├── wkb13.testcase │ │ ├── wkb14.testcase │ │ ├── wkb15.testcase │ │ ├── wkb16.testcase │ │ ├── wkb17.testcase │ │ ├── wkb18.testcase │ │ ├── wkb19.testcase │ │ ├── wkb2.testcase │ │ ├── wkb20.testcase │ │ ├── wkb21.testcase │ │ ├── wkb22.testcase │ │ ├── wkb23.testcase │ │ ├── wkb24.testcase │ │ ├── wkb25.testcase │ │ ├── wkb26.testcase │ │ ├── wkb27.testcase │ │ ├── wkb28.testcase │ │ ├── wkb29.testcase │ │ ├── wkb3.testcase │ │ ├── wkb30.testcase │ │ ├── wkb31.testcase │ │ ├── wkb32.testcase │ │ ├── wkb33.testcase │ │ ├── wkb34.testcase │ │ ├── wkb35.testcase │ │ ├── wkb36.testcase │ │ ├── wkb4.testcase │ │ ├── wkb5.testcase │ │ ├── wkb6.testcase │ │ ├── wkb7.testcase │ │ ├── wkb8.testcase │ │ ├── wkb9.testcase │ │ ├── wkbtosql1.testcase │ │ ├── wkbtosql2.testcase │ │ ├── wkbtosql3.testcase │ │ ├── wkttosql1.testcase │ │ ├── wkttosql2.testcase │ │ ├── wkttosql3.testcase │ │ └── yd_m.testcase │ │ ├── test-legacy-2.3.1.sqlite │ │ ├── test-legacy-3.0.1.sqlite │ │ ├── test_under_valgrind.sh │ │ ├── testcase1.csv │ │ └── testcase1.xls ├── sqlite3.h └── sqlite3ext.h ├── test └── memory_database.test.coffee └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/Vagrantfile -------------------------------------------------------------------------------- /binding.gyp.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/binding.gyp.dev -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | node-gyp configure 2 | -------------------------------------------------------------------------------- /dist/darwin/x64/mod_spatialite.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/dist/darwin/x64/mod_spatialite.dylib -------------------------------------------------------------------------------- /dist/linux/ia32/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/linux/x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/linux/x64/mod_spatialite.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/dist/linux/x64/mod_spatialite.so -------------------------------------------------------------------------------- /dist/win32/ia32/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/win32/x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/win32/x64/mod_spatialite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/dist/win32/x64/mod_spatialite.dll -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/spatialite'); 2 | -------------------------------------------------------------------------------- /install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/install_deps.sh -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./spatialite'); 2 | -------------------------------------------------------------------------------- /lib/spatialite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/lib/spatialite.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/package.json -------------------------------------------------------------------------------- /src/config/linux/ia32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/config/linux/ia32/config.h -------------------------------------------------------------------------------- /src/config/linux/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/config/linux/x64/config.h -------------------------------------------------------------------------------- /src/config/mac/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/config/mac/x64/config.h -------------------------------------------------------------------------------- /src/config/win/ia32/config-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/config/win/ia32/config-msvc.h -------------------------------------------------------------------------------- /src/config/win/x64/config-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/config/win/x64/config-msvc.h -------------------------------------------------------------------------------- /src/spatialite/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/AUTHORS -------------------------------------------------------------------------------- /src/spatialite/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/Android.mk -------------------------------------------------------------------------------- /src/spatialite/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/COPYING -------------------------------------------------------------------------------- /src/spatialite/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/Doxyfile.in -------------------------------------------------------------------------------- /src/spatialite/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/INSTALL -------------------------------------------------------------------------------- /src/spatialite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/README -------------------------------------------------------------------------------- /src/spatialite/README.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/README.coverage -------------------------------------------------------------------------------- /src/spatialite/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/aclocal.m4 -------------------------------------------------------------------------------- /src/spatialite/config-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/config-msvc.h -------------------------------------------------------------------------------- /src/spatialite/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/config.guess -------------------------------------------------------------------------------- /src/spatialite/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/config.h.in -------------------------------------------------------------------------------- /src/spatialite/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/config.sub -------------------------------------------------------------------------------- /src/spatialite/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/configure -------------------------------------------------------------------------------- /src/spatialite/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/configure.ac -------------------------------------------------------------------------------- /src/spatialite/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/depcomp -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/binding.gyp -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/AUTHORS -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/COPYING -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/Doxyfile.in -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/INSTALL -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/README -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/aclocal.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/config.guess -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/config.h.in -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/config.sub -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/configure -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/configure.ac -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/depcomp -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/freexl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/freexl.pc.in -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/install-sh -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/ltmain.sh -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/makefile.vc -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/missing -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/nmake.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/nmake.opt -------------------------------------------------------------------------------- /src/spatialite/deps/freexl/freexl/src/freexl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/freexl/freexl/src/freexl.c -------------------------------------------------------------------------------- /src/spatialite/deps/geos/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/binding.gyp -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/AUTHORS -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/COPYING -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/ChangeLog -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/INSTALL -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/NEWS -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/README -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/TODO -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/aclocal.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/acsite.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/acsite.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/autogen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/autogen.bat -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/capi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/capi/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/capi/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/capi/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/capi/geos_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/capi/geos_c.cpp -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/capi/geos_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/capi/geos_c.h -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/capi/geos_c.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/capi/geos_c.h.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/config.guess -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/config.sub -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/configure -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/configure.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/depcomp -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/doc/Doxyfile -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/doc/Doxyfile.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/doc/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/doc/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/doc/README -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/doc/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/doc/example.cpp -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/geos_svn_revision.h: -------------------------------------------------------------------------------- 1 | #define GEOS_SVN_REVISION 3765 2 | -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/include/geos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/include/geos.h -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/install-sh -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/ltmain.sh -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/macros/geos.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/macros/geos.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/macros/python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/macros/python.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/macros/ruby.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/macros/ruby.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/makefile.vc -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/missing -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/nmake.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/nmake.opt -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/php/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/php/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/php/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/php/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/php/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/php/README -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/php/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/php/TODO -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/php/geos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/php/geos.c -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/php/php_geos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/php/php_geos.h -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/py-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/py-compile -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/src/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/src/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/src/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/src/Makefile.vc -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/src/dirlist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/src/dirlist.mk -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/src/inlines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/src/inlines.cpp -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/swig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/swig/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/swig/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/swig/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/swig/geos.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/swig/geos.i -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/swig/geos.i.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/swig/geos.i.in -------------------------------------------------------------------------------- /src/spatialite/deps/geos/geos/swig/ruby/ruby.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/geos/swig/ruby/ruby.i -------------------------------------------------------------------------------- /src/spatialite/deps/geos/rename_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/geos/rename_files.sh -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/binding.gyp -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/ABOUT-NLS -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/AUTHORS -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/COPYING -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/COPYING.LIB -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/ChangeLog -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/DEPENDENCIES -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/DESIGN -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/HACKING -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/Makefile.devel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/Makefile.devel -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/NEWS -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/NOTES -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/PORTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/PORTS -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/README -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/README.djgpp: -------------------------------------------------------------------------------- 1 | Installation on DJGPP: 2 | 3 | See the file djgpp/README. 4 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/README.woe32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/README.woe32 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/THANKS -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/aclocal.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/autogen.sh -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/config.h.in -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/configure -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/configure.ac -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/djgpp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/djgpp/README -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/aliases.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/aliases2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/aliases2.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ascii.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/atarist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/atarist.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/big5.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/c99.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/c99.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ces_big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ces_big5.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ces_gbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ces_gbk.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cns11643.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cns11643.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1046.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1124.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1124.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1125.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1125.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1129.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1129.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1131.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1131.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1133.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1133.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1161.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1162.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1162.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1163.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1250.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1251.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1251.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1252.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1252.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1253.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1254.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1255.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1256.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1257.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1257.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp1258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp1258.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp437.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp737.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp737.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp775.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp775.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp850.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp852.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp852.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp853.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp853.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp855.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp856.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp856.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp857.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp857.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp858.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp858.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp860.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp861.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp861.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp862.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp862.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp863.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp863.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp864.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp864.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp865.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp866.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp866.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp869.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp869.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp874.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp874.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp922.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp922.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp932.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp932.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp932ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp932ext.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp936.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp936.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp936ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp936ext.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp943.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp943.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp949.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp949.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp950.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp950.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/cp950ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/cp950ext.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/euc_cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/euc_cn.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/euc_jp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/euc_jp.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/euc_kr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/euc_kr.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/euc_tw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/euc_tw.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/flags.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/flushwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/flushwc.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/gb12345.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/gb12345.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/gb18030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/gb18030.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/gb2312.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/gb2312.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/gbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/gbk.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/gbkext1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/gbkext1.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/gbkext2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/gbkext2.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/genflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/genflags.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/hz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/hz.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/iconv.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/isoir165.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/isoir165.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/java.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/jisx0201.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/jisx0201.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/jisx0208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/jisx0208.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/jisx0212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/jisx0212.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/jisx0213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/jisx0213.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/johab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/johab.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/koi8_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/koi8_r.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/koi8_ru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/koi8_ru.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/koi8_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/koi8_t.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/koi8_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/koi8_u.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ksc5601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ksc5601.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/loops.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/mac_thai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/mac_thai.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/mulelao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/mulelao.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/nextstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/nextstep.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/pt154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/pt154.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/riscos1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/riscos1.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/rk1048.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/rk1048.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/sjis.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/tcvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/tcvn.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/tds565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/tds565.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/tis620.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/tis620.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/translit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/translit.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ucs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ucs2.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ucs2be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ucs2be.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ucs2le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ucs2le.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ucs4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ucs4.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ucs4be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ucs4be.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/ucs4le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/ucs4le.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/uhc_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/uhc_1.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/uhc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/uhc_2.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf16.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf16be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf16be.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf16le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf16le.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf32.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf32be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf32be.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf32le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf32le.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf7.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/utf8.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/vietcomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/vietcomb.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/lib/viscii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/lib/viscii.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/libcharset/README.djgpp: -------------------------------------------------------------------------------- 1 | Installation on DJGPP: 2 | 3 | See the file djgpp/README. 4 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/cp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/cp.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/eilseq.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/eilseq.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/endian.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/endian.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/fcntl-o.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/fcntl-o.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/general.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/general.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/libtool.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/ln.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/ln.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/m4/proto.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/m4/proto.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/man/iconv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/man/iconv.1 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/man/iconv.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/man/iconv.3 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/man/iconvctl.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/man/iconvctl.3 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/os2/iconv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/os2/iconv.def -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ChangeLog -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/LINGUAS -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/Makevars -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/POTFILES.in -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/Rules-quot -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/af.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/af.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/af.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/bg.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/bg.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/bg.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ca.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ca.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ca.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/cs.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/cs.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/da.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/da.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/de.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/de.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/el.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/el.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/el.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/eo.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/eo.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/eo.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/es.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/es.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/et.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/et.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/et.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/fi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/fi.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/fi.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/fr.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/fr.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ga.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ga.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ga.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/gl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/gl.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/gl.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/hr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/hr.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/hr.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/hu.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/hu.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/hu.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/id.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/id.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/id.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/it.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/it.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ja.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ja.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/nl.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/nl.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/pl.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/pl.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/pt_BR.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/pt_BR.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/quot.sed -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/rm.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/rm.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/rm.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ro.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ro.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ro.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ru.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/ru.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sk.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sk.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sl.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sl.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sq.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sq.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sq.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sr.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sr.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sv.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/sv.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/tr.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/tr.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/uk.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/uk.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/vi.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/vi.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/wa.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/wa.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/wa.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/zh_CN.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/zh_CN.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/zh_CN.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/zh_TW.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/zh_TW.gmo -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/po/zh_TW.po -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/src/iconv.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/src/iconv_no_i18n.c: -------------------------------------------------------------------------------- 1 | #define NO_I18N 2 | #include "iconv.c" 3 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srclib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srclib/error.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srclib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srclib/error.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srclib/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srclib/lstat.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srclib/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srclib/read.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srclib/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srclib/stat.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srclib/streq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srclib/streq.h -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/error.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/error.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/iconv.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/intl.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/lock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/lock.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/lstat.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/lstat.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/nls.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/po.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/read.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/read.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/stat.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/stat.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/srcm4/xsize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/srcm4/xsize.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/BIG5.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/tests/BIG5.TXT -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/CP1163.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0xAF 0x203E 2 | 0xD0 0x00D0 3 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/DEC-HANYU.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0xC2CBA1B8 0x5344 2 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/EUC-JP.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/GBK.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/tests/GBK.TXT -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/HZ-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Chinese (中文,普通话,汉语) 你好 2 | GB -- 元气 开发 3 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/ISO-2022-CN-EXT-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Chinese (中文,普通话,汉语) 你好 2 | GB -- 元气 开发 3 | 喲痓洈 4 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/ISO-2022-CN-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Chinese (中文,普通话,汉语) 你好 2 | GB -- 元气 开发 3 | 喲洈 4 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/ISO-2022-JP-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Japanese (日本語) こんにちは 2 | JIS -- 元気 開発 3 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/TCVN.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/tests/TCVN.TXT -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/Translit1.ASCII: -------------------------------------------------------------------------------- 1 | 'Ecrit par %s. 2 | -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/UCS-4BE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/UCS-4LE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/UTF-16-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/UTF-16BE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/UTF-16LE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/UTF-7-snippet: -------------------------------------------------------------------------------- 1 | A+ImIDkQ- -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/UTF-7-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | A≢Α -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tests/uniq-u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/tests/uniq-u.c -------------------------------------------------------------------------------- /src/spatialite/deps/iconv/iconv/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/iconv/iconv/tools/Makefile -------------------------------------------------------------------------------- /src/spatialite/deps/proj/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/binding.gyp -------------------------------------------------------------------------------- /src/spatialite/deps/proj/config/proj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/config/proj_config.h -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/AUTHORS -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/COPYING -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/ChangeLog -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/INSTALL -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/NEWS -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/README -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/aclocal.m4 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/config.guess -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/config.sub -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/configure -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/configure.in -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/depcomp -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/install-sh -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/jniwrap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/jniwrap/README -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/jniwrap/org/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = proj4 2 | 3 | -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/ltconfig -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/ltmain.sh -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/makefile.vc -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/man/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/man/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/man/man1/cs2cs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/man/man1/cs2cs.1 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/man/man1/geod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/man/man1/geod.1 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/man/man1/proj.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/man/man1/proj.1 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/missing -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/mkinstalldirs -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/CH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/CH -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/GL27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/GL27 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/IGNF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/IGNF -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/README -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/epsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/epsg -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/esri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/esri -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/esri.extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/esri.extra -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/makefile.vc -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/nad.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/nad.lst -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/nad27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/nad27 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/nad83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/nad83 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/other.extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/other.extra -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/proj_def.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/proj_def.dat -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/td_out.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/td_out.dist -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/test27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/test27 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/test83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/test83 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/testIGNF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/testIGNF -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/testntv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/testntv2 -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/testvarious: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/testvarious -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/tv_out.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/tv_out.dist -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nad/world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nad/world -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/nmake.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/nmake.opt -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/proj.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/proj.pc.in -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_aea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_aea.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_aeqd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_aeqd.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_airy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_airy.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_aitoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_aitoff.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_august.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_august.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_bacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_bacon.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_bipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_bipc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_boggs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_boggs.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_bonne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_bonne.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_cass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_cass.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_cc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_cea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_cea.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_chamb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_chamb.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_collg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_collg.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_crast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_crast.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_denoy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_denoy.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_eck1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_eck1.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_eck2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_eck2.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_eck3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_eck3.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_eck4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_eck4.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_eck5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_eck5.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_eqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_eqc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_eqdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_eqdc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_fahey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_fahey.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_fouc_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_fouc_s.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_gall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_gall.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_geos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_geos.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_gins8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_gins8.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_gn_sinu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_gn_sinu.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_gnom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_gnom.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_goode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_goode.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_gstmerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_gstmerc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_hammer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_hammer.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_hatano.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_hatano.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_igh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_igh.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_imw_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_imw_p.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_isea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_isea.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_labrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_labrd.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_laea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_laea.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_larr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_larr.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_lask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_lask.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_lcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_lcc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_lcca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_lcca.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_loxim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_loxim.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_lsat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_lsat.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_merc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_merc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_mill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_mill.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_moll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_moll.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_nell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_nell.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_nocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_nocol.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_nsper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_nsper.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_nzmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_nzmg.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_ocea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_ocea.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_oea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_oea.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_omerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_omerc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_ortho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_ortho.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_poly.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_putp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_putp2.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_putp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_putp3.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_putp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_putp5.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_putp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_putp6.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_robin.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_rpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_rpoly.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_stere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_stere.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_sts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_sts.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_tcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_tcc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_tcea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_tcea.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_tmerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_tmerc.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_tpeqd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_tpeqd.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_urm5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_urm5.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_vandg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_vandg.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_wag2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_wag2.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_wag3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_wag3.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_wag7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_wag7.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_wink1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_wink1.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/PJ_wink2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/PJ_wink2.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/aasincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/aasincos.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/adjlon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/adjlon.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/bch2bps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/bch2bps.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/bchgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/bchgen.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/biveval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/biveval.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/cs2cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/cs2cs.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/dmstor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/dmstor.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/emess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/emess.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/emess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/emess.h -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/gen_cheb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/gen_cheb.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/geocent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/geocent.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/geocent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/geocent.h -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/geod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/geod.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/geod_for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/geod_for.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/geod_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/geod_inv.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/geod_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/geod_set.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/geodesic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/geodesic.h -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/jniproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/jniproj.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/mk_cheby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/mk_cheby.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/nad2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/nad2bin.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/nad_cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/nad_cvt.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/nad_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/nad_init.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/nad_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/nad_intr.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/p_series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/p_series.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_auth.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_ctx.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_deriv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_deriv.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_ellps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_ellps.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_errno.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_fwd.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_gauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_gauss.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_init.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_inv.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_list.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_list.h -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_log.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_mlfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_mlfn.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_msfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_msfn.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_mutex.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_param.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_phi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_phi2.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_qsfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_qsfn.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_tsfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_tsfn.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_units.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/pj_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/pj_utils.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/proj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/proj.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/proj.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/proj.def -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/proj_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/proj_api.h -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/projects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/projects.h -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/rtodms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/rtodms.c -------------------------------------------------------------------------------- /src/spatialite/deps/proj/proj/src/vector1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/deps/proj/proj/src/vector1.c -------------------------------------------------------------------------------- /src/spatialite/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/examples/demo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/demo1.c -------------------------------------------------------------------------------- /src/spatialite/examples/demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/demo2.c -------------------------------------------------------------------------------- /src/spatialite/examples/demo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/demo3.c -------------------------------------------------------------------------------- /src/spatialite/examples/demo4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/demo4.c -------------------------------------------------------------------------------- /src/spatialite/examples/demo5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/demo5.c -------------------------------------------------------------------------------- /src/spatialite/examples/examples.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/examples/examples.doxy -------------------------------------------------------------------------------- /src/spatialite/geos/geos.target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/geos/geos.target.mk -------------------------------------------------------------------------------- /src/spatialite/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/install-sh -------------------------------------------------------------------------------- /src/spatialite/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/ltmain.sh -------------------------------------------------------------------------------- /src/spatialite/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/m4/libtool.m4 -------------------------------------------------------------------------------- /src/spatialite/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/m4/ltoptions.m4 -------------------------------------------------------------------------------- /src/spatialite/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/spatialite/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/m4/ltversion.m4 -------------------------------------------------------------------------------- /src/spatialite/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/spatialite/mainpage.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/mainpage.doxy -------------------------------------------------------------------------------- /src/spatialite/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/makefile.vc -------------------------------------------------------------------------------- /src/spatialite/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/missing -------------------------------------------------------------------------------- /src/spatialite/nmake.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/nmake.opt -------------------------------------------------------------------------------- /src/spatialite/spatialite-sql-latest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/spatialite-sql-latest.html -------------------------------------------------------------------------------- /src/spatialite/spatialite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/spatialite.pc.in -------------------------------------------------------------------------------- /src/spatialite/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/gaiaaux/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiaaux/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/gaiaaux/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiaaux/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/gaiaaux/gg_sqlaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiaaux/gg_sqlaux.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiaaux/gg_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiaaux/gg_utf8.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiaexif/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiaexif/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/gaiaexif/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiaexif/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/gaiaexif/gaia_exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiaexif/gaia_exif.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Ewkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Ewkt.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Ewkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Ewkt.h -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Gml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Gml.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Gml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Gml.h -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Kml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Kml.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Kml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Kml.h -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/flex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/flex/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/flex/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/flex/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/flex/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/flex/ReadMe.txt -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/flex/ewktLexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/flex/ewktLexer.l -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/flex/gmlLexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/flex/gmlLexer.l -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/flex/kmlLexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/flex/kmlLexer.l -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/geoJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/geoJSON.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/geoJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/geoJSON.h -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_advanced.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_advanced.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_endian.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_ewkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_ewkt.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_extras.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_geoJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_geoJSON.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_geodesic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_geodesic.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_geometries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_geometries.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_geoscvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_geoscvt.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_gml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_gml.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_kml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_kml.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_lwgeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_lwgeom.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_relations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_relations.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_shape.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_transform.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_vanuatu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_vanuatu.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_voronoj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_voronoj.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_wkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_wkb.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/gg_wkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/gg_wkt.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lemon/Ewkt.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lemon/Ewkt.y -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lemon/Gml.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lemon/Gml.y -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lemon/Kml.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lemon/Kml.y -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lemon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lemon/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lemon/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lemon/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lemon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lemon/ReadMe.txt -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lemon/geoJSON.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lemon/geoJSON.y -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lex.Ewkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lex.Ewkt.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lex.GeoJson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lex.GeoJson.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lex.Gml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lex.Gml.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lex.Kml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lex.Kml.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/lex.VanuatuWkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/lex.VanuatuWkt.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/vanuatuWkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/vanuatuWkt.c -------------------------------------------------------------------------------- /src/spatialite/src/gaiageo/vanuatuWkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/gaiageo/vanuatuWkt.h -------------------------------------------------------------------------------- /src/spatialite/src/headers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/headers/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/headers/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/headers/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/headers/spatialite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/headers/spatialite.h -------------------------------------------------------------------------------- /src/spatialite/src/shapefiles/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/shapefiles/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/shapefiles/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/shapefiles/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/shapefiles/shapefiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/shapefiles/shapefiles.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/mbrcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/mbrcache.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/metatables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/metatables.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/spatialite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/spatialite.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/statistics.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/virtualXL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/virtualXL.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/virtualdbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/virtualdbf.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/virtualfdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/virtualfdo.c -------------------------------------------------------------------------------- /src/spatialite/src/spatialite/virtualshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/spatialite/virtualshape.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_00.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_01.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_02.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_03.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_04.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_05.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_06.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_07.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_08.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_09.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_10.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_11.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_12.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_13.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_14.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_15.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_16.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_17.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_18.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_19.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_20.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_21.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_22.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_23.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_23.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_24.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_25.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_26.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_27.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_28.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_29.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_29.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_30.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_31.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_32.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_33.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_33.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_34.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_35.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_36.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_37.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_38.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_38.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_39.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_39.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_inlined_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/epsg_inlined_40.c -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/epsg_update/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = README.txt auto_epsg.c 3 | 4 | -------------------------------------------------------------------------------- /src/spatialite/src/srsinit/srs_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/srsinit/srs_init.c -------------------------------------------------------------------------------- /src/spatialite/src/versioninfo/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/versioninfo/version.c -------------------------------------------------------------------------------- /src/spatialite/src/virtualtext/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/virtualtext/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/src/virtualtext/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/virtualtext/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/src/virtualtext/virtualtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/src/virtualtext/virtualtext.c -------------------------------------------------------------------------------- /src/spatialite/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/Makefile.am -------------------------------------------------------------------------------- /src/spatialite/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/Makefile.in -------------------------------------------------------------------------------- /src/spatialite/test/WritingSQLTestCase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/WritingSQLTestCase.txt -------------------------------------------------------------------------------- /src/spatialite/test/asprintf4win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/asprintf4win.h -------------------------------------------------------------------------------- /src/spatialite/test/check_bufovflw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_bufovflw.c -------------------------------------------------------------------------------- /src/spatialite/test/check_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_create.c -------------------------------------------------------------------------------- /src/spatialite/test/check_dbf_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_dbf_load.c -------------------------------------------------------------------------------- /src/spatialite/test/check_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_endian.c -------------------------------------------------------------------------------- /src/spatialite/test/check_exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_exif.c -------------------------------------------------------------------------------- /src/spatialite/test/check_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_extension.c -------------------------------------------------------------------------------- /src/spatialite/test/check_fdo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_fdo1.c -------------------------------------------------------------------------------- /src/spatialite/test/check_fdo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_fdo2.c -------------------------------------------------------------------------------- /src/spatialite/test/check_fdo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_fdo3.c -------------------------------------------------------------------------------- /src/spatialite/test/check_fdo_bufovflw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_fdo_bufovflw.c -------------------------------------------------------------------------------- /src/spatialite/test/check_gaia_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_gaia_utf8.c -------------------------------------------------------------------------------- /src/spatialite/test/check_gaia_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_gaia_util.c -------------------------------------------------------------------------------- /src/spatialite/test/check_geom_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_geom_aux.c -------------------------------------------------------------------------------- /src/spatialite/test/check_geometry_cols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_geometry_cols.c -------------------------------------------------------------------------------- /src/spatialite/test/check_geoscvt_fncts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_geoscvt_fncts.c -------------------------------------------------------------------------------- /src/spatialite/test/check_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_init.c -------------------------------------------------------------------------------- /src/spatialite/test/check_init2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_init2.c -------------------------------------------------------------------------------- /src/spatialite/test/check_math_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_math_funcs.c -------------------------------------------------------------------------------- /src/spatialite/test/check_mbrcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_mbrcache.c -------------------------------------------------------------------------------- /src/spatialite/test/check_recover_geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_recover_geom.c -------------------------------------------------------------------------------- /src/spatialite/test/check_relations_fncts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_relations_fncts.c -------------------------------------------------------------------------------- /src/spatialite/test/check_shp_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_shp_load.c -------------------------------------------------------------------------------- /src/spatialite/test/check_shp_load_3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_shp_load_3d.c -------------------------------------------------------------------------------- /src/spatialite/test/check_spatialindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_spatialindex.c -------------------------------------------------------------------------------- /src/spatialite/test/check_sql_stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_sql_stmt.c -------------------------------------------------------------------------------- /src/spatialite/test/check_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_version.c -------------------------------------------------------------------------------- /src/spatialite/test/check_virtual_ovflw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_virtual_ovflw.c -------------------------------------------------------------------------------- /src/spatialite/test/check_virtualtable1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_virtualtable1.c -------------------------------------------------------------------------------- /src/spatialite/test/check_virtualtable2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_virtualtable2.c -------------------------------------------------------------------------------- /src/spatialite/test/check_virtualtable3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_virtualtable3.c -------------------------------------------------------------------------------- /src/spatialite/test/check_virtualtable4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_virtualtable4.c -------------------------------------------------------------------------------- /src/spatialite/test/check_virtualtable5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_virtualtable5.c -------------------------------------------------------------------------------- /src/spatialite/test/check_virtualtable6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_virtualtable6.c -------------------------------------------------------------------------------- /src/spatialite/test/check_xls_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/check_xls_load.c -------------------------------------------------------------------------------- /src/spatialite/test/fnmatch4win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/fnmatch4win.h -------------------------------------------------------------------------------- /src/spatialite/test/fnmatch_impl4win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/fnmatch_impl4win.h -------------------------------------------------------------------------------- /src/spatialite/test/scandir4win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/scandir4win.h -------------------------------------------------------------------------------- /src/spatialite/test/shape_3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shape_3d.c -------------------------------------------------------------------------------- /src/spatialite/test/shape_cp1252.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shape_cp1252.c -------------------------------------------------------------------------------- /src/spatialite/test/shape_primitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shape_primitives.c -------------------------------------------------------------------------------- /src/spatialite/test/shape_utf8_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shape_utf8_1.c -------------------------------------------------------------------------------- /src/spatialite/test/shape_utf8_1ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shape_utf8_1ex.c -------------------------------------------------------------------------------- /src/spatialite/test/shape_utf8_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shape_utf8_2.c -------------------------------------------------------------------------------- /src/spatialite/test/shapetest1.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shapetest1.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shapetest1.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shapetest1.prj -------------------------------------------------------------------------------- /src/spatialite/test/shapetest1.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shapetest1.qpj -------------------------------------------------------------------------------- /src/spatialite/test/shapetest1.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shapetest1.shp -------------------------------------------------------------------------------- /src/spatialite/test/shapetest1.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shapetest1.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/aeroway.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/aeroway.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/aeroway.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/aeroway.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/aeroway.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/aeroway.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/aeroway.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/aeroway.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/barrier.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/barrier.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/barrier.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/barrier.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/barrier.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/barrier.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/barrier.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/barrier.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/route.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/route.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/route.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/route.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/route.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/route.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/gaza/route.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/gaza/route.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/points.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/points.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/points.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/points.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/roads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/roads.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/roads.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/roads.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/roads.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/merano-3d/roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/merano-3d/roads.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/hystoric.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/hystoric.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/hystoric.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/hystoric.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/hystoric.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/hystoric.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/hystoric.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/hystoric.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/leisure.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/leisure.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/leisure.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/leisure.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/leisure.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/leisure.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/leisure.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/leisure.shx -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/route.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/route.dbf -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/route.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/route.prj -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/route.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/route.shp -------------------------------------------------------------------------------- /src/spatialite/test/shp/taiwan/route.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/shp/taiwan/route.shx -------------------------------------------------------------------------------- /src/spatialite/test/sql_stmt_tests/emptyfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/spatialite/test/test-legacy-2.3.1.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/test-legacy-2.3.1.sqlite -------------------------------------------------------------------------------- /src/spatialite/test/test-legacy-3.0.1.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/test-legacy-3.0.1.sqlite -------------------------------------------------------------------------------- /src/spatialite/test/test_under_valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/test_under_valgrind.sh -------------------------------------------------------------------------------- /src/spatialite/test/testcase1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/testcase1.csv -------------------------------------------------------------------------------- /src/spatialite/test/testcase1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/spatialite/test/testcase1.xls -------------------------------------------------------------------------------- /src/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/sqlite3.h -------------------------------------------------------------------------------- /src/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/src/sqlite3ext.h -------------------------------------------------------------------------------- /test/memory_database.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/test/memory_database.test.coffee -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhm/node-spatialite/HEAD/yarn.lock --------------------------------------------------------------------------------