├── .github └── workflows │ ├── build.yml │ ├── docs.yml │ └── npm-package.yml ├── .gitignore ├── .npmignore ├── AUTHORS ├── CHANGELOG ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── binding.gyp ├── common.gypi ├── deps ├── Makefile ├── glob-files.py ├── libexpat.sh ├── libexpat │ ├── arch │ │ ├── unix │ │ │ └── expat_config.h │ │ └── win │ │ │ └── expat_config.h │ ├── expat │ │ ├── COPYING │ │ ├── README │ │ └── lib │ │ │ ├── amigaconfig.h │ │ │ ├── ascii.h │ │ │ ├── asciitab.h │ │ │ ├── expat.h │ │ │ ├── expat_external.h │ │ │ ├── iasciitab.h │ │ │ ├── internal.h │ │ │ ├── latin1tab.h │ │ │ ├── macconfig.h │ │ │ ├── nametab.h │ │ │ ├── utf8tab.h │ │ │ ├── winconfig.h │ │ │ ├── xmlparse.c │ │ │ ├── xmlrole.c │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.c │ │ │ ├── xmltok.h │ │ │ ├── xmltok_impl.c │ │ │ ├── xmltok_impl.h │ │ │ └── xmltok_ns.c │ └── libexpat.gyp ├── libgdal.sh ├── libgdal │ ├── arch │ │ ├── bsd │ │ │ └── cpl_config.h │ │ ├── unix │ │ │ └── cpl_config.h │ │ └── win │ │ │ └── cpl_config.h │ ├── common.gypi │ ├── gdal │ │ ├── LICENSE.TXT │ │ ├── NEWS.template │ │ ├── VERSION │ │ ├── alg │ │ │ ├── contour.cpp │ │ │ ├── delaunay.c │ │ │ ├── gdal_alg.h │ │ │ ├── gdal_alg_priv.h │ │ │ ├── gdal_crs.c │ │ │ ├── gdal_octave.cpp │ │ │ ├── gdal_rpc.cpp │ │ │ ├── gdal_simplesurf.cpp │ │ │ ├── gdal_simplesurf.h │ │ │ ├── gdal_tps.cpp │ │ │ ├── gdalapplyverticalshiftgrid.cpp │ │ │ ├── gdalchecksum.cpp │ │ │ ├── gdalcutline.cpp │ │ │ ├── gdaldither.cpp │ │ │ ├── gdalgeoloc.cpp │ │ │ ├── gdalgrid.cpp │ │ │ ├── gdalgrid.h │ │ │ ├── gdalgrid_priv.h │ │ │ ├── gdalgridavx.cpp │ │ │ ├── gdalgridsse.cpp │ │ │ ├── gdallinearsystem.cpp │ │ │ ├── gdallinearsystem.h │ │ │ ├── gdalmatching.cpp │ │ │ ├── gdalmediancut.cpp │ │ │ ├── gdalpansharpen.cpp │ │ │ ├── gdalpansharpen.h │ │ │ ├── gdalproximity.cpp │ │ │ ├── gdalrasterize.cpp │ │ │ ├── gdalrasterpolygonenumerator.cpp │ │ │ ├── gdalsievefilter.cpp │ │ │ ├── gdalsimplewarp.cpp │ │ │ ├── gdaltransformer.cpp │ │ │ ├── gdaltransformgeolocs.cpp │ │ │ ├── gdalwarper.cpp │ │ │ ├── gdalwarper.h │ │ │ ├── gdalwarpkernel.cpp │ │ │ ├── gdalwarpkernel_opencl.cpp │ │ │ ├── gdalwarpkernel_opencl.h │ │ │ ├── gdalwarpoperation.cpp │ │ │ ├── gvgcpfit.h │ │ │ ├── internal_libqhull │ │ │ │ ├── COPYING.txt │ │ │ │ ├── geom.c │ │ │ │ ├── geom.h │ │ │ │ ├── geom2.c │ │ │ │ ├── global.c │ │ │ │ ├── io.c │ │ │ │ ├── io.h │ │ │ │ ├── libqhull.c │ │ │ │ ├── libqhull.h │ │ │ │ ├── mem.c │ │ │ │ ├── mem.h │ │ │ │ ├── merge.c │ │ │ │ ├── merge.h │ │ │ │ ├── poly.c │ │ │ │ ├── poly.h │ │ │ │ ├── poly2.c │ │ │ │ ├── qhull_a.h │ │ │ │ ├── qset.c │ │ │ │ ├── qset.h │ │ │ │ ├── random.c │ │ │ │ ├── random.h │ │ │ │ ├── rboxlib.c │ │ │ │ ├── stat.c │ │ │ │ ├── stat.h │ │ │ │ ├── user.c │ │ │ │ ├── user.h │ │ │ │ ├── usermem.c │ │ │ │ ├── userprintf.c │ │ │ │ └── userprintf_rbox.c │ │ │ ├── internal_qhull_headers.h │ │ │ ├── llrasterize.cpp │ │ │ ├── marching_squares │ │ │ │ ├── contour_generator.h │ │ │ │ ├── level_generator.h │ │ │ │ ├── point.h │ │ │ │ ├── polygon_ring_appender.h │ │ │ │ ├── segment_merger.h │ │ │ │ ├── square.h │ │ │ │ └── utility.h │ │ │ ├── polygonize.cpp │ │ │ ├── rasterfill.cpp │ │ │ ├── thinplatespline.cpp │ │ │ └── thinplatespline.h │ │ ├── apps │ │ │ ├── commonutils.cpp │ │ │ ├── commonutils.h │ │ │ ├── dumpoverviews.cpp │ │ │ ├── gdal-config.in │ │ │ ├── gdal2ogr.c │ │ │ ├── gdal_contour.cpp │ │ │ ├── gdal_grid_bin.cpp │ │ │ ├── gdal_grid_lib.cpp │ │ │ ├── gdal_rasterize_bin.cpp │ │ │ ├── gdal_rasterize_lib.cpp │ │ │ ├── gdal_translate_bin.cpp │ │ │ ├── gdal_translate_lib.cpp │ │ │ ├── gdal_utilities.dox │ │ │ ├── gdal_utils.h │ │ │ ├── gdal_utils_priv.h │ │ │ ├── gdaladdo.cpp │ │ │ ├── gdalasyncread.cpp │ │ │ ├── gdalbuildvrt_bin.cpp │ │ │ ├── gdalbuildvrt_lib.cpp │ │ │ ├── gdaldem_bin.cpp │ │ │ ├── gdaldem_lib.cpp │ │ │ ├── gdalenhance.cpp │ │ │ ├── gdalflattenmask.c │ │ │ ├── gdalinfo_bin.cpp │ │ │ ├── gdalinfo_lib.cpp │ │ │ ├── gdallocationinfo.cpp │ │ │ ├── gdalmanage.cpp │ │ │ ├── gdalserver.cpp │ │ │ ├── gdalsrsinfo.cpp │ │ │ ├── gdaltindex.cpp │ │ │ ├── gdaltorture.cpp │ │ │ ├── gdaltransform.cpp │ │ │ ├── gdalwarp_bin.cpp │ │ │ ├── gdalwarp_lib.cpp │ │ │ ├── gdalwarpsimple.c │ │ │ ├── gnm_utilities.dox │ │ │ ├── gnmanalyse.cpp │ │ │ ├── gnmmanage.cpp │ │ │ ├── multireadtest.cpp │ │ │ ├── nearblack_bin.cpp │ │ │ ├── nearblack_lib.cpp │ │ │ ├── ogr2ogr_bin.cpp │ │ │ ├── ogr2ogr_lib.cpp │ │ │ ├── ogr_utilities.dox │ │ │ ├── ogrdissolve.cpp │ │ │ ├── ogrinfo.cpp │ │ │ ├── ogrlineref.cpp │ │ │ ├── ogrtindex.cpp │ │ │ ├── test_ogrsf.cpp │ │ │ ├── testepsg.cpp │ │ │ └── testreprojmulti.cpp │ │ ├── data │ │ │ ├── GDALLogoBW.svg │ │ │ ├── GDALLogoColor.svg │ │ │ ├── GDALLogoGS.svg │ │ │ ├── bag_template.xml │ │ │ ├── compdcs.csv │ │ │ ├── coordinate_axis.csv │ │ │ ├── cubewerx_extra.wkt │ │ │ ├── datum_shift.csv │ │ │ ├── default.rsc │ │ │ ├── ecw_cs.wkt │ │ │ ├── eedaconf.json │ │ │ ├── ellipsoid.csv │ │ │ ├── epsg.wkt │ │ │ ├── esri_StatePlane_extra.wkt │ │ │ ├── esri_Wisconsin_extra.wkt │ │ │ ├── esri_epsg.wkt │ │ │ ├── esri_extra.wkt │ │ │ ├── gcs.csv │ │ │ ├── gcs.override.csv │ │ │ ├── gdal_datum.csv │ │ │ ├── gdalicon.png │ │ │ ├── gdalvrt.xsd │ │ │ ├── geoccs.csv │ │ │ ├── gml_registry.xml │ │ │ ├── gmlasconf.xml │ │ │ ├── gmlasconf.xsd │ │ │ ├── gt_datum.csv │ │ │ ├── gt_ellips.csv │ │ │ ├── header.dxf │ │ │ ├── inspire_cp_BasicPropertyUnit.gfs │ │ │ ├── inspire_cp_CadastralBoundary.gfs │ │ │ ├── inspire_cp_CadastralParcel.gfs │ │ │ ├── inspire_cp_CadastralZoning.gfs │ │ │ ├── jpfgdgml_AdmArea.gfs │ │ │ ├── jpfgdgml_AdmBdry.gfs │ │ │ ├── jpfgdgml_AdmPt.gfs │ │ │ ├── jpfgdgml_BldA.gfs │ │ │ ├── jpfgdgml_BldL.gfs │ │ │ ├── jpfgdgml_Cntr.gfs │ │ │ ├── jpfgdgml_CommBdry.gfs │ │ │ ├── jpfgdgml_CommPt.gfs │ │ │ ├── jpfgdgml_Cstline.gfs │ │ │ ├── jpfgdgml_ElevPt.gfs │ │ │ ├── jpfgdgml_GCP.gfs │ │ │ ├── jpfgdgml_LeveeEdge.gfs │ │ │ ├── jpfgdgml_RailCL.gfs │ │ │ ├── jpfgdgml_RdASL.gfs │ │ │ ├── jpfgdgml_RdArea.gfs │ │ │ ├── jpfgdgml_RdCompt.gfs │ │ │ ├── jpfgdgml_RdEdg.gfs │ │ │ ├── jpfgdgml_RdMgtBdry.gfs │ │ │ ├── jpfgdgml_RdSgmtA.gfs │ │ │ ├── jpfgdgml_RvrMgtBdry.gfs │ │ │ ├── jpfgdgml_SBAPt.gfs │ │ │ ├── jpfgdgml_SBArea.gfs │ │ │ ├── jpfgdgml_SBBdry.gfs │ │ │ ├── jpfgdgml_WA.gfs │ │ │ ├── jpfgdgml_WL.gfs │ │ │ ├── jpfgdgml_WStrA.gfs │ │ │ ├── jpfgdgml_WStrL.gfs │ │ │ ├── netcdf_config.xsd │ │ │ ├── nitf_spec.xml │ │ │ ├── nitf_spec.xsd │ │ │ ├── ogrvrt.xsd │ │ │ ├── osmconf.ini │ │ │ ├── ozi_datum.csv │ │ │ ├── ozi_ellips.csv │ │ │ ├── pci_datum.txt │ │ │ ├── pci_ellips.txt │ │ │ ├── pcs.csv │ │ │ ├── pcs.override.csv │ │ │ ├── pds4_template.xml │ │ │ ├── plscenesconf.json │ │ │ ├── prime_meridian.csv │ │ │ ├── projop_wparm.csv │ │ │ ├── ruian_vf_ob_v1.gfs │ │ │ ├── ruian_vf_st_uvoh_v1.gfs │ │ │ ├── ruian_vf_st_v1.gfs │ │ │ ├── ruian_vf_v1.gfs │ │ │ ├── s57agencies.csv │ │ │ ├── s57attributes.csv │ │ │ ├── s57expectedinput.csv │ │ │ ├── s57objectclasses.csv │ │ │ ├── seed_2d.dgn │ │ │ ├── seed_3d.dgn │ │ │ ├── stateplane.csv │ │ │ ├── trailer.dxf │ │ │ ├── unit_of_measure.csv │ │ │ ├── vdv452.xml │ │ │ ├── vdv452.xsd │ │ │ ├── vertcs.csv │ │ │ └── vertcs.override.csv │ │ ├── frmts │ │ │ ├── aaigrid │ │ │ │ ├── aaigriddataset.cpp │ │ │ │ └── aaigriddataset.h │ │ │ ├── adrg │ │ │ │ ├── adrgdataset.cpp │ │ │ │ └── srpdataset.cpp │ │ │ ├── aigrid │ │ │ │ ├── aigccitt.c │ │ │ │ ├── aigdataset.cpp │ │ │ │ ├── aigopen.c │ │ │ │ ├── aigrid.h │ │ │ │ ├── aitest.c │ │ │ │ └── gridlib.c │ │ │ ├── airsar │ │ │ │ └── airsardataset.cpp │ │ │ ├── arg │ │ │ │ └── argdataset.cpp │ │ │ ├── blx │ │ │ │ ├── blx.c │ │ │ │ ├── blx.h │ │ │ │ └── blxdataset.cpp │ │ │ ├── bmp │ │ │ │ └── bmpdataset.cpp │ │ │ ├── bpg │ │ │ │ └── bpgdataset.cpp │ │ │ ├── bsb │ │ │ │ ├── bsb2raw.c │ │ │ │ ├── bsb_read.c │ │ │ │ ├── bsb_read.h │ │ │ │ └── bsbdataset.cpp │ │ │ ├── cals │ │ │ │ └── calsdataset.cpp │ │ │ ├── ceos │ │ │ │ ├── ceosdataset.cpp │ │ │ │ ├── ceosopen.c │ │ │ │ ├── ceosopen.h │ │ │ │ └── ceostest.c │ │ │ ├── ceos2 │ │ │ │ ├── ceos.c │ │ │ │ ├── ceos.h │ │ │ │ ├── ceosrecipe.c │ │ │ │ ├── ceossar.c │ │ │ │ ├── link.c │ │ │ │ └── sar_ceosdataset.cpp │ │ │ ├── coasp │ │ │ │ └── coasp_dataset.cpp │ │ │ ├── cosar │ │ │ │ └── cosar_dataset.cpp │ │ │ ├── ctg │ │ │ │ └── ctgdataset.cpp │ │ │ ├── dds │ │ │ │ └── ddsdataset.cpp │ │ │ ├── derived │ │ │ │ ├── deriveddataset.cpp │ │ │ │ ├── derivedlist.c │ │ │ │ └── derivedlist.h │ │ │ ├── dimap │ │ │ │ └── dimapdataset.cpp │ │ │ ├── dods │ │ │ │ ├── dodsdataset2.cpp │ │ │ │ └── libdap_headers.h │ │ │ ├── dted │ │ │ │ ├── dted_api.c │ │ │ │ ├── dted_api.h │ │ │ │ ├── dted_create.c │ │ │ │ ├── dted_ptstream.c │ │ │ │ ├── dted_test.c │ │ │ │ └── dteddataset.cpp │ │ │ ├── e00grid │ │ │ │ ├── e00compr.h │ │ │ │ ├── e00griddataset.cpp │ │ │ │ └── e00read.c │ │ │ ├── ecw │ │ │ │ ├── ecwasyncreader.cpp │ │ │ │ ├── ecwcreatecopy.cpp │ │ │ │ ├── ecwdataset.cpp │ │ │ │ ├── ecwsdk_headers.h │ │ │ │ ├── gdal_ecw.h │ │ │ │ ├── jp2userbox.cpp │ │ │ │ └── lookup.py │ │ │ ├── eeda │ │ │ │ ├── eeda.h │ │ │ │ ├── eedacommon.cpp │ │ │ │ ├── eedadataset.cpp │ │ │ │ └── eedaidataset.cpp │ │ │ ├── elas │ │ │ │ └── elasdataset.cpp │ │ │ ├── envisat │ │ │ │ ├── EnvisatFile.c │ │ │ │ ├── EnvisatFile.h │ │ │ │ ├── adsrange.cpp │ │ │ │ ├── adsrange.hpp │ │ │ │ ├── dumpgeo.c │ │ │ │ ├── envisat_dump.c │ │ │ │ ├── envisatdataset.cpp │ │ │ │ ├── records.c │ │ │ │ ├── records.h │ │ │ │ ├── timedelta.hpp │ │ │ │ └── unwrapgcps.cpp │ │ │ ├── epsilon │ │ │ │ └── epsilondataset.cpp │ │ │ ├── ers │ │ │ │ ├── ersdataset.cpp │ │ │ │ ├── ershdrnode.cpp │ │ │ │ └── ershdrnode.h │ │ │ ├── fit │ │ │ │ ├── fit.cpp │ │ │ │ ├── fit.h │ │ │ │ ├── fitdataset.cpp │ │ │ │ ├── gstEndian.h │ │ │ │ └── gstTypes.h │ │ │ ├── fits │ │ │ │ └── fitsdataset.cpp │ │ │ ├── gdalallregister.cpp │ │ │ ├── georaster │ │ │ │ ├── cpl_vsil_ocilob.cpp │ │ │ │ ├── georaster_dataset.cpp │ │ │ │ ├── georaster_priv.h │ │ │ │ ├── georaster_rasterband.cpp │ │ │ │ ├── georaster_wrapper.cpp │ │ │ │ ├── oci_wrapper.cpp │ │ │ │ └── oci_wrapper.h │ │ │ ├── gff │ │ │ │ └── gff_dataset.cpp │ │ │ ├── gif │ │ │ │ ├── biggifdataset.cpp │ │ │ │ ├── gifabstractdataset.cpp │ │ │ │ ├── gifabstractdataset.h │ │ │ │ ├── gifdataset.cpp │ │ │ │ └── giflib │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── dgif_lib.c │ │ │ │ │ ├── egif_lib.c │ │ │ │ │ ├── gif_err.c │ │ │ │ │ ├── gif_hash.c │ │ │ │ │ ├── gif_hash.h │ │ │ │ │ ├── gif_lib.h │ │ │ │ │ ├── gif_lib_private.h │ │ │ │ │ └── gifalloc.c │ │ │ ├── grass │ │ │ │ ├── grass57dataset.cpp │ │ │ │ ├── grassdataset.cpp │ │ │ │ └── pkg │ │ │ │ │ ├── configure │ │ │ │ │ └── configure.in │ │ │ ├── grib │ │ │ │ ├── degrib │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── degrib │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── degrib1.cpp │ │ │ │ │ │ ├── degrib1.h │ │ │ │ │ │ ├── degrib2.cpp │ │ │ │ │ │ ├── degrib2.h │ │ │ │ │ │ ├── engribapi.c │ │ │ │ │ │ ├── engribapi.h │ │ │ │ │ │ ├── grib1tab.cpp │ │ │ │ │ │ ├── grib2api.c │ │ │ │ │ │ ├── grib2api.h │ │ │ │ │ │ ├── hazard.c │ │ │ │ │ │ ├── hazard.h │ │ │ │ │ │ ├── inventory.cpp │ │ │ │ │ │ ├── inventory.h │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── meta.h │ │ │ │ │ │ ├── metaname.cpp │ │ │ │ │ │ ├── metaname.h │ │ │ │ │ │ ├── metaparse.cpp │ │ │ │ │ │ ├── metaprint.cpp │ │ │ │ │ │ ├── myassert.c │ │ │ │ │ │ ├── myassert.h │ │ │ │ │ │ ├── myerror.c │ │ │ │ │ │ ├── myerror.h │ │ │ │ │ │ ├── myutil.c │ │ │ │ │ │ ├── myutil.h │ │ │ │ │ │ ├── scan.c │ │ │ │ │ │ ├── scan.h │ │ │ │ │ │ ├── tdlpack.cpp │ │ │ │ │ │ ├── tdlpack.h │ │ │ │ │ │ ├── tendian.cpp │ │ │ │ │ │ ├── tendian.h │ │ │ │ │ │ ├── type.h │ │ │ │ │ │ ├── weather.c │ │ │ │ │ │ └── weather.h │ │ │ │ │ └── g2clib │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── cmplxpack.c │ │ │ │ │ │ ├── compack.c │ │ │ │ │ │ ├── comunpack.c │ │ │ │ │ │ ├── dec_jpeg2000.cpp │ │ │ │ │ │ ├── dec_png.c │ │ │ │ │ │ ├── drstemplates.c │ │ │ │ │ │ ├── drstemplates.h │ │ │ │ │ │ ├── enc_jpeg2000.c │ │ │ │ │ │ ├── enc_png.c │ │ │ │ │ │ ├── g2_addfield.c │ │ │ │ │ │ ├── g2_addgrid.c │ │ │ │ │ │ ├── g2_addlocal.c │ │ │ │ │ │ ├── g2_create.c │ │ │ │ │ │ ├── g2_free.c │ │ │ │ │ │ ├── g2_getfld.c │ │ │ │ │ │ ├── g2_gribend.c │ │ │ │ │ │ ├── g2_info.c │ │ │ │ │ │ ├── g2_miss.c │ │ │ │ │ │ ├── g2_unpack1.c │ │ │ │ │ │ ├── g2_unpack2.c │ │ │ │ │ │ ├── g2_unpack3.c │ │ │ │ │ │ ├── g2_unpack4.c │ │ │ │ │ │ ├── g2_unpack5.c │ │ │ │ │ │ ├── g2_unpack6.c │ │ │ │ │ │ ├── g2_unpack7.c │ │ │ │ │ │ ├── gbits.c │ │ │ │ │ │ ├── getdim.c │ │ │ │ │ │ ├── getpoly.c │ │ │ │ │ │ ├── grib2.h │ │ │ │ │ │ ├── grib2c.doc │ │ │ │ │ │ ├── gridtemplates.c │ │ │ │ │ │ ├── gridtemplates.h │ │ │ │ │ │ ├── int_power.c │ │ │ │ │ │ ├── jpcpack.c │ │ │ │ │ │ ├── jpcunpack.c │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── misspack.c │ │ │ │ │ │ ├── mkieee.c │ │ │ │ │ │ ├── pack_gp.c │ │ │ │ │ │ ├── pdstemplates.c │ │ │ │ │ │ ├── pdstemplates.h │ │ │ │ │ │ ├── pngpack.c │ │ │ │ │ │ ├── pngunpack.c │ │ │ │ │ │ ├── rdieee.c │ │ │ │ │ │ ├── reduce.c │ │ │ │ │ │ ├── seekgb.c │ │ │ │ │ │ ├── simpack.c │ │ │ │ │ │ ├── simunpack.c │ │ │ │ │ │ ├── specpack.c │ │ │ │ │ │ └── specunpack.c │ │ │ │ ├── gribcreatecopy.cpp │ │ │ │ ├── gribdataset.cpp │ │ │ │ └── gribdataset.h │ │ │ ├── gsg │ │ │ │ ├── gs7bgdataset.cpp │ │ │ │ ├── gsagdataset.cpp │ │ │ │ └── gsbgdataset.cpp │ │ │ ├── gta │ │ │ │ ├── gta_headers.h │ │ │ │ └── gtadataset.cpp │ │ │ ├── gtiff │ │ │ │ ├── geotiff.cpp │ │ │ │ ├── gt_citation.cpp │ │ │ │ ├── gt_citation.h │ │ │ │ ├── gt_jpeg_copy.cpp │ │ │ │ ├── gt_jpeg_copy.h │ │ │ │ ├── gt_overview.cpp │ │ │ │ ├── gt_overview.h │ │ │ │ ├── gt_wkt_srs.cpp │ │ │ │ ├── gt_wkt_srs.h │ │ │ │ ├── gt_wkt_srs_for_gdal.h │ │ │ │ ├── gt_wkt_srs_priv.h │ │ │ │ ├── gtiff.h │ │ │ │ ├── libgeotiff │ │ │ │ │ ├── cpl_serv.h │ │ │ │ │ ├── dump_symbols.sh │ │ │ │ │ ├── epsg_datum.inc │ │ │ │ │ ├── epsg_ellipse.inc │ │ │ │ │ ├── epsg_gcs.inc │ │ │ │ │ ├── epsg_pcs.inc │ │ │ │ │ ├── epsg_pm.inc │ │ │ │ │ ├── epsg_proj.inc │ │ │ │ │ ├── epsg_units.inc │ │ │ │ │ ├── epsg_vertcs.inc │ │ │ │ │ ├── gdal_libgeotiff_symbol_rename.h │ │ │ │ │ ├── geo_config.h │ │ │ │ │ ├── geo_ctrans.inc │ │ │ │ │ ├── geo_extra.c │ │ │ │ │ ├── geo_free.c │ │ │ │ │ ├── geo_get.c │ │ │ │ │ ├── geo_keyp.h │ │ │ │ │ ├── geo_names.c │ │ │ │ │ ├── geo_new.c │ │ │ │ │ ├── geo_normalize.c │ │ │ │ │ ├── geo_normalize.h │ │ │ │ │ ├── geo_print.c │ │ │ │ │ ├── geo_set.c │ │ │ │ │ ├── geo_simpletags.c │ │ │ │ │ ├── geo_simpletags.h │ │ │ │ │ ├── geo_tiffp.c │ │ │ │ │ ├── geo_tiffp.h │ │ │ │ │ ├── geo_trans.c │ │ │ │ │ ├── geo_write.c │ │ │ │ │ ├── geokeys.h │ │ │ │ │ ├── geokeys.inc │ │ │ │ │ ├── geonames.h │ │ │ │ │ ├── geotiff.h │ │ │ │ │ ├── geotiff_proj4.c │ │ │ │ │ ├── geotiffio.h │ │ │ │ │ ├── geovalues.h │ │ │ │ │ ├── xtiff.c │ │ │ │ │ └── xtiffio.h │ │ │ │ ├── libtiff │ │ │ │ │ ├── dump_symbols.sh │ │ │ │ │ ├── gdal_libtiff_symbol_rename.h │ │ │ │ │ ├── t4.h │ │ │ │ │ ├── tif_aux.c │ │ │ │ │ ├── tif_close.c │ │ │ │ │ ├── tif_codec.c │ │ │ │ │ ├── tif_color.c │ │ │ │ │ ├── tif_compress.c │ │ │ │ │ ├── tif_config.h │ │ │ │ │ ├── tif_dir.c │ │ │ │ │ ├── tif_dir.h │ │ │ │ │ ├── tif_dirinfo.c │ │ │ │ │ ├── tif_dirread.c │ │ │ │ │ ├── tif_dirwrite.c │ │ │ │ │ ├── tif_dumpmode.c │ │ │ │ │ ├── tif_error.c │ │ │ │ │ ├── tif_extension.c │ │ │ │ │ ├── tif_fax3.c │ │ │ │ │ ├── tif_fax3.h │ │ │ │ │ ├── tif_fax3sm.c │ │ │ │ │ ├── tif_flush.c │ │ │ │ │ ├── tif_getimage.c │ │ │ │ │ ├── tif_jpeg.c │ │ │ │ │ ├── tif_jpeg_12.c │ │ │ │ │ ├── tif_luv.c │ │ │ │ │ ├── tif_lzma.c │ │ │ │ │ ├── tif_lzw.c │ │ │ │ │ ├── tif_next.c │ │ │ │ │ ├── tif_ojpeg.c │ │ │ │ │ ├── tif_open.c │ │ │ │ │ ├── tif_packbits.c │ │ │ │ │ ├── tif_pixarlog.c │ │ │ │ │ ├── tif_predict.c │ │ │ │ │ ├── tif_predict.h │ │ │ │ │ ├── tif_print.c │ │ │ │ │ ├── tif_read.c │ │ │ │ │ ├── tif_strip.c │ │ │ │ │ ├── tif_swab.c │ │ │ │ │ ├── tif_thunder.c │ │ │ │ │ ├── tif_tile.c │ │ │ │ │ ├── tif_version.c │ │ │ │ │ ├── tif_vsi.c │ │ │ │ │ ├── tif_warning.c │ │ │ │ │ ├── tif_webp.c │ │ │ │ │ ├── tif_write.c │ │ │ │ │ ├── tif_zip.c │ │ │ │ │ ├── tif_zstd.c │ │ │ │ │ ├── tiff.h │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ ├── tiffio.h │ │ │ │ │ ├── tiffiop.h │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ └── uvcode.h │ │ │ │ ├── tif_float.c │ │ │ │ ├── tif_float.h │ │ │ │ ├── tif_lerc.c │ │ │ │ ├── tif_lerc.h │ │ │ │ ├── tifvsi.cpp │ │ │ │ └── tifvsi.h │ │ │ ├── gxf │ │ │ │ ├── configure.in │ │ │ │ ├── gxf.dox │ │ │ │ ├── gxf_ogcwkt.c │ │ │ │ ├── gxf_proj4.c │ │ │ │ ├── gxfdataset.cpp │ │ │ │ ├── gxfopen.c │ │ │ │ └── gxfopen.h │ │ │ ├── hdf4 │ │ │ │ ├── hdf-eos │ │ │ │ │ ├── EHapi.c │ │ │ │ │ ├── GDapi.c │ │ │ │ │ ├── HDFEOSVersion.h │ │ │ │ │ ├── HdfEosDef.h │ │ │ │ │ ├── SWapi.c │ │ │ │ │ ├── ease.h │ │ │ │ │ └── gctp_wrap.c │ │ │ │ ├── hdf4compat.h │ │ │ │ ├── hdf4dataset.cpp │ │ │ │ ├── hdf4dataset.h │ │ │ │ └── hdf4imagedataset.cpp │ │ │ ├── hdf5 │ │ │ │ ├── bagdataset.cpp │ │ │ │ ├── gh5_convenience.cpp │ │ │ │ ├── gh5_convenience.h │ │ │ │ ├── hdf5_api.h │ │ │ │ ├── hdf5dataset.cpp │ │ │ │ ├── hdf5dataset.h │ │ │ │ ├── hdf5imagedataset.cpp │ │ │ │ ├── iso19115_srs.cpp │ │ │ │ └── iso19115_srs.h │ │ │ ├── hf2 │ │ │ │ └── hf2dataset.cpp │ │ │ ├── hfa │ │ │ │ ├── TODO_Projections.txt │ │ │ │ ├── hfa.h │ │ │ │ ├── hfa_overviews.cpp │ │ │ │ ├── hfa_p.h │ │ │ │ ├── hfaband.cpp │ │ │ │ ├── hfacompress.cpp │ │ │ │ ├── hfadataset.cpp │ │ │ │ ├── hfadataset.h │ │ │ │ ├── hfadictionary.cpp │ │ │ │ ├── hfaentry.cpp │ │ │ │ ├── hfafield.cpp │ │ │ │ ├── hfaopen.cpp │ │ │ │ ├── hfatest.cpp │ │ │ │ └── hfatype.cpp │ │ │ ├── idrisi │ │ │ │ ├── IdrisiDataset.cpp │ │ │ │ ├── idrisi.h │ │ │ │ ├── rdc.txt │ │ │ │ └── rst.txt │ │ │ ├── ignfheightasciigrid │ │ │ │ └── ignfheightasciigrid.cpp │ │ │ ├── ilwis │ │ │ │ ├── ilwiscoordinatesystem.cpp │ │ │ │ ├── ilwisdataset.cpp │ │ │ │ └── ilwisdataset.h │ │ │ ├── ingr │ │ │ │ ├── IngrTypes.cpp │ │ │ │ ├── IngrTypes.h │ │ │ │ ├── IntergraphBand.cpp │ │ │ │ ├── IntergraphBand.h │ │ │ │ ├── IntergraphDataset.cpp │ │ │ │ ├── IntergraphDataset.h │ │ │ │ ├── JpegHelper.cpp │ │ │ │ └── JpegHelper.h │ │ │ ├── iris │ │ │ │ └── irisdataset.cpp │ │ │ ├── iso8211 │ │ │ │ ├── 8211createfromxml.cpp │ │ │ │ ├── 8211dump.cpp │ │ │ │ ├── 8211view.cpp │ │ │ │ ├── configure.in │ │ │ │ ├── ddffield.cpp │ │ │ │ ├── ddffielddefn.cpp │ │ │ │ ├── ddfmodule.cpp │ │ │ │ ├── ddfrecord.cpp │ │ │ │ ├── ddfsubfielddefn.cpp │ │ │ │ ├── ddfutils.cpp │ │ │ │ ├── intro.dox │ │ │ │ ├── iso8211.h │ │ │ │ ├── mkcatalog.cpp │ │ │ │ ├── teststream.out │ │ │ │ ├── teststream.sh │ │ │ │ └── timetest.cpp │ │ │ ├── jaxapalsar │ │ │ │ └── jaxapalsardataset.cpp │ │ │ ├── jdem │ │ │ │ └── jdemdataset.cpp │ │ │ ├── jp2kak │ │ │ │ ├── jp2kak.lst │ │ │ │ ├── jp2kak_headers.h │ │ │ │ ├── jp2kakdataset.cpp │ │ │ │ ├── jp2kakdataset.h │ │ │ │ ├── subfile_source.h │ │ │ │ └── vsil_target.h │ │ │ ├── jp2lura │ │ │ │ ├── jp2luracallbacks.cpp │ │ │ │ ├── jp2luracallbacks.h │ │ │ │ ├── jp2luradataset.cpp │ │ │ │ ├── jp2luradataset.h │ │ │ │ ├── jp2lurarasterband.cpp │ │ │ │ └── jp2lurarasterband.h │ │ │ ├── jpeg │ │ │ │ ├── jpgdataset.cpp │ │ │ │ ├── jpgdataset.h │ │ │ │ ├── jpgdataset_12.cpp │ │ │ │ ├── libjpeg │ │ │ │ │ ├── jcapimin.c │ │ │ │ │ ├── jcapistd.c │ │ │ │ │ ├── jccoefct.c │ │ │ │ │ ├── jccolor.c │ │ │ │ │ ├── jcdctmgr.c │ │ │ │ │ ├── jchuff.c │ │ │ │ │ ├── jchuff.h │ │ │ │ │ ├── jcinit.c │ │ │ │ │ ├── jcmainct.c │ │ │ │ │ ├── jcmarker.c │ │ │ │ │ ├── jcmaster.c │ │ │ │ │ ├── jcomapi.c │ │ │ │ │ ├── jconfig.h │ │ │ │ │ ├── jcparam.c │ │ │ │ │ ├── jcphuff.c │ │ │ │ │ ├── jcprepct.c │ │ │ │ │ ├── jcsample.c │ │ │ │ │ ├── jctrans.c │ │ │ │ │ ├── jdapimin.c │ │ │ │ │ ├── jdapistd.c │ │ │ │ │ ├── jdatadst.c │ │ │ │ │ ├── jdatasrc.c │ │ │ │ │ ├── jdcoefct.c │ │ │ │ │ ├── jdcolor.c │ │ │ │ │ ├── jdct.h │ │ │ │ │ ├── jddctmgr.c │ │ │ │ │ ├── jdhuff.c │ │ │ │ │ ├── jdhuff.h │ │ │ │ │ ├── jdinput.c │ │ │ │ │ ├── jdmainct.c │ │ │ │ │ ├── jdmarker.c │ │ │ │ │ ├── jdmaster.c │ │ │ │ │ ├── jdmerge.c │ │ │ │ │ ├── jdphuff.c │ │ │ │ │ ├── jdpostct.c │ │ │ │ │ ├── jdsample.c │ │ │ │ │ ├── jdtrans.c │ │ │ │ │ ├── jerror.c │ │ │ │ │ ├── jerror.h │ │ │ │ │ ├── jfdctflt.c │ │ │ │ │ ├── jfdctfst.c │ │ │ │ │ ├── jfdctint.c │ │ │ │ │ ├── jidctflt.c │ │ │ │ │ ├── jidctfst.c │ │ │ │ │ ├── jidctint.c │ │ │ │ │ ├── jidctred.c │ │ │ │ │ ├── jinclude.h │ │ │ │ │ ├── jmemansi.c │ │ │ │ │ ├── jmemmgr.c │ │ │ │ │ ├── jmemsys.h │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ ├── jpegint.h │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ ├── jquant1.c │ │ │ │ │ ├── jquant2.c │ │ │ │ │ ├── jutils.c │ │ │ │ │ └── jversion.h │ │ │ │ ├── libjpeg12 │ │ │ │ │ └── jmorecfg.h.12 │ │ │ │ ├── vsidataio.cpp │ │ │ │ ├── vsidataio.h │ │ │ │ └── vsidataio_12.cpp │ │ │ ├── jpeg2000 │ │ │ │ ├── jpeg2000_vsil_io.cpp │ │ │ │ ├── jpeg2000_vsil_io.h │ │ │ │ └── jpeg2000dataset.cpp │ │ │ ├── jpegls │ │ │ │ ├── jpegls_header.h │ │ │ │ └── jpeglsdataset.cpp │ │ │ ├── jpipkak │ │ │ │ ├── components.PNG │ │ │ │ ├── gdalsequence.PNG │ │ │ │ ├── jpipkak_headers.h │ │ │ │ ├── jpipkakdataset.cpp │ │ │ │ ├── jpipkakdataset.h │ │ │ │ └── jpipsequence.PNG │ │ │ ├── kea │ │ │ │ ├── keaband.cpp │ │ │ │ ├── keaband.h │ │ │ │ ├── keacopy.cpp │ │ │ │ ├── keacopy.h │ │ │ │ ├── keadataset.cpp │ │ │ │ ├── keadataset.h │ │ │ │ ├── keadriver.cpp │ │ │ │ ├── keamaskband.cpp │ │ │ │ ├── keamaskband.h │ │ │ │ ├── keaoverview.cpp │ │ │ │ ├── keaoverview.h │ │ │ │ ├── kearat.cpp │ │ │ │ ├── kearat.h │ │ │ │ └── libkea_headers.h │ │ │ ├── kmlsuperoverlay │ │ │ │ ├── kmlsuperoverlaydataset.cpp │ │ │ │ └── kmlsuperoverlaydataset.h │ │ │ ├── l1b │ │ │ │ └── l1bdataset.cpp │ │ │ ├── leveller │ │ │ │ └── levellerdataset.cpp │ │ │ ├── map │ │ │ │ └── mapdataset.cpp │ │ │ ├── mbtiles │ │ │ │ └── mbtilesdataset.cpp │ │ │ ├── mem │ │ │ │ ├── memdataset.cpp │ │ │ │ └── memdataset.h │ │ │ ├── mrf │ │ │ │ ├── BitMask2D.h │ │ │ │ ├── JPEG12_band.cpp │ │ │ │ ├── JPEG_band.cpp │ │ │ │ ├── JPNG_band.cpp │ │ │ │ ├── LERC_band.cpp │ │ │ │ ├── PNG_band.cpp │ │ │ │ ├── Packer.h │ │ │ │ ├── Packer_RLE.cpp │ │ │ │ ├── Packer_RLE.h │ │ │ │ ├── Raw_band.cpp │ │ │ │ ├── Tif_band.cpp │ │ │ │ ├── libLERC │ │ │ │ │ ├── BitMaskV1.cpp │ │ │ │ │ ├── BitMaskV1.h │ │ │ │ │ ├── BitStufferV1.cpp │ │ │ │ │ ├── BitStufferV1.h │ │ │ │ │ ├── CntZImage.cpp │ │ │ │ │ ├── CntZImage.h │ │ │ │ │ ├── DefinesV1.h │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── NOTICE.TXT │ │ │ │ │ └── TImage.hpp │ │ │ │ ├── marfa.h │ │ │ │ ├── marfa_dataset.cpp │ │ │ │ ├── mrf_band.cpp │ │ │ │ ├── mrf_overview.cpp │ │ │ │ └── mrf_util.cpp │ │ │ ├── mrsid │ │ │ │ ├── mrsiddataset.cpp │ │ │ │ ├── mrsidstream.cpp │ │ │ │ ├── mrsidstream.h │ │ │ │ └── nmake.opt │ │ │ ├── mrsid_lidar │ │ │ │ ├── gdal_MG4Lidar.cpp │ │ │ │ └── mg4lidar_headers.h │ │ │ ├── msg │ │ │ │ ├── PublicDecompWT_all.cpp │ │ │ │ ├── PublicDecompWT_headers.h │ │ │ │ ├── msgcommand.cpp │ │ │ │ ├── msgcommand.h │ │ │ │ ├── msgdataset.cpp │ │ │ │ ├── msgdataset.h │ │ │ │ ├── prologue.cpp │ │ │ │ ├── prologue.h │ │ │ │ ├── reflectancecalculator.cpp │ │ │ │ ├── reflectancecalculator.h │ │ │ │ ├── xritheaderparser.cpp │ │ │ │ └── xritheaderparser.h │ │ │ ├── msgn │ │ │ │ ├── msg_basic_types.cpp │ │ │ │ ├── msg_basic_types.h │ │ │ │ ├── msg_reader_core.cpp │ │ │ │ ├── msg_reader_core.h │ │ │ │ └── msgndataset.cpp │ │ │ ├── netcdf │ │ │ │ ├── gmtdataset.cpp │ │ │ │ ├── netcdfdataset.cpp │ │ │ │ ├── netcdfdataset.h │ │ │ │ ├── netcdflayer.cpp │ │ │ │ ├── netcdfuffd.h │ │ │ │ └── netcdfwriterconfig.cpp │ │ │ ├── ngsgeoid │ │ │ │ └── ngsgeoiddataset.cpp │ │ │ ├── nitf │ │ │ │ ├── ecrgtocdataset.cpp │ │ │ │ ├── mgrs.c │ │ │ │ ├── mgrs.h │ │ │ │ ├── nitf_gcprpc.cpp │ │ │ │ ├── nitfaridpcm.cpp │ │ │ │ ├── nitfbilevel.cpp │ │ │ │ ├── nitfdataset.cpp │ │ │ │ ├── nitfdataset.h │ │ │ │ ├── nitfdes.c │ │ │ │ ├── nitfdump.c │ │ │ │ ├── nitffile.c │ │ │ │ ├── nitfimage.c │ │ │ │ ├── nitflib.h │ │ │ │ ├── nitfrasterband.cpp │ │ │ │ ├── nitfwritejpeg.cpp │ │ │ │ ├── nitfwritejpeg_12.cpp │ │ │ │ ├── rpftocdataset.cpp │ │ │ │ ├── rpftocfile.cpp │ │ │ │ └── rpftoclib.h │ │ │ ├── northwood │ │ │ │ ├── grcdataset.cpp │ │ │ │ ├── grddataset.cpp │ │ │ │ ├── northwood.cpp │ │ │ │ └── northwood.h │ │ │ ├── null │ │ │ │ └── nulldataset.cpp │ │ │ ├── openjpeg │ │ │ │ ├── eoptemplate_pleiades.xml │ │ │ │ ├── eoptemplate_worldviewgeoeye.xml │ │ │ │ └── openjpegdataset.cpp │ │ │ ├── ozi │ │ │ │ └── ozidataset.cpp │ │ │ ├── pcidsk │ │ │ │ ├── gdal_edb.cpp │ │ │ │ ├── notes.txt │ │ │ │ ├── ogrpcidsklayer.cpp │ │ │ │ ├── pcidskdataset2.cpp │ │ │ │ ├── pcidskdataset2.h │ │ │ │ ├── sdk │ │ │ │ │ ├── channel │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cbandinterleavedchannel.cpp │ │ │ │ │ │ ├── cbandinterleavedchannel.h │ │ │ │ │ │ ├── cexternalchannel.cpp │ │ │ │ │ │ ├── cexternalchannel.h │ │ │ │ │ │ ├── cpcidskchannel.cpp │ │ │ │ │ │ ├── cpcidskchannel.h │ │ │ │ │ │ ├── cpixelinterleavedchannel.cpp │ │ │ │ │ │ ├── cpixelinterleavedchannel.h │ │ │ │ │ │ ├── ctiledchannel.cpp │ │ │ │ │ │ └── ctiledchannel.h │ │ │ │ │ ├── core │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clinksegment.cpp │ │ │ │ │ │ ├── clinksegment.h │ │ │ │ │ │ ├── cpcidskfile.cpp │ │ │ │ │ │ ├── cpcidskfile.h │ │ │ │ │ │ ├── edb_pcidsk.cpp │ │ │ │ │ │ ├── libjpeg_io.cpp │ │ │ │ │ │ ├── metadataset.h │ │ │ │ │ │ ├── metadataset_p.cpp │ │ │ │ │ │ ├── mutexholder.h │ │ │ │ │ │ ├── pcidsk_pubutils.cpp │ │ │ │ │ │ ├── pcidsk_utils.cpp │ │ │ │ │ │ ├── pcidsk_utils.h │ │ │ │ │ │ ├── pcidskbuffer.cpp │ │ │ │ │ │ ├── pcidskcreate.cpp │ │ │ │ │ │ ├── pcidskexception.cpp │ │ │ │ │ │ ├── pcidskinterfaces.cpp │ │ │ │ │ │ ├── pcidskopen.cpp │ │ │ │ │ │ ├── protectedfile.h │ │ │ │ │ │ ├── sysvirtualfile.cpp │ │ │ │ │ │ └── sysvirtualfile.h │ │ │ │ │ ├── pcidsk.h │ │ │ │ │ ├── pcidsk_ads40.h │ │ │ │ │ ├── pcidsk_airphoto.h │ │ │ │ │ ├── pcidsk_array.h │ │ │ │ │ ├── pcidsk_binary.h │ │ │ │ │ ├── pcidsk_buffer.h │ │ │ │ │ ├── pcidsk_channel.h │ │ │ │ │ ├── pcidsk_config.h │ │ │ │ │ ├── pcidsk_edb.h │ │ │ │ │ ├── pcidsk_ephemeris.h │ │ │ │ │ ├── pcidsk_exception.h │ │ │ │ │ ├── pcidsk_file.h │ │ │ │ │ ├── pcidsk_gcp.h │ │ │ │ │ ├── pcidsk_gcpsegment.h │ │ │ │ │ ├── pcidsk_georef.h │ │ │ │ │ ├── pcidsk_interfaces.h │ │ │ │ │ ├── pcidsk_io.h │ │ │ │ │ ├── pcidsk_mutex.h │ │ │ │ │ ├── pcidsk_pct.h │ │ │ │ │ ├── pcidsk_poly.h │ │ │ │ │ ├── pcidsk_rpc.h │ │ │ │ │ ├── pcidsk_segment.h │ │ │ │ │ ├── pcidsk_shape.h │ │ │ │ │ ├── pcidsk_tex.h │ │ │ │ │ ├── pcidsk_toutin.h │ │ │ │ │ ├── pcidsk_types.h │ │ │ │ │ ├── pcidsk_vectorsegment.h │ │ │ │ │ ├── port │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── io_stdio.cpp │ │ │ │ │ │ ├── io_win32.cpp │ │ │ │ │ │ ├── pthread_mutex.cpp │ │ │ │ │ │ └── win32_mutex.cpp │ │ │ │ │ └── segment │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpcidsk_array.cpp │ │ │ │ │ │ ├── cpcidsk_array.h │ │ │ │ │ │ ├── cpcidsk_tex.cpp │ │ │ │ │ │ ├── cpcidsk_tex.h │ │ │ │ │ │ ├── cpcidskads40model.cpp │ │ │ │ │ │ ├── cpcidskads40model.h │ │ │ │ │ │ ├── cpcidskapmodel.cpp │ │ │ │ │ │ ├── cpcidskapmodel.h │ │ │ │ │ │ ├── cpcidskbinarysegment.cpp │ │ │ │ │ │ ├── cpcidskbinarysegment.h │ │ │ │ │ │ ├── cpcidskbitmap.cpp │ │ │ │ │ │ ├── cpcidskbitmap.h │ │ │ │ │ │ ├── cpcidskephemerissegment.cpp │ │ │ │ │ │ ├── cpcidskephemerissegment.h │ │ │ │ │ │ ├── cpcidskgcp2segment.cpp │ │ │ │ │ │ ├── cpcidskgcp2segment.h │ │ │ │ │ │ ├── cpcidskgeoref.cpp │ │ │ │ │ │ ├── cpcidskgeoref.h │ │ │ │ │ │ ├── cpcidskpct.cpp │ │ │ │ │ │ ├── cpcidskpct.h │ │ │ │ │ │ ├── cpcidskpolymodel.h │ │ │ │ │ │ ├── cpcidskrpcmodel.cpp │ │ │ │ │ │ ├── cpcidskrpcmodel.h │ │ │ │ │ │ ├── cpcidsksegment.cpp │ │ │ │ │ │ ├── cpcidsksegment.h │ │ │ │ │ │ ├── cpcidsktoutinmodel.cpp │ │ │ │ │ │ ├── cpcidsktoutinmodel.h │ │ │ │ │ │ ├── cpcidskvectorsegment.cpp │ │ │ │ │ │ ├── cpcidskvectorsegment.h │ │ │ │ │ │ ├── cpcidskvectorsegment_consistencycheck.cpp │ │ │ │ │ │ ├── metadatasegment.h │ │ │ │ │ │ ├── metadatasegment_p.cpp │ │ │ │ │ │ ├── orbitstructures.h │ │ │ │ │ │ ├── pcidsksegmentbuilder.h │ │ │ │ │ │ ├── sysblockmap.cpp │ │ │ │ │ │ ├── sysblockmap.h │ │ │ │ │ │ ├── toutinstructures.h │ │ │ │ │ │ ├── vecsegdataindex.cpp │ │ │ │ │ │ ├── vecsegdataindex.h │ │ │ │ │ │ ├── vecsegheader.cpp │ │ │ │ │ │ └── vecsegheader.h │ │ │ │ └── vsi_pcidsk_io.cpp │ │ │ ├── pcraster │ │ │ │ ├── doxygen.cfg │ │ │ │ ├── libcsf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── _getcell.c │ │ │ │ │ ├── _getrow.c │ │ │ │ │ ├── _gsomece.c │ │ │ │ │ ├── _putcell.c │ │ │ │ │ ├── _rputrow.c │ │ │ │ │ ├── angle.c │ │ │ │ │ ├── attravai.c │ │ │ │ │ ├── attrsize.c │ │ │ │ │ ├── cellsize.c │ │ │ │ │ ├── create2.c │ │ │ │ │ ├── csf.h │ │ │ │ │ ├── csfattr.h │ │ │ │ │ ├── csfglob.c │ │ │ │ │ ├── csfimpl.h │ │ │ │ │ ├── csfsup.c │ │ │ │ │ ├── csftypes.h │ │ │ │ │ ├── delattr.c │ │ │ │ │ ├── dumconv.c │ │ │ │ │ ├── endian.c │ │ │ │ │ ├── file.c │ │ │ │ │ ├── filename.c │ │ │ │ │ ├── gattrblk.c │ │ │ │ │ ├── gattridx.c │ │ │ │ │ ├── gcellrep.c │ │ │ │ │ ├── gdattype.c │ │ │ │ │ ├── getattr.c │ │ │ │ │ ├── getx0.c │ │ │ │ │ ├── gety0.c │ │ │ │ │ ├── ggisfid.c │ │ │ │ │ ├── gmaxval.c │ │ │ │ │ ├── gminval.c │ │ │ │ │ ├── gnrcols.c │ │ │ │ │ ├── gnrrows.c │ │ │ │ │ ├── gproj.c │ │ │ │ │ ├── gputproj.c │ │ │ │ │ ├── gvalscal.c │ │ │ │ │ ├── gvartype.c │ │ │ │ │ ├── gversion.c │ │ │ │ │ ├── ismv.c │ │ │ │ │ ├── kernlcsf.c │ │ │ │ │ ├── legend.c │ │ │ │ │ ├── mclose.c │ │ │ │ │ ├── mopen.c │ │ │ │ │ ├── moreattr.c │ │ │ │ │ ├── mperror.c │ │ │ │ │ ├── pcrtypes.h │ │ │ │ │ ├── pgisfid.c │ │ │ │ │ ├── pmaxval.c │ │ │ │ │ ├── pminval.c │ │ │ │ │ ├── putallmv.c │ │ │ │ │ ├── putattr.c │ │ │ │ │ ├── putsomec.c │ │ │ │ │ ├── putx0.c │ │ │ │ │ ├── puty0.c │ │ │ │ │ ├── pvalscal.c │ │ │ │ │ ├── rattrblk.c │ │ │ │ │ ├── rcomp.c │ │ │ │ │ ├── rcoords.c │ │ │ │ │ ├── rdup2.c │ │ │ │ │ ├── reseterr.c │ │ │ │ │ ├── rextend.c │ │ │ │ │ ├── rmalloc.c │ │ │ │ │ ├── rrowcol.c │ │ │ │ │ ├── ruseas.c │ │ │ │ │ ├── setangle.c │ │ │ │ │ ├── setmv.c │ │ │ │ │ ├── setvtmv.c │ │ │ │ │ ├── strconst.c │ │ │ │ │ ├── strpad.c │ │ │ │ │ ├── swapio.c │ │ │ │ │ ├── trackmm.c │ │ │ │ │ ├── vs2.c │ │ │ │ │ ├── vsdef.c │ │ │ │ │ ├── vsis.c │ │ │ │ │ ├── vsvers.c │ │ │ │ │ └── wattrblk.c │ │ │ │ ├── pcrasterdataset.cpp │ │ │ │ ├── pcrasterdataset.h │ │ │ │ ├── pcrastermisc.cpp │ │ │ │ ├── pcrasterrasterband.cpp │ │ │ │ ├── pcrasterrasterband.h │ │ │ │ ├── pcrasterutil.cpp │ │ │ │ └── pcrasterutil.h │ │ │ ├── pdf │ │ │ │ ├── gdal_pdf.h │ │ │ │ ├── ogrpdflayer.cpp │ │ │ │ ├── pdfcreatecopy.cpp │ │ │ │ ├── pdfcreatecopy.h │ │ │ │ ├── pdfdataset.cpp │ │ │ │ ├── pdfio.cpp │ │ │ │ ├── pdfio.h │ │ │ │ ├── pdfobject.cpp │ │ │ │ ├── pdfobject.h │ │ │ │ ├── pdfreadvectors.cpp │ │ │ │ ├── pdfsdk_headers.h │ │ │ │ └── pdfwritabledataset.cpp │ │ │ ├── pds │ │ │ │ ├── isis2dataset.cpp │ │ │ │ ├── isis3dataset.cpp │ │ │ │ ├── nasakeywordhandler.cpp │ │ │ │ ├── nasakeywordhandler.h │ │ │ │ ├── pds4dataset.cpp │ │ │ │ ├── pdsdataset.cpp │ │ │ │ ├── vicardataset.cpp │ │ │ │ ├── vicarkeywordhandler.cpp │ │ │ │ └── vicarkeywordhandler.h │ │ │ ├── plmosaic │ │ │ │ └── plmosaicdataset.cpp │ │ │ ├── png │ │ │ │ ├── libpng │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── libpng_gdal.patch │ │ │ │ │ ├── png.c │ │ │ │ │ ├── png.h │ │ │ │ │ ├── pngconf.h │ │ │ │ │ ├── pngerror.c │ │ │ │ │ ├── pnggccrd.c │ │ │ │ │ ├── pngget.c │ │ │ │ │ ├── pngmem.c │ │ │ │ │ ├── pngpread.c │ │ │ │ │ ├── pngread.c │ │ │ │ │ ├── pngrio.c │ │ │ │ │ ├── pngrtran.c │ │ │ │ │ ├── pngrutil.c │ │ │ │ │ ├── pngset.c │ │ │ │ │ ├── pngtrans.c │ │ │ │ │ ├── pngvcrd.c │ │ │ │ │ ├── pngwio.c │ │ │ │ │ ├── pngwrite.c │ │ │ │ │ ├── pngwtran.c │ │ │ │ │ └── pngwutil.c │ │ │ │ ├── pngdataset.cpp │ │ │ │ └── pngdataset.h │ │ │ ├── postgisraster │ │ │ │ ├── postgisraster.h │ │ │ │ ├── postgisrasterdataset.cpp │ │ │ │ ├── postgisrasterdriver.cpp │ │ │ │ ├── postgisrasterrasterband.cpp │ │ │ │ ├── postgisrastertiledataset.cpp │ │ │ │ ├── postgisrastertilerasterband.cpp │ │ │ │ ├── postgisrastertools.cpp │ │ │ │ ├── readme │ │ │ │ └── todo │ │ │ ├── prf │ │ │ │ └── phprfdataset.cpp │ │ │ ├── r │ │ │ │ ├── rcreatecopy.cpp │ │ │ │ ├── rdataset.cpp │ │ │ │ └── rdataset.h │ │ │ ├── rasdaman │ │ │ │ ├── rasdamandataset.cpp │ │ │ │ └── rasdamandataset.h │ │ │ ├── rasterlite │ │ │ │ ├── rasterlitecreatecopy.cpp │ │ │ │ ├── rasterlitedataset.cpp │ │ │ │ ├── rasterlitedataset.h │ │ │ │ └── rasterliteoverviews.cpp │ │ │ ├── raw │ │ │ │ ├── ace2dataset.cpp │ │ │ │ ├── atlsci_spheroid.cpp │ │ │ │ ├── atlsci_spheroid.h │ │ │ │ ├── btdataset.cpp │ │ │ │ ├── byndataset.cpp │ │ │ │ ├── byndataset.h │ │ │ │ ├── cpgdataset.cpp │ │ │ │ ├── ctable2dataset.cpp │ │ │ │ ├── dipxdataset.cpp │ │ │ │ ├── doq1dataset.cpp │ │ │ │ ├── doq2dataset.cpp │ │ │ │ ├── ehdrdataset.cpp │ │ │ │ ├── ehdrdataset.h │ │ │ │ ├── eirdataset.cpp │ │ │ │ ├── envidataset.cpp │ │ │ │ ├── envidataset.h │ │ │ │ ├── fastdataset.cpp │ │ │ │ ├── fujibasdataset.cpp │ │ │ │ ├── genbindataset.cpp │ │ │ │ ├── gscdataset.cpp │ │ │ │ ├── gtxdataset.cpp │ │ │ │ ├── hkvdataset.cpp │ │ │ │ ├── idadataset.cpp │ │ │ │ ├── iscedataset.cpp │ │ │ │ ├── krodataset.cpp │ │ │ │ ├── landataset.cpp │ │ │ │ ├── lcpdataset.cpp │ │ │ │ ├── loslasdataset.cpp │ │ │ │ ├── mffdataset.cpp │ │ │ │ ├── ndfdataset.cpp │ │ │ │ ├── ntv1dataset.cpp │ │ │ │ ├── ntv2dataset.cpp │ │ │ │ ├── pauxdataset.cpp │ │ │ │ ├── pnmdataset.cpp │ │ │ │ ├── rawdataset.cpp │ │ │ │ ├── rawdataset.h │ │ │ │ ├── roipacdataset.cpp │ │ │ │ ├── rrasterdataset.cpp │ │ │ │ └── snodasdataset.cpp │ │ │ ├── rda │ │ │ │ └── rdadataset.cpp │ │ │ ├── rik │ │ │ │ └── rikdataset.cpp │ │ │ ├── rmf │ │ │ │ ├── rmfdataset.cpp │ │ │ │ ├── rmfdataset.h │ │ │ │ ├── rmfdem.cpp │ │ │ │ ├── rmfjpeg.cpp │ │ │ │ └── rmflzw.cpp │ │ │ ├── rs2 │ │ │ │ └── rs2dataset.cpp │ │ │ ├── safe │ │ │ │ └── safedataset.cpp │ │ │ ├── saga │ │ │ │ └── sagadataset.cpp │ │ │ ├── sde │ │ │ │ ├── gdal_sde.h │ │ │ │ ├── sdedataset.cpp │ │ │ │ ├── sdedataset.h │ │ │ │ ├── sdeerror.cpp │ │ │ │ ├── sdeerror.h │ │ │ │ ├── sderasterband.cpp │ │ │ │ └── sderasterband.h │ │ │ ├── sdts │ │ │ │ ├── configure.in │ │ │ │ ├── sdts2shp.cpp │ │ │ │ ├── sdts_al.h │ │ │ │ ├── sdts_main.dox │ │ │ │ ├── sdts_tut.dox │ │ │ │ ├── sdtsattrreader.cpp │ │ │ │ ├── sdtscatd.cpp │ │ │ │ ├── sdtsdataset.cpp │ │ │ │ ├── sdtsindexedreader.cpp │ │ │ │ ├── sdtsiref.cpp │ │ │ │ ├── sdtslib.cpp │ │ │ │ ├── sdtslinereader.cpp │ │ │ │ ├── sdtspointreader.cpp │ │ │ │ ├── sdtspolygonreader.cpp │ │ │ │ ├── sdtsrasterreader.cpp │ │ │ │ ├── sdtstransfer.cpp │ │ │ │ └── sdtsxref.cpp │ │ │ ├── sentinel2 │ │ │ │ └── sentinel2dataset.cpp │ │ │ ├── sgi │ │ │ │ └── sgidataset.cpp │ │ │ ├── sigdem │ │ │ │ ├── sigdemdataset.cpp │ │ │ │ └── sigdemdataset.h │ │ │ ├── srtmhgt │ │ │ │ └── srtmhgtdataset.cpp │ │ │ ├── terragen │ │ │ │ ├── readme.txt │ │ │ │ └── terragendataset.cpp │ │ │ ├── til │ │ │ │ └── tildataset.cpp │ │ │ ├── tsx │ │ │ │ └── tsxdataset.cpp │ │ │ ├── usgsdem │ │ │ │ ├── CDED.notes │ │ │ │ ├── usgsdem_create.cpp │ │ │ │ └── usgsdemdataset.cpp │ │ │ ├── vrt │ │ │ │ ├── gdal_vrt.h │ │ │ │ ├── pixelfunctions.cpp │ │ │ │ ├── vrt_tutorial.dox │ │ │ │ ├── vrtdataset.cpp │ │ │ │ ├── vrtdataset.h │ │ │ │ ├── vrtderivedrasterband.cpp │ │ │ │ ├── vrtdriver.cpp │ │ │ │ ├── vrtfilters.cpp │ │ │ │ ├── vrtpansharpened.cpp │ │ │ │ ├── vrtrasterband.cpp │ │ │ │ ├── vrtrawrasterband.cpp │ │ │ │ ├── vrtsourcedrasterband.cpp │ │ │ │ ├── vrtsources.cpp │ │ │ │ └── vrtwarped.cpp │ │ │ ├── wcs │ │ │ │ ├── gmlcoverage.cpp │ │ │ │ ├── gmlcoverage.h │ │ │ │ ├── httpdriver.cpp │ │ │ │ ├── wcsdataset.cpp │ │ │ │ ├── wcsdataset.h │ │ │ │ ├── wcsdataset100.cpp │ │ │ │ ├── wcsdataset110.cpp │ │ │ │ ├── wcsdataset201.cpp │ │ │ │ ├── wcsrasterband.cpp │ │ │ │ ├── wcsrasterband.h │ │ │ │ ├── wcsutils.cpp │ │ │ │ └── wcsutils.h │ │ │ ├── webp │ │ │ │ ├── webp_headers.h │ │ │ │ └── webpdataset.cpp │ │ │ ├── wms │ │ │ │ ├── WMSServerList.txt │ │ │ │ ├── frmt_ags_arcgisonline.xml │ │ │ │ ├── frmt_twms_Clementine.xml │ │ │ │ ├── frmt_twms_Moon.xml │ │ │ │ ├── frmt_twms_daily.xml │ │ │ │ ├── frmt_twms_srtm.xml │ │ │ │ ├── frmt_wms_arcgis_mapserver_tms.xml │ │ │ │ ├── frmt_wms_arcgis_terrain_tms_lerc.xml │ │ │ │ ├── frmt_wms_bluemarble_s3_tms.xml │ │ │ │ ├── frmt_wms_googlemaps_tms.xml │ │ │ │ ├── frmt_wms_iip.xml │ │ │ │ ├── frmt_wms_metacarta_tms.xml │ │ │ │ ├── frmt_wms_metacarta_wmsc.xml │ │ │ │ ├── frmt_wms_onearth_global_mosaic.xml │ │ │ │ ├── frmt_wms_openstreetmap_tms.xml │ │ │ │ ├── frmt_wms_tileservice_bmng.xml │ │ │ │ ├── frmt_wms_tileservice_nysdop2004.xml │ │ │ │ ├── frmt_wms_virtualearth.xml │ │ │ │ ├── gdalhttp.cpp │ │ │ │ ├── gdalhttp.h │ │ │ │ ├── gdalwmscache.cpp │ │ │ │ ├── gdalwmsdataset.cpp │ │ │ │ ├── gdalwmsrasterband.cpp │ │ │ │ ├── minidriver.cpp │ │ │ │ ├── minidriver_arcgis_server.cpp │ │ │ │ ├── minidriver_arcgis_server.h │ │ │ │ ├── minidriver_iip.cpp │ │ │ │ ├── minidriver_iip.h │ │ │ │ ├── minidriver_mrf.cpp │ │ │ │ ├── minidriver_mrf.h │ │ │ │ ├── minidriver_tiled_wms.cpp │ │ │ │ ├── minidriver_tiled_wms.h │ │ │ │ ├── minidriver_tileservice.cpp │ │ │ │ ├── minidriver_tileservice.h │ │ │ │ ├── minidriver_tms.cpp │ │ │ │ ├── minidriver_tms.h │ │ │ │ ├── minidriver_virtualearth.cpp │ │ │ │ ├── minidriver_virtualearth.h │ │ │ │ ├── minidriver_wms.cpp │ │ │ │ ├── minidriver_wms.h │ │ │ │ ├── minidriver_worldwind.cpp │ │ │ │ ├── minidriver_worldwind.h │ │ │ │ ├── wmsdriver.cpp │ │ │ │ ├── wmsdriver.h │ │ │ │ ├── wmsmetadataset.cpp │ │ │ │ ├── wmsmetadataset.h │ │ │ │ └── wmsutils.cpp │ │ │ ├── wmts │ │ │ │ └── wmtsdataset.cpp │ │ │ ├── xpm │ │ │ │ └── xpmdataset.cpp │ │ │ ├── xyz │ │ │ │ └── xyzdataset.cpp │ │ │ ├── zlib │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzio.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ └── zmap │ │ │ │ └── zmapdataset.cpp │ │ ├── gcore │ │ │ ├── Version.rc │ │ │ ├── gdal.h │ │ │ ├── gdal_avx2_emulation.hpp │ │ │ ├── gdal_frmts.h │ │ │ ├── gdal_mdreader.cpp │ │ │ ├── gdal_mdreader.h │ │ │ ├── gdal_misc.cpp │ │ │ ├── gdal_pam.h │ │ │ ├── gdal_priv.h │ │ │ ├── gdal_priv_templates.hpp │ │ │ ├── gdal_proxy.h │ │ │ ├── gdal_rat.cpp │ │ │ ├── gdal_rat.h │ │ │ ├── gdal_version.h │ │ │ ├── gdal_version.h.in │ │ │ ├── gdalabstractbandblockcache.cpp │ │ │ ├── gdalallvalidmaskband.cpp │ │ │ ├── gdalarraybandblockcache.cpp │ │ │ ├── gdalclientserver.cpp │ │ │ ├── gdalcolortable.cpp │ │ │ ├── gdaldataset.cpp │ │ │ ├── gdaldefaultasync.cpp │ │ │ ├── gdaldefaultoverviews.cpp │ │ │ ├── gdaldllmain.cpp │ │ │ ├── gdaldriver.cpp │ │ │ ├── gdaldrivermanager.cpp │ │ │ ├── gdalexif.cpp │ │ │ ├── gdalexif.h │ │ │ ├── gdalgeorefpamdataset.cpp │ │ │ ├── gdalgeorefpamdataset.h │ │ │ ├── gdalhashsetbandblockcache.cpp │ │ │ ├── gdaljp2abstractdataset.cpp │ │ │ ├── gdaljp2abstractdataset.h │ │ │ ├── gdaljp2box.cpp │ │ │ ├── gdaljp2metadata.cpp │ │ │ ├── gdaljp2metadata.h │ │ │ ├── gdaljp2metadatagenerator.cpp │ │ │ ├── gdaljp2metadatagenerator.h │ │ │ ├── gdaljp2structure.cpp │ │ │ ├── gdalmajorobject.cpp │ │ │ ├── gdalmultidomainmetadata.cpp │ │ │ ├── gdalnodatamaskband.cpp │ │ │ ├── gdalnodatavaluesmaskband.cpp │ │ │ ├── gdalopeninfo.cpp │ │ │ ├── gdaloverviewdataset.cpp │ │ │ ├── gdalpamdataset.cpp │ │ │ ├── gdalpamproxydb.cpp │ │ │ ├── gdalpamrasterband.cpp │ │ │ ├── gdalproxydataset.cpp │ │ │ ├── gdalproxypool.cpp │ │ │ ├── gdalrasterband.cpp │ │ │ ├── gdalrasterblock.cpp │ │ │ ├── gdalrescaledalphaband.cpp │ │ │ ├── gdalsse_priv.h │ │ │ ├── gdalvirtualmem.cpp │ │ │ ├── generate_gdal_version_h.sh │ │ │ ├── mdreader │ │ │ │ ├── reader_alos.cpp │ │ │ │ ├── reader_alos.h │ │ │ │ ├── reader_digital_globe.cpp │ │ │ │ ├── reader_digital_globe.h │ │ │ │ ├── reader_eros.cpp │ │ │ │ ├── reader_eros.h │ │ │ │ ├── reader_geo_eye.cpp │ │ │ │ ├── reader_geo_eye.h │ │ │ │ ├── reader_kompsat.cpp │ │ │ │ ├── reader_kompsat.h │ │ │ │ ├── reader_landsat.cpp │ │ │ │ ├── reader_landsat.h │ │ │ │ ├── reader_orb_view.cpp │ │ │ │ ├── reader_orb_view.h │ │ │ │ ├── reader_pleiades.cpp │ │ │ │ ├── reader_pleiades.h │ │ │ │ ├── reader_rapid_eye.cpp │ │ │ │ ├── reader_rapid_eye.h │ │ │ │ ├── reader_rdk1.cpp │ │ │ │ ├── reader_rdk1.h │ │ │ │ ├── reader_spot.cpp │ │ │ │ └── reader_spot.h │ │ │ ├── overview.cpp │ │ │ ├── rasterio.cpp │ │ │ ├── rasterio_ssse3.cpp │ │ │ └── statistics.txt │ │ ├── gnm │ │ │ ├── gnm.h │ │ │ ├── gnm_api.h │ │ │ ├── gnm_arch.dox │ │ │ ├── gnm_frmts │ │ │ │ ├── db │ │ │ │ │ ├── gnmdb.h │ │ │ │ │ ├── gnmdbdriver.cpp │ │ │ │ │ └── gnmdbnetwork.cpp │ │ │ │ ├── file │ │ │ │ │ ├── gnmfile.h │ │ │ │ │ ├── gnmfiledriver.cpp │ │ │ │ │ └── gnmfilenetwork.cpp │ │ │ │ ├── gnm_frmts.h │ │ │ │ └── gnmregisterall.cpp │ │ │ ├── gnm_priv.h │ │ │ ├── gnm_tut.dox │ │ │ ├── gnmgenericnetwork.cpp │ │ │ ├── gnmgraph.cpp │ │ │ ├── gnmgraph.h │ │ │ ├── gnmlayer.cpp │ │ │ ├── gnmnetwork.cpp │ │ │ ├── gnmresultlayer.cpp │ │ │ └── gnmrule.cpp │ │ ├── ogr │ │ │ ├── file.lst │ │ │ ├── generate_encoding_table.c │ │ │ ├── gml2ogrgeometry.cpp │ │ │ ├── ogr2gmlgeometry.cpp │ │ │ ├── ogr_api.cpp │ │ │ ├── ogr_api.h │ │ │ ├── ogr_apitut.dox │ │ │ ├── ogr_arch.dox │ │ │ ├── ogr_capi_test.c │ │ │ ├── ogr_core.h │ │ │ ├── ogr_drivertut.dox │ │ │ ├── ogr_expat.cpp │ │ │ ├── ogr_expat.h │ │ │ ├── ogr_feature.h │ │ │ ├── ogr_featurestyle.h │ │ │ ├── ogr_fromepsg.cpp │ │ │ ├── ogr_geo_utils.cpp │ │ │ ├── ogr_geo_utils.h │ │ │ ├── ogr_geocoding.cpp │ │ │ ├── ogr_geocoding.h │ │ │ ├── ogr_geometry.h │ │ │ ├── ogr_geos.h │ │ │ ├── ogr_libs.h │ │ │ ├── ogr_opt.cpp │ │ │ ├── ogr_p.h │ │ │ ├── ogr_sfcgal.h │ │ │ ├── ogr_spatialref.h │ │ │ ├── ogr_sql.dox │ │ │ ├── ogr_sql_sqlite.dox │ │ │ ├── ogr_srs_api.h │ │ │ ├── ogr_srs_dict.cpp │ │ │ ├── ogr_srs_erm.cpp │ │ │ ├── ogr_srs_esri.cpp │ │ │ ├── ogr_srs_esri_names.h │ │ │ ├── ogr_srs_ozi.cpp │ │ │ ├── ogr_srs_panorama.cpp │ │ │ ├── ogr_srs_pci.cpp │ │ │ ├── ogr_srs_proj4.cpp │ │ │ ├── ogr_srs_usgs.cpp │ │ │ ├── ogr_srs_validate.cpp │ │ │ ├── ogr_srs_xml.cpp │ │ │ ├── ogr_srsnode.cpp │ │ │ ├── ogr_xerces.cpp │ │ │ ├── ogr_xerces.h │ │ │ ├── ogr_xerces_headers.h │ │ │ ├── ograpispy.cpp │ │ │ ├── ograpispy.h │ │ │ ├── ograssemblepolygon.cpp │ │ │ ├── ogrcircularstring.cpp │ │ │ ├── ogrcompoundcurve.cpp │ │ │ ├── ogrct.cpp │ │ │ ├── ogrcurve.cpp │ │ │ ├── ogrcurvecollection.cpp │ │ │ ├── ogrcurvepolygon.cpp │ │ │ ├── ogrfeature.cpp │ │ │ ├── ogrfeaturedefn.cpp │ │ │ ├── ogrfeaturequery.cpp │ │ │ ├── ogrfeaturestyle.cpp │ │ │ ├── ogrfielddefn.cpp │ │ │ ├── ogrgeomediageometry.cpp │ │ │ ├── ogrgeomediageometry.h │ │ │ ├── ogrgeometry.cpp │ │ │ ├── ogrgeometrycollection.cpp │ │ │ ├── ogrgeometryfactory.cpp │ │ │ ├── ogrgeomfielddefn.cpp │ │ │ ├── ogrlinearring.cpp │ │ │ ├── ogrlinestring.cpp │ │ │ ├── ogrmulticurve.cpp │ │ │ ├── ogrmultilinestring.cpp │ │ │ ├── ogrmultipoint.cpp │ │ │ ├── ogrmultipolygon.cpp │ │ │ ├── ogrmultisurface.cpp │ │ │ ├── ogrpgeogeometry.cpp │ │ │ ├── ogrpgeogeometry.h │ │ │ ├── ogrpoint.cpp │ │ │ ├── ogrpolygon.cpp │ │ │ ├── ogrpolyhedralsurface.cpp │ │ │ ├── ogrsf_frmts │ │ │ │ ├── aeronavfaa │ │ │ │ │ ├── ogr_aeronavfaa.h │ │ │ │ │ ├── ograeronavfaadatasource.cpp │ │ │ │ │ ├── ograeronavfaadriver.cpp │ │ │ │ │ └── ograeronavfaalayer.cpp │ │ │ │ ├── amigocloud │ │ │ │ │ ├── ogr_amigocloud.h │ │ │ │ │ ├── ogramigoclouddatasource.cpp │ │ │ │ │ ├── ogramigoclouddriver.cpp │ │ │ │ │ ├── ogramigocloudlayer.cpp │ │ │ │ │ ├── ogramigocloudresultlayer.cpp │ │ │ │ │ ├── ogramigocloudtablelayer.cpp │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── configure │ │ │ │ │ │ └── configure.in │ │ │ │ ├── arcgen │ │ │ │ │ ├── ogr_arcgen.h │ │ │ │ │ ├── ograrcgendatasource.cpp │ │ │ │ │ ├── ograrcgendriver.cpp │ │ │ │ │ └── ograrcgenlayer.cpp │ │ │ │ ├── arcobjects │ │ │ │ │ ├── aodatasource.cpp │ │ │ │ │ ├── aodriver.cpp │ │ │ │ │ ├── aolayer.cpp │ │ │ │ │ ├── aoutils.cpp │ │ │ │ │ ├── aoutils.h │ │ │ │ │ └── ogr_ao.h │ │ │ │ ├── avc │ │ │ │ │ ├── HISTORY.TXT │ │ │ │ │ ├── avc.h │ │ │ │ │ ├── avc_bin.cpp │ │ │ │ │ ├── avc_binwr.cpp │ │ │ │ │ ├── avc_e00gen.cpp │ │ │ │ │ ├── avc_e00parse.cpp │ │ │ │ │ ├── avc_e00read.cpp │ │ │ │ │ ├── avc_e00write.cpp │ │ │ │ │ ├── avc_mbyte.cpp │ │ │ │ │ ├── avc_mbyte.h │ │ │ │ │ ├── avc_misc.cpp │ │ │ │ │ ├── avc_rawbin.cpp │ │ │ │ │ ├── ogr_avc.h │ │ │ │ │ ├── ogravcbindatasource.cpp │ │ │ │ │ ├── ogravcbindriver.cpp │ │ │ │ │ ├── ogravcbinlayer.cpp │ │ │ │ │ ├── ogravcdatasource.cpp │ │ │ │ │ ├── ogravce00datasource.cpp │ │ │ │ │ ├── ogravce00driver.cpp │ │ │ │ │ ├── ogravce00layer.cpp │ │ │ │ │ └── ogravclayer.cpp │ │ │ │ ├── bna │ │ │ │ │ ├── ogr_bna.h │ │ │ │ │ ├── ogrbnadatasource.cpp │ │ │ │ │ ├── ogrbnadriver.cpp │ │ │ │ │ ├── ogrbnalayer.cpp │ │ │ │ │ ├── ogrbnaparser.cpp │ │ │ │ │ └── ogrbnaparser.h │ │ │ │ ├── cad │ │ │ │ │ ├── gdalcaddataset.cpp │ │ │ │ │ ├── libopencad │ │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ │ ├── cadclasses.cpp │ │ │ │ │ │ ├── cadclasses.h │ │ │ │ │ │ ├── cadcolors.cpp │ │ │ │ │ │ ├── cadcolors.h │ │ │ │ │ │ ├── caddictionary.cpp │ │ │ │ │ │ ├── caddictionary.h │ │ │ │ │ │ ├── cadfile.cpp │ │ │ │ │ │ ├── cadfile.h │ │ │ │ │ │ ├── cadfileio.cpp │ │ │ │ │ │ ├── cadfileio.h │ │ │ │ │ │ ├── cadfilestreamio.cpp │ │ │ │ │ │ ├── cadfilestreamio.h │ │ │ │ │ │ ├── cadgeometry.cpp │ │ │ │ │ │ ├── cadgeometry.h │ │ │ │ │ │ ├── cadheader.cpp │ │ │ │ │ │ ├── cadheader.h │ │ │ │ │ │ ├── cadlayer.cpp │ │ │ │ │ │ ├── cadlayer.h │ │ │ │ │ │ ├── cadobjects.cpp │ │ │ │ │ │ ├── cadobjects.h │ │ │ │ │ │ ├── cadtables.cpp │ │ │ │ │ │ ├── cadtables.h │ │ │ │ │ │ ├── dwg │ │ │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ │ │ ├── io.cpp │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ │ ├── r2000.cpp │ │ │ │ │ │ │ └── r2000.h │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── opencad.cpp │ │ │ │ │ │ ├── opencad.h │ │ │ │ │ │ └── opencad_api.h │ │ │ │ │ ├── ogr_cad.h │ │ │ │ │ ├── ogrcaddriver.cpp │ │ │ │ │ ├── ogrcadlayer.cpp │ │ │ │ │ ├── vsilfileio.cpp │ │ │ │ │ └── vsilfileio.h │ │ │ │ ├── carto │ │ │ │ │ ├── ogr_carto.h │ │ │ │ │ ├── ogrcartodatasource.cpp │ │ │ │ │ ├── ogrcartodriver.cpp │ │ │ │ │ ├── ogrcartolayer.cpp │ │ │ │ │ ├── ogrcartoresultlayer.cpp │ │ │ │ │ └── ogrcartotablelayer.cpp │ │ │ │ ├── cloudant │ │ │ │ │ ├── ogr_cloudant.h │ │ │ │ │ ├── ogrcloudantdatasource.cpp │ │ │ │ │ ├── ogrcloudantdriver.cpp │ │ │ │ │ └── ogrcloudanttablelayer.cpp │ │ │ │ ├── couchdb │ │ │ │ │ ├── ogr_couchdb.h │ │ │ │ │ ├── ogrcouchdbdatasource.cpp │ │ │ │ │ ├── ogrcouchdbdriver.cpp │ │ │ │ │ ├── ogrcouchdblayer.cpp │ │ │ │ │ ├── ogrcouchdbrowslayer.cpp │ │ │ │ │ └── ogrcouchdbtablelayer.cpp │ │ │ │ ├── csv │ │ │ │ │ ├── ogr_csv.h │ │ │ │ │ ├── ogrcsvdatasource.cpp │ │ │ │ │ ├── ogrcsvdriver.cpp │ │ │ │ │ └── ogrcsvlayer.cpp │ │ │ │ ├── csw │ │ │ │ │ └── ogrcswdataset.cpp │ │ │ │ ├── db2 │ │ │ │ │ ├── gdaldb2rasterband.cpp │ │ │ │ │ ├── makeplugin.vc │ │ │ │ │ ├── ogr_db2.h │ │ │ │ │ ├── ogrdb2cli.cpp │ │ │ │ │ ├── ogrdb2datasource.cpp │ │ │ │ │ ├── ogrdb2datasourcemd.cpp │ │ │ │ │ ├── ogrdb2driver.cpp │ │ │ │ │ ├── ogrdb2geometryvalidator.cpp │ │ │ │ │ ├── ogrdb2layer.cpp │ │ │ │ │ ├── ogrdb2selectlayer.cpp │ │ │ │ │ └── ogrdb2tablelayer.cpp │ │ │ │ ├── dgn │ │ │ │ │ ├── dgndump.cpp │ │ │ │ │ ├── dgnfloat.cpp │ │ │ │ │ ├── dgnhelp.cpp │ │ │ │ │ ├── dgnlib.h │ │ │ │ │ ├── dgnlibp.h │ │ │ │ │ ├── dgnopen.cpp │ │ │ │ │ ├── dgnread.cpp │ │ │ │ │ ├── dgnstroke.cpp │ │ │ │ │ ├── dgnwrite.cpp │ │ │ │ │ ├── dgnwritetest.cpp │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.vc │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── cpl_config.h │ │ │ │ │ ├── ogr_dgn.h │ │ │ │ │ ├── ogrdgndatasource.cpp │ │ │ │ │ ├── ogrdgndriver.cpp │ │ │ │ │ ├── ogrdgnlayer.cpp │ │ │ │ │ └── web │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── representation.html │ │ │ │ ├── dods │ │ │ │ │ ├── C0101.met.raw.nc.das │ │ │ │ │ ├── bbhenv.dat.das │ │ │ │ │ ├── libdap_headers.h │ │ │ │ │ ├── natl_prof_bot.cdp.das │ │ │ │ │ ├── ogr_ais_eg.xml │ │ │ │ │ ├── ogr_dods.h │ │ │ │ │ ├── ogrdodsdatasource.cpp │ │ │ │ │ ├── ogrdodsdriver.cpp │ │ │ │ │ ├── ogrdodsfielddefn.cpp │ │ │ │ │ ├── ogrdodsgrid.cpp │ │ │ │ │ ├── ogrdodslayer.cpp │ │ │ │ │ └── ogrdodssequencelayer.cpp │ │ │ │ ├── dwg │ │ │ │ │ ├── createdgnv8testfile.cpp │ │ │ │ │ ├── createdgnv8testfile_headers.h │ │ │ │ │ ├── dgnv8_headers.h │ │ │ │ │ ├── dwg_headers.h │ │ │ │ │ ├── ogr_dgnv8.h │ │ │ │ │ ├── ogr_dwg.h │ │ │ │ │ ├── ogrdgnv8datasource.cpp │ │ │ │ │ ├── ogrdgnv8driver.cpp │ │ │ │ │ ├── ogrdgnv8layer.cpp │ │ │ │ │ ├── ogrdwg_blockmap.cpp │ │ │ │ │ ├── ogrdwg_dimension.cpp │ │ │ │ │ ├── ogrdwg_hatch.cpp │ │ │ │ │ ├── ogrdwgblockslayer.cpp │ │ │ │ │ ├── ogrdwgdatasource.cpp │ │ │ │ │ ├── ogrdwgdriver.cpp │ │ │ │ │ ├── ogrdwglayer.cpp │ │ │ │ │ ├── ogrteigha.cpp │ │ │ │ │ └── ogrteigha.h │ │ │ │ ├── dxf │ │ │ │ │ ├── KNOWN_ISSUES.md │ │ │ │ │ ├── intronurbs.cpp │ │ │ │ │ ├── ogr_autocad_services.cpp │ │ │ │ │ ├── ogr_autocad_services.h │ │ │ │ │ ├── ogr_dxf.h │ │ │ │ │ ├── ogrdxf_blockmap.cpp │ │ │ │ │ ├── ogrdxf_dimension.cpp │ │ │ │ │ ├── ogrdxf_feature.cpp │ │ │ │ │ ├── ogrdxf_hatch.cpp │ │ │ │ │ ├── ogrdxf_leader.cpp │ │ │ │ │ ├── ogrdxf_ocstransformer.cpp │ │ │ │ │ ├── ogrdxf_polyline_smooth.cpp │ │ │ │ │ ├── ogrdxf_polyline_smooth.h │ │ │ │ │ ├── ogrdxfblockslayer.cpp │ │ │ │ │ ├── ogrdxfblockswriterlayer.cpp │ │ │ │ │ ├── ogrdxfdatasource.cpp │ │ │ │ │ ├── ogrdxfdriver.cpp │ │ │ │ │ ├── ogrdxflayer.cpp │ │ │ │ │ ├── ogrdxfreader.cpp │ │ │ │ │ ├── ogrdxfwriterds.cpp │ │ │ │ │ └── ogrdxfwriterlayer.cpp │ │ │ │ ├── edigeo │ │ │ │ │ ├── ogr_edigeo.h │ │ │ │ │ ├── ogredigeodatasource.cpp │ │ │ │ │ ├── ogredigeodriver.cpp │ │ │ │ │ └── ogredigeolayer.cpp │ │ │ │ ├── elastic │ │ │ │ │ ├── ogr_elastic.h │ │ │ │ │ ├── ogrelasticdatasource.cpp │ │ │ │ │ ├── ogrelasticdriver.cpp │ │ │ │ │ └── ogrelasticlayer.cpp │ │ │ │ ├── filegdb │ │ │ │ │ ├── FGdbDatasource.cpp │ │ │ │ │ ├── FGdbDriver.cpp │ │ │ │ │ ├── FGdbLayer.cpp │ │ │ │ │ ├── FGdbResultLayer.cpp │ │ │ │ │ ├── FGdbUtils.cpp │ │ │ │ │ ├── FGdbUtils.h │ │ │ │ │ ├── filegdbsdk_headers.h │ │ │ │ │ └── ogr_fgdb.h │ │ │ │ ├── fme │ │ │ │ │ ├── fme2ogr.h │ │ │ │ │ ├── fme2ogr_utils.cpp │ │ │ │ │ ├── ogrfmecacheindex.cpp │ │ │ │ │ ├── ogrfmedatasource.cpp │ │ │ │ │ ├── ogrfmedriver.cpp │ │ │ │ │ ├── ogrfmelayer.cpp │ │ │ │ │ ├── ogrfmelayercached.cpp │ │ │ │ │ └── ogrfmelayerdb.cpp │ │ │ │ ├── generic │ │ │ │ │ ├── ogr_attrind.cpp │ │ │ │ │ ├── ogr_gensql.cpp │ │ │ │ │ ├── ogr_gensql.h │ │ │ │ │ ├── ogr_miattrind.cpp │ │ │ │ │ ├── ogrdatasource.cpp │ │ │ │ │ ├── ogreditablelayer.cpp │ │ │ │ │ ├── ogreditablelayer.h │ │ │ │ │ ├── ogremulatedtransaction.cpp │ │ │ │ │ ├── ogremulatedtransaction.h │ │ │ │ │ ├── ogrlayer.cpp │ │ │ │ │ ├── ogrlayerdecorator.cpp │ │ │ │ │ ├── ogrlayerdecorator.h │ │ │ │ │ ├── ogrlayerpool.cpp │ │ │ │ │ ├── ogrlayerpool.h │ │ │ │ │ ├── ogrmutexeddatasource.cpp │ │ │ │ │ ├── ogrmutexeddatasource.h │ │ │ │ │ ├── ogrmutexedlayer.cpp │ │ │ │ │ ├── ogrmutexedlayer.h │ │ │ │ │ ├── ogrregisterall.cpp │ │ │ │ │ ├── ogrsfdriver.cpp │ │ │ │ │ ├── ogrsfdriverregistrar.cpp │ │ │ │ │ ├── ogrunionlayer.cpp │ │ │ │ │ ├── ogrunionlayer.h │ │ │ │ │ ├── ogrwarpedlayer.cpp │ │ │ │ │ └── ogrwarpedlayer.h │ │ │ │ ├── geoconcept │ │ │ │ │ ├── geoconcept.c │ │ │ │ │ ├── geoconcept.h │ │ │ │ │ ├── geoconcept_syscoord.c │ │ │ │ │ ├── geoconcept_syscoord.h │ │ │ │ │ ├── ogrgeoconceptdatasource.cpp │ │ │ │ │ ├── ogrgeoconceptdatasource.h │ │ │ │ │ ├── ogrgeoconceptdriver.cpp │ │ │ │ │ ├── ogrgeoconceptdriver.h │ │ │ │ │ ├── ogrgeoconceptlayer.cpp │ │ │ │ │ └── ogrgeoconceptlayer.h │ │ │ │ ├── geojson │ │ │ │ │ ├── libjson │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.html │ │ │ │ │ │ ├── arraylist.c │ │ │ │ │ │ ├── arraylist.h │ │ │ │ │ │ ├── bits.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── dump_symbols.sh │ │ │ │ │ │ ├── json.h │ │ │ │ │ │ ├── json_c_version.c │ │ │ │ │ │ ├── json_c_version.h │ │ │ │ │ │ ├── json_config.h │ │ │ │ │ │ ├── json_inttypes.h │ │ │ │ │ │ ├── json_object.c │ │ │ │ │ │ ├── json_object.h │ │ │ │ │ │ ├── json_object_iterator.c │ │ │ │ │ │ ├── json_object_iterator.h │ │ │ │ │ │ ├── json_object_private.h │ │ │ │ │ │ ├── json_tokener.c │ │ │ │ │ │ ├── json_tokener.h │ │ │ │ │ │ ├── json_util.c │ │ │ │ │ │ ├── json_util.h │ │ │ │ │ │ ├── linkhash.c │ │ │ │ │ │ ├── linkhash.h │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── printbuf.c │ │ │ │ │ │ ├── printbuf.h │ │ │ │ │ │ └── symbol_renames.h │ │ │ │ │ ├── ogr_geojson.h │ │ │ │ │ ├── ogresrijsondriver.cpp │ │ │ │ │ ├── ogresrijsonreader.cpp │ │ │ │ │ ├── ogrgeojsondatasource.cpp │ │ │ │ │ ├── ogrgeojsondriver.cpp │ │ │ │ │ ├── ogrgeojsonlayer.cpp │ │ │ │ │ ├── ogrgeojsonreader.cpp │ │ │ │ │ ├── ogrgeojsonreader.h │ │ │ │ │ ├── ogrgeojsonseqdriver.cpp │ │ │ │ │ ├── ogrgeojsonutils.cpp │ │ │ │ │ ├── ogrgeojsonutils.h │ │ │ │ │ ├── ogrgeojsonwritelayer.cpp │ │ │ │ │ ├── ogrgeojsonwriter.cpp │ │ │ │ │ ├── ogrgeojsonwriter.h │ │ │ │ │ ├── ogrtopojsondriver.cpp │ │ │ │ │ └── ogrtopojsonreader.cpp │ │ │ │ ├── geomedia │ │ │ │ │ ├── ogr_geomedia.h │ │ │ │ │ ├── ogrgeomediadatasource.cpp │ │ │ │ │ ├── ogrgeomediadriver.cpp │ │ │ │ │ ├── ogrgeomedialayer.cpp │ │ │ │ │ ├── ogrgeomediaselectlayer.cpp │ │ │ │ │ └── ogrgeomediatablelayer.cpp │ │ │ │ ├── georss │ │ │ │ │ ├── ogr_georss.h │ │ │ │ │ ├── ogrgeorssdatasource.cpp │ │ │ │ │ ├── ogrgeorssdriver.cpp │ │ │ │ │ └── ogrgeorsslayer.cpp │ │ │ │ ├── gft │ │ │ │ │ ├── ogr_gft.h │ │ │ │ │ ├── ogrgftdatasource.cpp │ │ │ │ │ ├── ogrgftdriver.cpp │ │ │ │ │ ├── ogrgftlayer.cpp │ │ │ │ │ ├── ogrgftresultlayer.cpp │ │ │ │ │ └── ogrgfttablelayer.cpp │ │ │ │ ├── gml │ │ │ │ │ ├── gfstemplate.cpp │ │ │ │ │ ├── gmlfeature.cpp │ │ │ │ │ ├── gmlfeatureclass.cpp │ │ │ │ │ ├── gmlhandler.cpp │ │ │ │ │ ├── gmlpropertydefn.cpp │ │ │ │ │ ├── gmlreader.cpp │ │ │ │ │ ├── gmlreader.h │ │ │ │ │ ├── gmlreaderp.h │ │ │ │ │ ├── gmlreadstate.cpp │ │ │ │ │ ├── gmlregistry.cpp │ │ │ │ │ ├── gmlregistry.h │ │ │ │ │ ├── gmlutils.cpp │ │ │ │ │ ├── gmlutils.h │ │ │ │ │ ├── hugefileresolver.cpp │ │ │ │ │ ├── ogr_gml.h │ │ │ │ │ ├── ogrgmldatasource.cpp │ │ │ │ │ ├── ogrgmldriver.cpp │ │ │ │ │ ├── ogrgmllayer.cpp │ │ │ │ │ ├── parsexsd.cpp │ │ │ │ │ ├── parsexsd.h │ │ │ │ │ ├── resolvexlinks.cpp │ │ │ │ │ └── xercesc_headers.h │ │ │ │ ├── gmlas │ │ │ │ │ ├── ogr_gmlas.h │ │ │ │ │ ├── ogr_gmlas_consts.h │ │ │ │ │ ├── ogrgmlasconf.cpp │ │ │ │ │ ├── ogrgmlasdatasource.cpp │ │ │ │ │ ├── ogrgmlasdriver.cpp │ │ │ │ │ ├── ogrgmlasfeatureclass.cpp │ │ │ │ │ ├── ogrgmlaslayer.cpp │ │ │ │ │ ├── ogrgmlasreader.cpp │ │ │ │ │ ├── ogrgmlasschemaanalyzer.cpp │ │ │ │ │ ├── ogrgmlasutils.cpp │ │ │ │ │ ├── ogrgmlaswriter.cpp │ │ │ │ │ ├── ogrgmlasxlinkresolver.cpp │ │ │ │ │ ├── ogrgmlasxpatchmatcher.cpp │ │ │ │ │ ├── ogrgmlasxsdcache.cpp │ │ │ │ │ └── xercesc_headers.h │ │ │ │ ├── gmt │ │ │ │ │ ├── ogr_gmt.h │ │ │ │ │ ├── ogrgmtdatasource.cpp │ │ │ │ │ ├── ogrgmtdriver.cpp │ │ │ │ │ └── ogrgmtlayer.cpp │ │ │ │ ├── gpkg │ │ │ │ │ ├── gdalgeopackagerasterband.cpp │ │ │ │ │ ├── geopackage_aspatial.md │ │ │ │ │ ├── gpkgmbtilescommon.h │ │ │ │ │ ├── ogr_geopackage.h │ │ │ │ │ ├── ogrgeopackagedatasource.cpp │ │ │ │ │ ├── ogrgeopackagedriver.cpp │ │ │ │ │ ├── ogrgeopackagelayer.cpp │ │ │ │ │ ├── ogrgeopackageselectlayer.cpp │ │ │ │ │ ├── ogrgeopackagetablelayer.cpp │ │ │ │ │ ├── ogrgeopackageutility.cpp │ │ │ │ │ └── ogrgeopackageutility.h │ │ │ │ ├── gpsbabel │ │ │ │ │ ├── ogr_gpsbabel.h │ │ │ │ │ ├── ogrgpsbabeldatasource.cpp │ │ │ │ │ ├── ogrgpsbabeldriver.cpp │ │ │ │ │ └── ogrgpsbabelwritedatasource.cpp │ │ │ │ ├── gpx │ │ │ │ │ ├── ogr_gpx.h │ │ │ │ │ ├── ogrgpxdatasource.cpp │ │ │ │ │ ├── ogrgpxdriver.cpp │ │ │ │ │ └── ogrgpxlayer.cpp │ │ │ │ ├── grass │ │ │ │ │ ├── ogrgrass.h │ │ │ │ │ ├── ogrgrassdatasource.cpp │ │ │ │ │ ├── ogrgrassdriver.cpp │ │ │ │ │ └── ogrgrasslayer.cpp │ │ │ │ ├── gtm │ │ │ │ │ ├── gtm.cpp │ │ │ │ │ ├── gtm.h │ │ │ │ │ ├── gtmtracklayer.cpp │ │ │ │ │ ├── gtmwaypointlayer.cpp │ │ │ │ │ ├── ogr_gtm.h │ │ │ │ │ ├── ogrgtmdatasource.cpp │ │ │ │ │ ├── ogrgtmdriver.cpp │ │ │ │ │ └── ogrgtmlayer.cpp │ │ │ │ ├── htf │ │ │ │ │ ├── ogr_htf.h │ │ │ │ │ ├── ogrhtfdatasource.cpp │ │ │ │ │ ├── ogrhtfdriver.cpp │ │ │ │ │ └── ogrhtflayer.cpp │ │ │ │ ├── idb │ │ │ │ │ ├── ogr_idb.h │ │ │ │ │ ├── ogridbdatasource.cpp │ │ │ │ │ ├── ogridbdriver.cpp │ │ │ │ │ ├── ogridblayer.cpp │ │ │ │ │ ├── ogridbselectlayer.cpp │ │ │ │ │ └── ogridbtablelayer.cpp │ │ │ │ ├── idrisi │ │ │ │ │ ├── generate_test_files.c │ │ │ │ │ ├── ogr_idrisi.h │ │ │ │ │ ├── ogridrisidatasource.cpp │ │ │ │ │ ├── ogridrisidriver.cpp │ │ │ │ │ └── ogridrisilayer.cpp │ │ │ │ ├── ili │ │ │ │ │ ├── ili1reader.cpp │ │ │ │ │ ├── ili1reader.h │ │ │ │ │ ├── ili1readerp.h │ │ │ │ │ ├── ili2handler.cpp │ │ │ │ │ ├── ili2reader.cpp │ │ │ │ │ ├── ili2reader.h │ │ │ │ │ ├── ili2readerp.h │ │ │ │ │ ├── imdreader.cpp │ │ │ │ │ ├── imdreader.h │ │ │ │ │ ├── ogr_ili1.h │ │ │ │ │ ├── ogr_ili2.h │ │ │ │ │ ├── ogrili1datasource.cpp │ │ │ │ │ ├── ogrili1driver.cpp │ │ │ │ │ ├── ogrili1layer.cpp │ │ │ │ │ ├── ogrili2datasource.cpp │ │ │ │ │ ├── ogrili2driver.cpp │ │ │ │ │ ├── ogrili2layer.cpp │ │ │ │ │ └── xercesc_headers.h │ │ │ │ ├── ingres │ │ │ │ │ ├── ingres.txt │ │ │ │ │ ├── ogr_ingres.h │ │ │ │ │ ├── ogringresdatasource.cpp │ │ │ │ │ ├── ogringresdriver.cpp │ │ │ │ │ ├── ogringreslayer.cpp │ │ │ │ │ ├── ogringresresultlayer.cpp │ │ │ │ │ ├── ogringresstatement.cpp │ │ │ │ │ ├── ogringrestablelayer.cpp │ │ │ │ │ └── testdata.sql │ │ │ │ ├── jml │ │ │ │ │ ├── ogr_jml.h │ │ │ │ │ ├── ogrjmldataset.cpp │ │ │ │ │ ├── ogrjmllayer.cpp │ │ │ │ │ └── ogrjmlwriterlayer.cpp │ │ │ │ ├── kml │ │ │ │ │ ├── kml.cpp │ │ │ │ │ ├── kml.h │ │ │ │ │ ├── kmlnode.cpp │ │ │ │ │ ├── kmlnode.h │ │ │ │ │ ├── kmlutility.h │ │ │ │ │ ├── kmlvector.cpp │ │ │ │ │ ├── kmlvector.h │ │ │ │ │ ├── ogr2kmlgeometry.cpp │ │ │ │ │ ├── ogr_kml.h │ │ │ │ │ ├── ogrkmldatasource.cpp │ │ │ │ │ ├── ogrkmldriver.cpp │ │ │ │ │ └── ogrkmllayer.cpp │ │ │ │ ├── libkml │ │ │ │ │ ├── .indent.pro │ │ │ │ │ ├── libkml_headers.h │ │ │ │ │ ├── ogr_libkml.h │ │ │ │ │ ├── ogrlibkmldatasource.cpp │ │ │ │ │ ├── ogrlibkmldriver.cpp │ │ │ │ │ ├── ogrlibkmlfeature.cpp │ │ │ │ │ ├── ogrlibkmlfeature.h │ │ │ │ │ ├── ogrlibkmlfeaturestyle.cpp │ │ │ │ │ ├── ogrlibkmlfeaturestyle.h │ │ │ │ │ ├── ogrlibkmlfield.cpp │ │ │ │ │ ├── ogrlibkmlfield.h │ │ │ │ │ ├── ogrlibkmlgeometry.cpp │ │ │ │ │ ├── ogrlibkmlgeometry.h │ │ │ │ │ ├── ogrlibkmllayer.cpp │ │ │ │ │ ├── ogrlibkmlstyle.cpp │ │ │ │ │ └── ogrlibkmlstyle.h │ │ │ │ ├── mdb │ │ │ │ │ ├── ogr_mdb.h │ │ │ │ │ ├── ogrmdbdatasource.cpp │ │ │ │ │ ├── ogrmdbdriver.cpp │ │ │ │ │ ├── ogrmdbjackcess.cpp │ │ │ │ │ └── ogrmdblayer.cpp │ │ │ │ ├── mem │ │ │ │ │ ├── ogr_mem.h │ │ │ │ │ ├── ogrmemdatasource.cpp │ │ │ │ │ ├── ogrmemdriver.cpp │ │ │ │ │ └── ogrmemlayer.cpp │ │ │ │ ├── mitab │ │ │ │ │ ├── HISTORY.TXT │ │ │ │ │ ├── TODO.TXT │ │ │ │ │ ├── mitab.h │ │ │ │ │ ├── mitab_bounds.cpp │ │ │ │ │ ├── mitab_coordsys.cpp │ │ │ │ │ ├── mitab_datfile.cpp │ │ │ │ │ ├── mitab_feature.cpp │ │ │ │ │ ├── mitab_feature_mif.cpp │ │ │ │ │ ├── mitab_geometry.cpp │ │ │ │ │ ├── mitab_geometry.h │ │ │ │ │ ├── mitab_idfile.cpp │ │ │ │ │ ├── mitab_imapinfofile.cpp │ │ │ │ │ ├── mitab_indfile.cpp │ │ │ │ │ ├── mitab_mapcoordblock.cpp │ │ │ │ │ ├── mitab_mapfile.cpp │ │ │ │ │ ├── mitab_mapheaderblock.cpp │ │ │ │ │ ├── mitab_mapindexblock.cpp │ │ │ │ │ ├── mitab_mapobjectblock.cpp │ │ │ │ │ ├── mitab_maptoolblock.cpp │ │ │ │ │ ├── mitab_middatafile.cpp │ │ │ │ │ ├── mitab_miffile.cpp │ │ │ │ │ ├── mitab_ogr_datasource.cpp │ │ │ │ │ ├── mitab_ogr_driver.cpp │ │ │ │ │ ├── mitab_ogr_driver.h │ │ │ │ │ ├── mitab_priv.h │ │ │ │ │ ├── mitab_rawbinblock.cpp │ │ │ │ │ ├── mitab_spatialref.cpp │ │ │ │ │ ├── mitab_tabfile.cpp │ │ │ │ │ ├── mitab_tabseamless.cpp │ │ │ │ │ ├── mitab_tabview.cpp │ │ │ │ │ ├── mitab_tooldef.cpp │ │ │ │ │ ├── mitab_utils.cpp │ │ │ │ │ └── mitab_utils.h │ │ │ │ ├── mongodb │ │ │ │ │ ├── mongocxx_headers.h │ │ │ │ │ └── ogrmongodbdriver.cpp │ │ │ │ ├── mssqlspatial │ │ │ │ │ ├── ogr_mssqlspatial.h │ │ │ │ │ ├── ogrmssqlgeometryparser.cpp │ │ │ │ │ ├── ogrmssqlgeometryvalidator.cpp │ │ │ │ │ ├── ogrmssqlgeometrywriter.cpp │ │ │ │ │ ├── ogrmssqlspatialdatasource.cpp │ │ │ │ │ ├── ogrmssqlspatialdriver.cpp │ │ │ │ │ ├── ogrmssqlspatiallayer.cpp │ │ │ │ │ ├── ogrmssqlspatialselectlayer.cpp │ │ │ │ │ └── ogrmssqlspatialtablelayer.cpp │ │ │ │ ├── mvt │ │ │ │ │ ├── mvt_tile.cpp │ │ │ │ │ ├── mvt_tile.h │ │ │ │ │ ├── mvt_tile_test.cpp │ │ │ │ │ ├── mvtutils.cpp │ │ │ │ │ ├── mvtutils.h │ │ │ │ │ └── ogrmvtdataset.cpp │ │ │ │ ├── mysql │ │ │ │ │ ├── ogr_mysql.h │ │ │ │ │ ├── ogrmysqldatasource.cpp │ │ │ │ │ ├── ogrmysqldriver.cpp │ │ │ │ │ ├── ogrmysqllayer.cpp │ │ │ │ │ ├── ogrmysqlresultlayer.cpp │ │ │ │ │ └── ogrmysqltablelayer.cpp │ │ │ │ ├── nas │ │ │ │ │ ├── nashandler.cpp │ │ │ │ │ ├── nasreader.cpp │ │ │ │ │ ├── nasreaderp.h │ │ │ │ │ ├── ogr_nas.h │ │ │ │ │ ├── ogrnasdatasource.cpp │ │ │ │ │ ├── ogrnasdriver.cpp │ │ │ │ │ ├── ogrnaslayer.cpp │ │ │ │ │ └── ogrnasrelationlayer.cpp │ │ │ │ ├── ngw │ │ │ │ │ ├── gdalngwdataset.cpp │ │ │ │ │ ├── ngw_api.cpp │ │ │ │ │ ├── ogr_ngw.h │ │ │ │ │ ├── ogrngwdriver.cpp │ │ │ │ │ └── ogrngwlayer.cpp │ │ │ │ ├── ntf │ │ │ │ │ ├── ntf.h │ │ │ │ │ ├── ntf_codelist.cpp │ │ │ │ │ ├── ntf_estlayers.cpp │ │ │ │ │ ├── ntf_generic.cpp │ │ │ │ │ ├── ntf_raster.cpp │ │ │ │ │ ├── ntfdump.cpp │ │ │ │ │ ├── ntffilereader.cpp │ │ │ │ │ ├── ntfrecord.cpp │ │ │ │ │ ├── ntfstroke.cpp │ │ │ │ │ ├── ogrntfdatasource.cpp │ │ │ │ │ ├── ogrntfdriver.cpp │ │ │ │ │ ├── ogrntffeatureclasslayer.cpp │ │ │ │ │ └── ogrntflayer.cpp │ │ │ │ ├── oci │ │ │ │ │ ├── fastload.cpp │ │ │ │ │ ├── oci_utils.cpp │ │ │ │ │ ├── ocitest.cpp │ │ │ │ │ ├── ogr_oci.h │ │ │ │ │ ├── ogrocidatasource.cpp │ │ │ │ │ ├── ogrocidriver.cpp │ │ │ │ │ ├── ogrocilayer.cpp │ │ │ │ │ ├── ogrociloaderlayer.cpp │ │ │ │ │ ├── ogrociselectlayer.cpp │ │ │ │ │ ├── ogrocisession.cpp │ │ │ │ │ ├── ogrocistatement.cpp │ │ │ │ │ ├── ogrocistringbuf.cpp │ │ │ │ │ ├── ogrocistroke.cpp │ │ │ │ │ ├── ogrocitablelayer.cpp │ │ │ │ │ └── ogrociwritablelayer.cpp │ │ │ │ ├── odbc │ │ │ │ │ ├── ogr_odbc.h │ │ │ │ │ ├── ogrodbcdatasource.cpp │ │ │ │ │ ├── ogrodbcdriver.cpp │ │ │ │ │ ├── ogrodbclayer.cpp │ │ │ │ │ ├── ogrodbcselectlayer.cpp │ │ │ │ │ └── ogrodbctablelayer.cpp │ │ │ │ ├── ods │ │ │ │ │ ├── ods_formula.cpp │ │ │ │ │ ├── ods_formula.h │ │ │ │ │ ├── ods_formula_node.cpp │ │ │ │ │ ├── ods_formula_parser.cpp │ │ │ │ │ ├── ods_formula_parser.hpp │ │ │ │ │ ├── ods_formula_parser.y │ │ │ │ │ ├── ogr_ods.h │ │ │ │ │ ├── ogrodsdatasource.cpp │ │ │ │ │ ├── ogrodsdriver.cpp │ │ │ │ │ └── testparser.cpp │ │ │ │ ├── ogdi │ │ │ │ │ ├── ogrogdi.h │ │ │ │ │ ├── ogrogdidatasource.cpp │ │ │ │ │ ├── ogrogdidriver.cpp │ │ │ │ │ └── ogrogdilayer.cpp │ │ │ │ ├── ogr_attrind.h │ │ │ │ ├── ogrsf_frmts.dox │ │ │ │ ├── ogrsf_frmts.h │ │ │ │ ├── openair │ │ │ │ │ ├── ogr_openair.h │ │ │ │ │ ├── ogropenairdatasource.cpp │ │ │ │ │ ├── ogropenairdriver.cpp │ │ │ │ │ ├── ogropenairlabellayer.cpp │ │ │ │ │ └── ogropenairlayer.cpp │ │ │ │ ├── openfilegdb │ │ │ │ │ ├── filegdbindex.cpp │ │ │ │ │ ├── filegdbtable.cpp │ │ │ │ │ ├── filegdbtable.h │ │ │ │ │ ├── filegdbtable_priv.h │ │ │ │ │ ├── ogr_openfilegdb.h │ │ │ │ │ ├── ogropenfilegdbdatasource.cpp │ │ │ │ │ ├── ogropenfilegdbdriver.cpp │ │ │ │ │ └── ogropenfilegdblayer.cpp │ │ │ │ ├── osm │ │ │ │ │ ├── gpb.h │ │ │ │ │ ├── ogr_osm.h │ │ │ │ │ ├── ogrosmdatasource.cpp │ │ │ │ │ ├── ogrosmdriver.cpp │ │ │ │ │ ├── ogrosmlayer.cpp │ │ │ │ │ ├── osm2osm.cpp │ │ │ │ │ ├── osm_parser.cpp │ │ │ │ │ └── osm_parser.h │ │ │ │ ├── pds │ │ │ │ │ ├── ogr_pds.h │ │ │ │ │ ├── ogrpdsdatasource.cpp │ │ │ │ │ ├── ogrpdsdriver.cpp │ │ │ │ │ └── ogrpdslayer.cpp │ │ │ │ ├── pg │ │ │ │ │ ├── ogr_pg.h │ │ │ │ │ ├── ogrpgdatasource.cpp │ │ │ │ │ ├── ogrpgdriver.cpp │ │ │ │ │ ├── ogrpglayer.cpp │ │ │ │ │ ├── ogrpgresultlayer.cpp │ │ │ │ │ ├── ogrpgtablelayer.cpp │ │ │ │ │ ├── ogrpgutility.cpp │ │ │ │ │ └── ogrpgutility.h │ │ │ │ ├── pgdump │ │ │ │ │ ├── ogr_pgdump.h │ │ │ │ │ ├── ogrpgdumpdatasource.cpp │ │ │ │ │ ├── ogrpgdumpdriver.cpp │ │ │ │ │ └── ogrpgdumplayer.cpp │ │ │ │ ├── pgeo │ │ │ │ │ ├── ogr_pgeo.h │ │ │ │ │ ├── ogrpgeodatasource.cpp │ │ │ │ │ ├── ogrpgeodriver.cpp │ │ │ │ │ ├── ogrpgeolayer.cpp │ │ │ │ │ ├── ogrpgeoselectlayer.cpp │ │ │ │ │ └── ogrpgeotablelayer.cpp │ │ │ │ ├── plscenes │ │ │ │ │ ├── ogr_plscenes.h │ │ │ │ │ ├── ogrplscenesdatav1dataset.cpp │ │ │ │ │ ├── ogrplscenesdatav1layer.cpp │ │ │ │ │ └── ogrplscenesdriver.cpp │ │ │ │ ├── rec │ │ │ │ │ ├── ll_recio.cpp │ │ │ │ │ ├── ogr_rec.h │ │ │ │ │ ├── ogrrecdatasource.cpp │ │ │ │ │ ├── ogrrecdriver.cpp │ │ │ │ │ └── ogrreclayer.cpp │ │ │ │ ├── s57 │ │ │ │ │ ├── ddfrecordindex.cpp │ │ │ │ │ ├── ogr_s57.h │ │ │ │ │ ├── ogrs57datasource.cpp │ │ │ │ │ ├── ogrs57driver.cpp │ │ │ │ │ ├── ogrs57layer.cpp │ │ │ │ │ ├── s57.h │ │ │ │ │ ├── s57classregistrar.cpp │ │ │ │ │ ├── s57dump.cpp │ │ │ │ │ ├── s57featuredefns.cpp │ │ │ │ │ ├── s57filecollector.cpp │ │ │ │ │ ├── s57reader.cpp │ │ │ │ │ ├── s57tables.h │ │ │ │ │ ├── s57tables.py │ │ │ │ │ └── s57writer.cpp │ │ │ │ ├── sde │ │ │ │ │ ├── ogr_sde.h │ │ │ │ │ ├── ogrsdedatasource.cpp │ │ │ │ │ ├── ogrsdedriver.cpp │ │ │ │ │ └── ogrsdelayer.cpp │ │ │ │ ├── sdts │ │ │ │ │ ├── install-libs.sh │ │ │ │ │ ├── ogr_sdts.h │ │ │ │ │ ├── ogrsdtsdatasource.cpp │ │ │ │ │ ├── ogrsdtsdriver.cpp │ │ │ │ │ └── ogrsdtslayer.cpp │ │ │ │ ├── segukooa │ │ │ │ │ ├── ogr_segukooa.h │ │ │ │ │ ├── ogrsegukooadatasource.cpp │ │ │ │ │ ├── ogrsegukooadriver.cpp │ │ │ │ │ ├── ogrsegukooalayer.cpp │ │ │ │ │ └── segukooa.txt │ │ │ │ ├── segy │ │ │ │ │ ├── ogr_segy.h │ │ │ │ │ ├── ogrsegydatasource.cpp │ │ │ │ │ ├── ogrsegydriver.cpp │ │ │ │ │ ├── ogrsegylayer.cpp │ │ │ │ │ └── segy.txt │ │ │ │ ├── selafin │ │ │ │ │ ├── io_selafin.cpp │ │ │ │ │ ├── io_selafin.h │ │ │ │ │ ├── ogr_selafin.h │ │ │ │ │ ├── ogrselafindatasource.cpp │ │ │ │ │ ├── ogrselafindriver.cpp │ │ │ │ │ └── ogrselafinlayer.cpp │ │ │ │ ├── shape │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── dbfopen.c │ │ │ │ │ ├── dbfopen_wrapper.c │ │ │ │ │ ├── dump_symbols.sh │ │ │ │ │ ├── gdal_shapelib_symbol_rename.h │ │ │ │ │ ├── ogrshape.h │ │ │ │ │ ├── ogrshapedatasource.cpp │ │ │ │ │ ├── ogrshapedriver.cpp │ │ │ │ │ ├── ogrshapelayer.cpp │ │ │ │ │ ├── sbnsearch.c │ │ │ │ │ ├── sbnsearch_wrapper.c │ │ │ │ │ ├── shape2ogr.cpp │ │ │ │ │ ├── shapefil.h │ │ │ │ │ ├── shp_vsi.c │ │ │ │ │ ├── shp_vsi.h │ │ │ │ │ ├── shpopen.c │ │ │ │ │ ├── shpopen_wrapper.c │ │ │ │ │ ├── shptree.c │ │ │ │ │ └── shptree_wrapper.c │ │ │ │ ├── sosi │ │ │ │ │ ├── fyba_melding.cpp │ │ │ │ │ ├── ogr_sosi.h │ │ │ │ │ ├── ogrsosidatasource.cpp │ │ │ │ │ ├── ogrsosidatatypes.cpp │ │ │ │ │ ├── ogrsosidatatypes.h │ │ │ │ │ ├── ogrsosidriver.cpp │ │ │ │ │ ├── ogrsosilayer.cpp │ │ │ │ │ └── tools │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── basicelements.xslt │ │ │ │ │ │ ├── convert.sh │ │ │ │ │ │ ├── groupelements.xslt │ │ │ │ │ │ └── unnorsk.xslt │ │ │ │ ├── sqlite │ │ │ │ │ ├── ogr_sqlite.h │ │ │ │ │ ├── ogrsqlite3ext.h │ │ │ │ │ ├── ogrsqliteapiroutines.c │ │ │ │ │ ├── ogrsqlitedatasource.cpp │ │ │ │ │ ├── ogrsqlitedriver.cpp │ │ │ │ │ ├── ogrsqliteexecutesql.cpp │ │ │ │ │ ├── ogrsqliteexecutesql.h │ │ │ │ │ ├── ogrsqlitelayer.cpp │ │ │ │ │ ├── ogrsqliteregexp.cpp │ │ │ │ │ ├── ogrsqliteregexp.h │ │ │ │ │ ├── ogrsqliteselectlayer.cpp │ │ │ │ │ ├── ogrsqlitesinglefeaturelayer.cpp │ │ │ │ │ ├── ogrsqlitesqlfunctions.cpp │ │ │ │ │ ├── ogrsqlitesqlfunctions.h │ │ │ │ │ ├── ogrsqlitetablelayer.cpp │ │ │ │ │ ├── ogrsqliteutility.cpp │ │ │ │ │ ├── ogrsqliteutility.h │ │ │ │ │ ├── ogrsqlitevfs.cpp │ │ │ │ │ ├── ogrsqliteviewlayer.cpp │ │ │ │ │ ├── ogrsqlitevirtualogr.cpp │ │ │ │ │ ├── ogrsqlitevirtualogr.h │ │ │ │ │ ├── rasterlite2.cpp │ │ │ │ │ ├── rasterlite2_header.h │ │ │ │ │ └── test_load_virtual_ogr.c │ │ │ │ ├── sua │ │ │ │ │ ├── ogr_sua.h │ │ │ │ │ ├── ogrsuadatasource.cpp │ │ │ │ │ ├── ogrsuadriver.cpp │ │ │ │ │ └── ogrsualayer.cpp │ │ │ │ ├── svg │ │ │ │ │ ├── ogr_svg.h │ │ │ │ │ ├── ogrsvgdatasource.cpp │ │ │ │ │ ├── ogrsvgdriver.cpp │ │ │ │ │ └── ogrsvglayer.cpp │ │ │ │ ├── sxf │ │ │ │ │ ├── ogr_sxf.h │ │ │ │ │ ├── ogrsxfdatasource.cpp │ │ │ │ │ ├── ogrsxfdriver.cpp │ │ │ │ │ ├── ogrsxflayer.cpp │ │ │ │ │ └── org_sxf_defs.h │ │ │ │ ├── tiger │ │ │ │ │ ├── ogr_tiger.h │ │ │ │ │ ├── ogrtigerdatasource.cpp │ │ │ │ │ ├── ogrtigerdriver.cpp │ │ │ │ │ ├── ogrtigerlayer.cpp │ │ │ │ │ ├── tigeraltname.cpp │ │ │ │ │ ├── tigerarealandmarks.cpp │ │ │ │ │ ├── tigercompletechain.cpp │ │ │ │ │ ├── tigerentitynames.cpp │ │ │ │ │ ├── tigerfeatureids.cpp │ │ │ │ │ ├── tigerfilebase.cpp │ │ │ │ │ ├── tigeridhistory.cpp │ │ │ │ │ ├── tigerkeyfeatures.cpp │ │ │ │ │ ├── tigerlandmarks.cpp │ │ │ │ │ ├── tigeroverunder.cpp │ │ │ │ │ ├── tigerpip.cpp │ │ │ │ │ ├── tigerpoint.cpp │ │ │ │ │ ├── tigerpolychainlink.cpp │ │ │ │ │ ├── tigerpolygon.cpp │ │ │ │ │ ├── tigerpolygoncorrections.cpp │ │ │ │ │ ├── tigerpolygoneconomic.cpp │ │ │ │ │ ├── tigerspatialmetadata.cpp │ │ │ │ │ ├── tigertlidrange.cpp │ │ │ │ │ ├── tigerzerocellid.cpp │ │ │ │ │ ├── tigerzipcodes.cpp │ │ │ │ │ └── tigerzipplus4.cpp │ │ │ │ ├── vdv │ │ │ │ │ ├── ogr_vdv.h │ │ │ │ │ └── ogrvdvdatasource.cpp │ │ │ │ ├── vfk │ │ │ │ │ ├── ogr_vfk.h │ │ │ │ │ ├── ogrvfkdatasource.cpp │ │ │ │ │ ├── ogrvfkdriver.cpp │ │ │ │ │ ├── ogrvfklayer.cpp │ │ │ │ │ ├── vfkdatablock.cpp │ │ │ │ │ ├── vfkdatablocksqlite.cpp │ │ │ │ │ ├── vfkfeature.cpp │ │ │ │ │ ├── vfkfeaturesqlite.cpp │ │ │ │ │ ├── vfkproperty.cpp │ │ │ │ │ ├── vfkpropertydefn.cpp │ │ │ │ │ ├── vfkreader.cpp │ │ │ │ │ ├── vfkreader.h │ │ │ │ │ ├── vfkreaderp.h │ │ │ │ │ └── vfkreadersqlite.cpp │ │ │ │ ├── vrt │ │ │ │ │ ├── ogr_vrt.h │ │ │ │ │ ├── ogrvrtdatasource.cpp │ │ │ │ │ ├── ogrvrtdriver.cpp │ │ │ │ │ └── ogrvrtlayer.cpp │ │ │ │ ├── walk │ │ │ │ │ ├── ogis_geometry_wkb_struct.h │ │ │ │ │ ├── ogrwalk.h │ │ │ │ │ ├── ogrwalkdatasource.cpp │ │ │ │ │ ├── ogrwalkdriver.cpp │ │ │ │ │ ├── ogrwalklayer.cpp │ │ │ │ │ ├── ogrwalkselectlayer.cpp │ │ │ │ │ ├── ogrwalktablelayer.cpp │ │ │ │ │ └── ogrwalktool.cpp │ │ │ │ ├── wasp │ │ │ │ │ ├── ogrwasp.h │ │ │ │ │ ├── ogrwaspdatasource.cpp │ │ │ │ │ ├── ogrwaspdriver.cpp │ │ │ │ │ └── ogrwasplayer.cpp │ │ │ │ ├── wfs │ │ │ │ │ ├── WFSServersList.txt │ │ │ │ │ ├── ogr_wfs.h │ │ │ │ │ ├── ogrwfs3driver.cpp │ │ │ │ │ ├── ogrwfsdatasource.cpp │ │ │ │ │ ├── ogrwfsdriver.cpp │ │ │ │ │ ├── ogrwfsfilter.cpp │ │ │ │ │ ├── ogrwfsjoinlayer.cpp │ │ │ │ │ └── ogrwfslayer.cpp │ │ │ │ ├── xls │ │ │ │ │ ├── ogr_xls.h │ │ │ │ │ ├── ogrxlsdatasource.cpp │ │ │ │ │ ├── ogrxlsdriver.cpp │ │ │ │ │ └── ogrxlslayer.cpp │ │ │ │ ├── xlsx │ │ │ │ │ ├── ogr_xlsx.h │ │ │ │ │ ├── ogrxlsxdatasource.cpp │ │ │ │ │ └── ogrxlsxdriver.cpp │ │ │ │ └── xplane │ │ │ │ │ ├── ogr_xplane.h │ │ │ │ │ ├── ogr_xplane_apt_reader.cpp │ │ │ │ │ ├── ogr_xplane_apt_reader.h │ │ │ │ │ ├── ogr_xplane_awy_reader.cpp │ │ │ │ │ ├── ogr_xplane_awy_reader.h │ │ │ │ │ ├── ogr_xplane_fix_reader.cpp │ │ │ │ │ ├── ogr_xplane_fix_reader.h │ │ │ │ │ ├── ogr_xplane_nav_reader.cpp │ │ │ │ │ ├── ogr_xplane_nav_reader.h │ │ │ │ │ ├── ogr_xplane_reader.cpp │ │ │ │ │ ├── ogr_xplane_reader.h │ │ │ │ │ ├── ogrxplanedatasource.cpp │ │ │ │ │ ├── ogrxplanedriver.cpp │ │ │ │ │ └── ogrxplanelayer.cpp │ │ │ ├── ogrspatialreference.cpp │ │ │ ├── ogrsurface.cpp │ │ │ ├── ogrtriangle.cpp │ │ │ ├── ogrtriangulatedsurface.cpp │ │ │ ├── ogrutils.cpp │ │ │ ├── osr_cs_wkt.c │ │ │ ├── osr_cs_wkt.h │ │ │ ├── osr_cs_wkt_grammar.y │ │ │ ├── osr_cs_wkt_parser.c │ │ │ ├── osr_cs_wkt_parser.h │ │ │ ├── osr_tutorial.dox │ │ │ ├── style_ogr_brush.png │ │ │ ├── style_ogr_sym.png │ │ │ ├── style_pen1.gif │ │ │ ├── style_pen2.gif │ │ │ ├── style_pen3.gif │ │ │ ├── style_textanchor.gif │ │ │ ├── swq.cpp │ │ │ ├── swq.h │ │ │ ├── swq_expr_node.cpp │ │ │ ├── swq_op_general.cpp │ │ │ ├── swq_op_registrar.cpp │ │ │ ├── swq_parser.cpp │ │ │ ├── swq_parser.hpp │ │ │ ├── swq_parser.y │ │ │ ├── swq_select.cpp │ │ │ └── test_geo_utils.cpp │ │ ├── port │ │ │ ├── LICENCE_minizip │ │ │ ├── cpl_alibaba_oss.cpp │ │ │ ├── cpl_alibaba_oss.h │ │ │ ├── cpl_atomic_ops.cpp │ │ │ ├── cpl_atomic_ops.h │ │ │ ├── cpl_auto_close.h │ │ │ ├── cpl_aws.cpp │ │ │ ├── cpl_aws.h │ │ │ ├── cpl_azure.cpp │ │ │ ├── cpl_azure.h │ │ │ ├── cpl_base64.cpp │ │ │ ├── cpl_config.h.in │ │ │ ├── cpl_config.h.vc.begin │ │ │ ├── cpl_config.h.vc.common │ │ │ ├── cpl_config.h.vc.end │ │ │ ├── cpl_config.h.vc.no_dll │ │ │ ├── cpl_config_extras.h │ │ │ ├── cpl_conv.cpp │ │ │ ├── cpl_conv.h │ │ │ ├── cpl_cpu_features.cpp │ │ │ ├── cpl_cpu_features.h │ │ │ ├── cpl_csv.cpp │ │ │ ├── cpl_csv.h │ │ │ ├── cpl_error.cpp │ │ │ ├── cpl_error.h │ │ │ ├── cpl_findfile.cpp │ │ │ ├── cpl_getexecpath.cpp │ │ │ ├── cpl_google_cloud.cpp │ │ │ ├── cpl_google_cloud.h │ │ │ ├── cpl_google_oauth2.cpp │ │ │ ├── cpl_hash_set.cpp │ │ │ ├── cpl_hash_set.h │ │ │ ├── cpl_http.cpp │ │ │ ├── cpl_http.h │ │ │ ├── cpl_json.cpp │ │ │ ├── cpl_json.h │ │ │ ├── cpl_json_header.h │ │ │ ├── cpl_json_streaming_parser.cpp │ │ │ ├── cpl_json_streaming_parser.h │ │ │ ├── cpl_list.cpp │ │ │ ├── cpl_list.h │ │ │ ├── cpl_md5.cpp │ │ │ ├── cpl_md5.h │ │ │ ├── cpl_mem_cache.h │ │ │ ├── cpl_minixml.cpp │ │ │ ├── cpl_minixml.h │ │ │ ├── cpl_minizip_ioapi.cpp │ │ │ ├── cpl_minizip_ioapi.h │ │ │ ├── cpl_minizip_unzip.cpp │ │ │ ├── cpl_minizip_unzip.h │ │ │ ├── cpl_minizip_zip.cpp │ │ │ ├── cpl_minizip_zip.h │ │ │ ├── cpl_multiproc.cpp │ │ │ ├── cpl_multiproc.h │ │ │ ├── cpl_odbc.cpp │ │ │ ├── cpl_odbc.h │ │ │ ├── cpl_path.cpp │ │ │ ├── cpl_port.h │ │ │ ├── cpl_progress.cpp │ │ │ ├── cpl_progress.h │ │ │ ├── cpl_quad_tree.cpp │ │ │ ├── cpl_quad_tree.h │ │ │ ├── cpl_recode.cpp │ │ │ ├── cpl_recode_iconv.cpp │ │ │ ├── cpl_recode_stub.cpp │ │ │ ├── cpl_safemaths.hpp │ │ │ ├── cpl_sha1.cpp │ │ │ ├── cpl_sha1.h │ │ │ ├── cpl_sha256.cpp │ │ │ ├── cpl_sha256.h │ │ │ ├── cpl_spawn.cpp │ │ │ ├── cpl_spawn.h │ │ │ ├── cpl_string.cpp │ │ │ ├── cpl_string.h │ │ │ ├── cpl_strtod.cpp │ │ │ ├── cpl_swift.cpp │ │ │ ├── cpl_swift.h │ │ │ ├── cpl_time.cpp │ │ │ ├── cpl_time.h │ │ │ ├── cpl_userfaultfd.cpp │ │ │ ├── cpl_userfaultfd.h │ │ │ ├── cpl_virtualmem.cpp │ │ │ ├── cpl_virtualmem.h │ │ │ ├── cpl_vsi.h │ │ │ ├── cpl_vsi_error.cpp │ │ │ ├── cpl_vsi_error.h │ │ │ ├── cpl_vsi_mem.cpp │ │ │ ├── cpl_vsi_virtual.h │ │ │ ├── cpl_vsil.cpp │ │ │ ├── cpl_vsil_abstract_archive.cpp │ │ │ ├── cpl_vsil_az.cpp │ │ │ ├── cpl_vsil_buffered_reader.cpp │ │ │ ├── cpl_vsil_cache.cpp │ │ │ ├── cpl_vsil_crypt.cpp │ │ │ ├── cpl_vsil_curl.cpp │ │ │ ├── cpl_vsil_curl_class.h │ │ │ ├── cpl_vsil_curl_priv.h │ │ │ ├── cpl_vsil_curl_streaming.cpp │ │ │ ├── cpl_vsil_gs.cpp │ │ │ ├── cpl_vsil_gzip.cpp │ │ │ ├── cpl_vsil_hdfs.cpp │ │ │ ├── cpl_vsil_oss.cpp │ │ │ ├── cpl_vsil_s3.cpp │ │ │ ├── cpl_vsil_simple.cpp │ │ │ ├── cpl_vsil_sparsefile.cpp │ │ │ ├── cpl_vsil_stdin.cpp │ │ │ ├── cpl_vsil_stdout.cpp │ │ │ ├── cpl_vsil_subfile.cpp │ │ │ ├── cpl_vsil_swift.cpp │ │ │ ├── cpl_vsil_tar.cpp │ │ │ ├── cpl_vsil_unix_stdio_64.cpp │ │ │ ├── cpl_vsil_webhdfs.cpp │ │ │ ├── cpl_vsil_win32.cpp │ │ │ ├── cpl_vsisimple.cpp │ │ │ ├── cpl_worker_thread_pool.cpp │ │ │ ├── cpl_worker_thread_pool.h │ │ │ ├── cpl_xml_validate.cpp │ │ │ ├── cplgetsymbol.cpp │ │ │ ├── cplkeywordparser.cpp │ │ │ ├── cplkeywordparser.h │ │ │ ├── cplstring.cpp │ │ │ ├── cplstringlist.cpp │ │ │ ├── gdal_csv.h │ │ │ ├── vsipreload.cpp │ │ │ └── xmlreformat.cpp │ │ └── third_party │ │ │ └── LercLib │ │ │ ├── BitMask.cpp │ │ │ ├── BitMask.h │ │ │ ├── BitStuffer2.cpp │ │ │ ├── BitStuffer2.h │ │ │ ├── Defines.h │ │ │ ├── Huffman.cpp │ │ │ ├── Huffman.h │ │ │ ├── LICENSE │ │ │ ├── Lerc.cpp │ │ │ ├── Lerc.h │ │ │ ├── Lerc2.cpp │ │ │ ├── Lerc2.h │ │ │ ├── Lerc_c_api.h │ │ │ ├── Lerc_c_api_impl.cpp │ │ │ ├── Lerc_types.h │ │ │ ├── NOTICE │ │ │ ├── RLE.cpp │ │ │ └── RLE.h │ ├── gyp-formats │ │ ├── aaigrid.gyp │ │ ├── adrg.gyp │ │ ├── aigrid.gyp │ │ ├── airsar.gyp │ │ ├── blx.gyp │ │ ├── bmp.gyp │ │ ├── ceos.gyp │ │ ├── ceos2.gyp │ │ ├── coasp.gyp │ │ ├── cosar.gyp │ │ ├── ctg.gyp │ │ ├── derived.gyp │ │ ├── dimap.gyp │ │ ├── dted.gyp │ │ ├── e00grid.gyp │ │ ├── elas.gyp │ │ ├── envisat.gyp │ │ ├── ers.gyp │ │ ├── fit.gyp │ │ ├── gff.gyp │ │ ├── grib.gyp │ │ ├── gsg.gyp │ │ ├── gtiff.gyp │ │ ├── gxf.gyp │ │ ├── hf2.gyp │ │ ├── hfa.gyp │ │ ├── idrisi.gyp │ │ ├── ilwis.gyp │ │ ├── ingr.gyp │ │ ├── iris.gyp │ │ ├── iso8211.gyp │ │ ├── jaxapalsar.gyp │ │ ├── jdem.gyp │ │ ├── jpeg.gyp │ │ ├── kmlsuperoverlay.gyp │ │ ├── l1b.gyp │ │ ├── leveller.gyp │ │ ├── map.gyp │ │ ├── mem.gyp │ │ ├── msgn.gyp │ │ ├── ngsgeoid.gyp │ │ ├── nitf.gyp │ │ ├── northwood.gyp │ │ ├── null.gyp │ │ ├── ogr_aeronavfaa.gyp │ │ ├── ogr_avc.gyp │ │ ├── ogr_bna.gyp │ │ ├── ogr_csv.gyp │ │ ├── ogr_dgn.gyp │ │ ├── ogr_dxf.gyp │ │ ├── ogr_edigeo.gyp │ │ ├── ogr_geoconcept.gyp │ │ ├── ogr_geojson.gyp │ │ ├── ogr_georss.gyp │ │ ├── ogr_gml.gyp │ │ ├── ogr_gmt.gyp │ │ ├── ogr_gpsbabel.gyp │ │ ├── ogr_gpx.gyp │ │ ├── ogr_gtm.gyp │ │ ├── ogr_htf.gyp │ │ ├── ogr_idrisi.gyp │ │ ├── ogr_kml.gyp │ │ ├── ogr_mem.gyp │ │ ├── ogr_mitab.gyp │ │ ├── ogr_mvt.gyp │ │ ├── ogr_ntf.gyp │ │ ├── ogr_openair.gyp │ │ ├── ogr_openfilegdb.gyp │ │ ├── ogr_pds.gyp │ │ ├── ogr_pgdump.gyp │ │ ├── ogr_rec.gyp │ │ ├── ogr_s57.gyp │ │ ├── ogr_sdts.gyp │ │ ├── ogr_segukooa.gyp │ │ ├── ogr_segy.gyp │ │ ├── ogr_shape.gyp │ │ ├── ogr_sua.gyp │ │ ├── ogr_svg.gyp │ │ ├── ogr_sxf.gyp │ │ ├── ogr_vrt.gyp │ │ ├── ogr_wasp.gyp │ │ ├── ogr_xplane.gyp │ │ ├── pcidsk.gyp │ │ ├── pds.gyp │ │ ├── png.gyp │ │ ├── r.gyp │ │ ├── raw.gyp │ │ ├── rmf.gyp │ │ ├── rs2.gyp │ │ ├── saga.gyp │ │ ├── sdts.gyp │ │ ├── sgi.gyp │ │ ├── sigdem.gyp │ │ ├── srtmhgt.gyp │ │ ├── terragen.gyp │ │ ├── til.gyp │ │ ├── tsx.gyp │ │ ├── usgsdem.gyp │ │ ├── vrt.gyp │ │ ├── xpm.gyp │ │ ├── xyz.gyp │ │ ├── zlib.gyp │ │ └── zmap.gyp │ ├── gyp-templates │ │ ├── libgdal_format.gyp │ │ └── libgdal_formats.gypi │ ├── libgdal.gyp │ ├── libgdal_formats.gypi │ └── patches │ │ ├── frmts_blx_blxc.diff │ │ ├── frmts_wms_gdalwmsdataset.diff │ │ ├── gcore_gdal_priv.diff │ │ ├── gcore_gdalexif.diff │ │ ├── ogrsf_frmts_shape_dbfopen.diff │ │ ├── ogrsf_frmts_shape_sbnsearch.diff │ │ ├── ogrsf_frmts_shape_shpopenc.diff │ │ └── ogrsf_frmts_shape_shptree.diff ├── libgeos.sh ├── libgeos │ ├── arch │ │ ├── common │ │ │ └── geos │ │ │ │ └── version.h │ │ ├── unix │ │ │ └── geos │ │ │ │ └── platform.h │ │ └── win │ │ │ └── geos │ │ │ └── platform.h │ ├── geos │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── README │ │ ├── capi │ │ │ ├── geos_c.cpp │ │ │ ├── geos_c.h │ │ │ └── geos_ts_c.cpp │ │ ├── geos_svn_revision.h │ │ ├── include │ │ │ ├── geos.h │ │ │ └── geos │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── noding.h │ │ │ │ ├── noding │ │ │ │ ├── BasicSegmentString.h │ │ │ │ ├── FastNodingValidator.h │ │ │ │ ├── FastSegmentSetIntersectionFinder.h │ │ │ │ ├── GeometryNoder.h │ │ │ │ ├── IntersectionAdder.h │ │ │ │ ├── IntersectionFinderAdder.h │ │ │ │ ├── IteratedNoder.h │ │ │ │ ├── MCIndexNoder.h │ │ │ │ ├── MCIndexNoder.inl │ │ │ │ ├── MCIndexSegmentSetMutualIntersector.h │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── Node.h │ │ │ │ ├── NodeMap.h │ │ │ │ ├── PlanarGraph.h │ │ │ │ ├── Subgraph.h │ │ │ │ └── algorithm │ │ │ │ │ ├── ConnectedSubgraphFinder.h │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── Makefile.in │ │ │ │ ├── platform.h.cmake │ │ │ │ ├── platform.h.vc │ │ │ │ ├── precision.h │ │ │ │ ├── precision │ │ │ │ ├── CommonBits.h │ │ │ │ ├── CommonBitsOp.h │ │ │ │ ├── CommonBitsRemover.h │ │ │ │ ├── EnhancedPrecisionOp.h │ │ │ │ ├── GeometryPrecisionReducer.h │ │ │ │ ├── PrecisionReducerCoordinateOperation.h │ │ │ │ └── SimpleGeometryPrecisionReducer.h │ │ │ │ ├── profiler.h │ │ │ │ ├── simplify │ │ │ │ ├── DouglasPeuckerLineSimplifier.h │ │ │ │ ├── DouglasPeuckerSimplifier.h │ │ │ │ ├── LineSegmentIndex.h │ │ │ │ ├── TaggedLineSegment.h │ │ │ │ ├── TaggedLineString.h │ │ │ │ ├── TaggedLineStringSimplifier.h │ │ │ │ ├── TaggedLinesSimplifier.h │ │ │ │ └── TopologyPreservingSimplifier.h │ │ │ │ ├── spatialIndex.h │ │ │ │ ├── timeval.h │ │ │ │ ├── triangulate │ │ │ │ ├── DelaunayTriangulationBuilder.h │ │ │ │ ├── IncrementalDelaunayTriangulator.h │ │ │ │ └── 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 │ │ │ │ ├── TopologyException.h │ │ │ │ ├── UniqueCoordinateArrayFilter.h │ │ │ │ ├── UnsupportedOperationException.h │ │ │ │ └── math.h │ │ │ │ └── version.h.vc │ │ └── src │ │ │ ├── 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 │ │ │ ├── MinimumDiameter.cpp │ │ │ ├── NotRepresentableException.cpp │ │ │ ├── PointLocator.cpp │ │ │ ├── RayCrossingCounter.cpp │ │ │ ├── RobustDeterminant.cpp │ │ │ ├── SIRtreePointInRing.cpp │ │ │ ├── SimplePointInRing.cpp │ │ │ ├── distance │ │ │ │ ├── DiscreteHausdorffDistance.cpp │ │ │ │ └── DistanceToPoint.cpp │ │ │ └── locate │ │ │ │ ├── IndexedPointInAreaLocator.cpp │ │ │ │ ├── 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 │ │ │ ├── MultiLineString.cpp │ │ │ ├── MultiPoint.cpp │ │ │ ├── MultiPolygon.cpp │ │ │ ├── Point.cpp │ │ │ ├── Polygon.cpp │ │ │ ├── PrecisionModel.cpp │ │ │ ├── Triangle.cpp │ │ │ ├── prep │ │ │ │ ├── AbstractPreparedPolygonContains.cpp │ │ │ │ ├── BasicPreparedGeometry.cpp │ │ │ │ ├── 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 │ │ │ │ ├── ShortCircuitedGeometryVisitor.cpp │ │ │ │ └── SineStarFactory.cpp │ │ │ ├── geomgraph │ │ │ ├── Depth.cpp │ │ │ ├── DirectedEdgeStar_geomgraph.cpp │ │ │ ├── DirectedEdge_geomgraph.cpp │ │ │ ├── EdgeEnd.cpp │ │ │ ├── EdgeEndStar.cpp │ │ │ ├── EdgeIntersectionList.cpp │ │ │ ├── EdgeList.cpp │ │ │ ├── EdgeNodingValidator.cpp │ │ │ ├── EdgeRing_geomgraph.cpp │ │ │ ├── Edge_geomgraph.cpp │ │ │ ├── GeometryGraph.cpp │ │ │ ├── GraphComponent.cpp │ │ │ ├── Label.cpp │ │ │ ├── NodeFactory.cpp │ │ │ ├── NodeMap_geomgraph.cpp │ │ │ ├── Node_geomgraph.cpp │ │ │ ├── PlanarGraph_geomgraph.cpp │ │ │ ├── Position.cpp │ │ │ ├── Quadrant.cpp │ │ │ ├── TopologyLocation.cpp │ │ │ └── index │ │ │ │ ├── MonotoneChainEdge.cpp │ │ │ │ ├── MonotoneChainIndexer.cpp │ │ │ │ ├── SegmentIntersector.cpp │ │ │ │ ├── SimpleEdgeSetIntersector.cpp │ │ │ │ ├── SimpleMCSweepLineIntersector.cpp │ │ │ │ ├── SimpleSweepLineIntersector.cpp │ │ │ │ ├── SweepLineEvent_geomgraph.cpp │ │ │ │ └── SweepLineSegment.cpp │ │ │ ├── index │ │ │ ├── bintree │ │ │ │ ├── Bintree.cpp │ │ │ │ ├── Interval_bintree.cpp │ │ │ │ ├── Key_bintree.cpp │ │ │ │ ├── NodeBase_bintree.cpp │ │ │ │ ├── NodeBase_quadtree.cpp │ │ │ │ ├── Node_bintree.cpp │ │ │ │ └── Root_bintree.cpp │ │ │ ├── chain │ │ │ │ ├── MonotoneChain.cpp │ │ │ │ ├── MonotoneChainBuilder.cpp │ │ │ │ ├── MonotoneChainOverlapAction.cpp │ │ │ │ └── MonotoneChainSelectAction.cpp │ │ │ ├── intervalrtree │ │ │ │ ├── IntervalRTreeBranchNode.cpp │ │ │ │ ├── IntervalRTreeLeafNode.cpp │ │ │ │ ├── IntervalRTreeNode.cpp │ │ │ │ └── SortedPackedIntervalRTree.cpp │ │ │ ├── quadtree │ │ │ │ ├── DoubleBits.cpp │ │ │ │ ├── IntervalSize.cpp │ │ │ │ ├── Key_quadtree.cpp │ │ │ │ ├── Node_quadtree.cpp │ │ │ │ ├── Quadtree.cpp │ │ │ │ └── Root_quadtree.cpp │ │ │ ├── strtree │ │ │ │ ├── AbstractNode.cpp │ │ │ │ ├── AbstractSTRtree.cpp │ │ │ │ ├── Interval_strtree.cpp │ │ │ │ ├── ItemBoundable.cpp │ │ │ │ ├── SIRtree.cpp │ │ │ │ └── STRtree.cpp │ │ │ └── sweepline │ │ │ │ ├── SweepLineEvent_index.cpp │ │ │ │ ├── SweepLineIndex.cpp │ │ │ │ └── SweepLineInterval.cpp │ │ │ ├── inlines.cpp │ │ │ ├── io │ │ │ ├── ByteOrderDataInStream.cpp │ │ │ ├── ByteOrderValues.cpp │ │ │ ├── CLocalizer.cpp │ │ │ ├── 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 │ │ │ ├── noding │ │ │ ├── BasicSegmentString.cpp │ │ │ ├── FastNodingValidator.cpp │ │ │ ├── FastSegmentSetIntersectionFinder.cpp │ │ │ ├── GeometryNoder.cpp │ │ │ ├── IntersectionAdder.cpp │ │ │ ├── IntersectionFinderAdder.cpp │ │ │ ├── IteratedNoder.cpp │ │ │ ├── MCIndexNoder.cpp │ │ │ ├── MCIndexSegmentSetMutualIntersector.cpp │ │ │ ├── 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 │ │ │ │ └── SimpleSnapRounder.cpp │ │ │ ├── operation │ │ │ ├── GeometryGraphOperation.cpp │ │ │ ├── IsSimpleOp.cpp │ │ │ ├── buffer │ │ │ │ ├── BufferBuilder.cpp │ │ │ │ ├── BufferInputLineSimplifier.cpp │ │ │ │ ├── BufferOp.cpp │ │ │ │ ├── BufferParameters.cpp │ │ │ │ ├── BufferSubgraph.cpp │ │ │ │ ├── OffsetCurveBuilder.cpp │ │ │ │ ├── OffsetCurveSetBuilder.cpp │ │ │ │ ├── OffsetSegmentGenerator.cpp │ │ │ │ ├── RightmostEdgeFinder.cpp │ │ │ │ └── SubgraphDepthLocater.cpp │ │ │ ├── distance │ │ │ │ ├── ConnectedElementLocationFilter.cpp │ │ │ │ ├── ConnectedElementPointFilter.cpp │ │ │ │ ├── DistanceOp.cpp │ │ │ │ └── GeometryLocation.cpp │ │ │ ├── linemerge │ │ │ │ ├── EdgeString.cpp │ │ │ │ ├── LineMergeDirectedEdge.cpp │ │ │ │ ├── LineMergeEdge.cpp │ │ │ │ ├── LineMergeGraph.cpp │ │ │ │ ├── LineMerger.cpp │ │ │ │ └── LineSequencer.cpp │ │ │ ├── overlay │ │ │ │ ├── EdgeSetNoder.cpp │ │ │ │ ├── ElevationMatrix.cpp │ │ │ │ ├── ElevationMatrixCell.cpp │ │ │ │ ├── LineBuilder.cpp │ │ │ │ ├── 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_polygonize.cpp │ │ │ │ ├── PolygonizeDirectedEdge.cpp │ │ │ │ ├── PolygonizeEdge.cpp │ │ │ │ ├── PolygonizeGraph.cpp │ │ │ │ └── Polygonizer.cpp │ │ │ ├── predicate │ │ │ │ ├── RectangleContains.cpp │ │ │ │ ├── RectangleIntersects.cpp │ │ │ │ └── SegmentIntersectionTester.cpp │ │ │ ├── relate │ │ │ │ ├── EdgeEndBuilder.cpp │ │ │ │ ├── EdgeEndBundle.cpp │ │ │ │ ├── EdgeEndBundleStar.cpp │ │ │ │ ├── RelateComputer.cpp │ │ │ │ ├── RelateNode.cpp │ │ │ │ ├── RelateNodeFactory.cpp │ │ │ │ ├── RelateNodeGraph.cpp │ │ │ │ └── RelateOp.cpp │ │ │ ├── sharedpaths │ │ │ │ └── SharedPathsOp.cpp │ │ │ ├── union │ │ │ │ ├── CascadedPolygonUnion.cpp │ │ │ │ ├── CascadedUnion.cpp │ │ │ │ ├── PointGeometryUnion.cpp │ │ │ │ └── UnaryUnionOp.cpp │ │ │ └── valid │ │ │ │ ├── ConnectedInteriorTester.cpp │ │ │ │ ├── ConsistentAreaTester.cpp │ │ │ │ ├── IndexedNestedRingTester.cpp │ │ │ │ ├── IndexedNestedRingTester.h │ │ │ │ ├── IsValidOp.cpp │ │ │ │ ├── QuadtreeNestedRingTester.cpp │ │ │ │ ├── RepeatedPointTester.cpp │ │ │ │ ├── SimpleNestedRingTester.cpp │ │ │ │ ├── SweeplineNestedRingTester.cpp │ │ │ │ └── TopologyValidationError.cpp │ │ │ ├── planargraph │ │ │ ├── DirectedEdgeStar_planargraph.cpp │ │ │ ├── DirectedEdge_planargraph.cpp │ │ │ ├── Edge_planargraph.cpp │ │ │ ├── NodeMap_planargraph.cpp │ │ │ ├── Node_planargraph.cpp │ │ │ ├── PlanarGraph_planargraph.cpp │ │ │ ├── Subgraph.cpp │ │ │ └── algorithm │ │ │ │ └── ConnectedSubgraphFinder.cpp │ │ │ ├── precision │ │ │ ├── CommonBits.cpp │ │ │ ├── CommonBitsOp.cpp │ │ │ ├── CommonBitsRemover.cpp │ │ │ ├── EnhancedPrecisionOp.cpp │ │ │ ├── GeometryPrecisionReducer.cpp │ │ │ ├── PrecisionReducerCoordinateOperation.cpp │ │ │ └── SimpleGeometryPrecisionReducer.cpp │ │ │ ├── simplify │ │ │ ├── DouglasPeuckerLineSimplifier.cpp │ │ │ ├── DouglasPeuckerSimplifier.cpp │ │ │ ├── LineSegmentIndex.cpp │ │ │ ├── TaggedLineSegment.cpp │ │ │ ├── TaggedLineString.cpp │ │ │ ├── TaggedLineStringSimplifier.cpp │ │ │ ├── TaggedLinesSimplifier.cpp │ │ │ └── TopologyPreservingSimplifier.cpp │ │ │ ├── triangulate │ │ │ ├── DelaunayTriangulationBuilder.cpp │ │ │ ├── IncrementalDelaunayTriangulator.cpp │ │ │ └── quadedge │ │ │ │ ├── LastFoundQuadEdgeLocator.cpp │ │ │ │ ├── LocateFailureException.cpp │ │ │ │ ├── QuadEdge.cpp │ │ │ │ ├── QuadEdgeLocator.cpp │ │ │ │ ├── QuadEdgeSubdivision.cpp │ │ │ │ ├── TrianglePredicate.cpp │ │ │ │ ├── TriangleVisitor.cpp │ │ │ │ └── Vertex.cpp │ │ │ └── util │ │ │ ├── Assert.cpp │ │ │ ├── GeometricShapeFactory.cpp │ │ │ ├── Interrupt.cpp │ │ │ ├── Profiler.cpp │ │ │ └── math.cpp │ ├── libgeos.gyp │ └── patches │ │ ├── BufferOp_minmax.diff │ │ ├── IntervalRTreeBranchNode_minmax.diff │ │ ├── LineIntersector_algorithm.diff │ │ ├── LineSegment_algorithm.diff │ │ ├── OffsetCurveSetBuilder_algorithm.diff │ │ ├── OffsetCurveSetBuilder_minmax.diff │ │ ├── SIRtree_minmax.diff │ │ └── WKTWriter_algorithm.diff ├── libproj.sh └── libproj │ ├── arch │ ├── unix │ │ └── src │ │ │ └── proj_config.h │ └── win │ │ └── src │ │ └── proj_config.h │ ├── libproj.gyp │ └── proj │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── cmake │ ├── CMakeLists.txt │ ├── Proj4Config.cmake │ ├── Proj4InstallPath.cmake │ ├── Proj4Mac.cmake │ ├── Proj4SystemInfo.cmake │ ├── Proj4Test.cmake │ ├── Proj4Utilities.cmake │ ├── Proj4Version.cmake │ └── policies.cmake │ ├── compile │ ├── nad │ ├── CH │ ├── CMakeLists.txt │ ├── GL27 │ ├── IGNF │ ├── README │ ├── epsg │ ├── esri │ ├── esri.extra │ ├── nad.lst │ ├── nad27 │ ├── nad83 │ ├── other.extra │ ├── proj_def.dat │ └── world │ └── src │ ├── CMakeLists.txt │ ├── 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_calcofi.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_qsc.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 │ ├── bin_cs2cs.cmake │ ├── bin_geod.cmake │ ├── bin_nad2bin.cmake │ ├── bin_proj.cmake │ ├── biveval.c │ ├── cs2cs.c │ ├── dmstor.c │ ├── emess.c │ ├── emess.h │ ├── gen_cheb.c │ ├── geocent.c │ ├── geocent.h │ ├── geod.c │ ├── geod_interface.c │ ├── geod_interface.h │ ├── geod_set.c │ ├── geodesic.c │ ├── geodesic.h │ ├── jniproj.c │ ├── lib_proj.cmake │ ├── makefile.vc │ ├── mk_cheby.c │ ├── multistresstest.c │ ├── nad2bin.c │ ├── nad_cvt.c │ ├── nad_init.c │ ├── nad_intr.c │ ├── org_proj4_PJ.h │ ├── 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_fileapi.c │ ├── pj_fwd.c │ ├── pj_gauss.c │ ├── pj_gc_reader.c │ ├── pj_geocent.c │ ├── pj_gridcatalog.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_strtod.c │ ├── pj_transform.c │ ├── pj_tsfn.c │ ├── pj_units.c │ ├── pj_utils.c │ ├── pj_zpoly1.c │ ├── proj.c │ ├── proj_api.h │ ├── proj_etmerc.c │ ├── proj_mdist.c │ ├── proj_rouss.c │ ├── projects.h │ ├── rtodms.c │ ├── test228.c │ └── vector1.c ├── docs └── README.md ├── examples ├── gdalinfo.js └── ogrinfo.js ├── lib ├── envelope.js ├── envelope_3d.js └── gdal.js ├── package.json ├── scripts └── gdal-trunk.sh ├── src ├── collections │ ├── dataset_bands.cpp │ ├── dataset_bands.hpp │ ├── dataset_layers.cpp │ ├── dataset_layers.hpp │ ├── feature_defn_fields.cpp │ ├── feature_defn_fields.hpp │ ├── feature_fields.cpp │ ├── feature_fields.hpp │ ├── gdal_drivers.cpp │ ├── gdal_drivers.hpp │ ├── geometry_collection_children.cpp │ ├── geometry_collection_children.hpp │ ├── layer_features.cpp │ ├── layer_features.hpp │ ├── layer_fields.cpp │ ├── layer_fields.hpp │ ├── linestring_points.cpp │ ├── linestring_points.hpp │ ├── polygon_rings.cpp │ ├── polygon_rings.hpp │ ├── rasterband_overviews.cpp │ ├── rasterband_overviews.hpp │ ├── rasterband_pixels.cpp │ └── rasterband_pixels.hpp ├── gdal.hpp ├── gdal_algorithms.cpp ├── gdal_algorithms.hpp ├── gdal_common.cpp ├── gdal_common.hpp ├── gdal_coordinate_transformation.cpp ├── gdal_coordinate_transformation.hpp ├── gdal_dataset.cpp ├── gdal_dataset.hpp ├── gdal_driver.cpp ├── gdal_driver.hpp ├── gdal_feature.cpp ├── gdal_feature.hpp ├── gdal_feature_defn.cpp ├── gdal_feature_defn.hpp ├── gdal_field_defn.cpp ├── gdal_field_defn.hpp ├── gdal_geometry.cpp ├── gdal_geometry.hpp ├── gdal_geometrycollection.cpp ├── gdal_geometrycollection.hpp ├── gdal_layer.cpp ├── gdal_layer.hpp ├── gdal_linearring.cpp ├── gdal_linearring.hpp ├── gdal_linestring.cpp ├── gdal_linestring.hpp ├── gdal_majorobject.cpp ├── gdal_majorobject.hpp ├── gdal_multilinestring.cpp ├── gdal_multilinestring.hpp ├── gdal_multipoint.cpp ├── gdal_multipoint.hpp ├── gdal_multipolygon.cpp ├── gdal_multipolygon.hpp ├── gdal_point.cpp ├── gdal_point.hpp ├── gdal_polygon.cpp ├── gdal_polygon.hpp ├── gdal_rasterband.cpp ├── gdal_rasterband.hpp ├── gdal_spatial_reference.cpp ├── gdal_spatial_reference.hpp ├── gdal_warper.cpp ├── gdal_warper.hpp ├── node_gdal.cpp └── utils │ ├── field_types.hpp │ ├── number_list.cpp │ ├── number_list.hpp │ ├── obj_cache.hpp │ ├── ptr_manager.cpp │ ├── ptr_manager.hpp │ ├── string_list.cpp │ ├── string_list.hpp │ ├── typed_array.cpp │ ├── typed_array.hpp │ ├── warp_options.cpp │ └── warp_options.hpp ├── test ├── .eslintrc ├── _common.js ├── api_algorithms.test.js ├── api_base.test.js ├── api_coordinatetransformation.test.js ├── api_dataset.test.js ├── api_drivers.test.js ├── api_envelope.test.js ├── api_envelope3d.test.js ├── api_feature.test.js ├── api_geometry.test.js ├── api_layer.test.js ├── api_linearring.test.js ├── api_linestring.test.js ├── api_point.test.js ├── api_polygon.test.js ├── api_rasterband.test.js ├── api_spatialreference.test.js ├── api_warp.test.js ├── artifacts │ └── .gitignore ├── data │ ├── 12_791_1476.jpg │ ├── CM13ct.pgw │ ├── CM13ct.png │ ├── Pacific.wind.7days.grb │ ├── a39se10.jgw │ ├── a39se10.jpg │ ├── blank.jpg │ ├── cutline.dbf │ ├── cutline.prj │ ├── cutline.shp │ ├── cutline.shx │ ├── dem_azimuth50_pa.img │ ├── gpx │ │ └── spiritmountain.gpx │ ├── invalid │ ├── mitab │ │ ├── EXTRACT_POLYGON.mid │ │ └── EXTRACT_POLYGON.mif │ ├── multiband.tif │ ├── park.geo.json │ ├── sample.tif │ ├── sample.vrt │ ├── sample_bigtiff.tif │ ├── sample_deflate.tif │ ├── sample_jpeg.tif │ ├── sample_warped.tif │ ├── sdts │ │ ├── 8821CATD.DDF │ │ ├── 8821CATS.DDF │ │ ├── 8821CEL0.DDF │ │ ├── 8821DDDF.DDF │ │ ├── 8821DDOM.DDF │ │ ├── 8821DDSH.DDF │ │ ├── 8821DQAA.DDF │ │ ├── 8821DQCG.DDF │ │ ├── 8821DQHL.DDF │ │ ├── 8821DQLC.DDF │ │ ├── 8821DQPA.DDF │ │ ├── 8821IDEN.DDF │ │ ├── 8821IREF.DDF │ │ ├── 8821LDEF.DDF │ │ ├── 8821RSDF.DDF │ │ ├── 8821SPDM.DDF │ │ ├── 8821STAT.DDF │ │ ├── 8821XREF.DDF │ │ └── README │ ├── shp │ │ ├── sample.dbf │ │ ├── sample.prj │ │ ├── sample.shp │ │ ├── sample.shx │ │ ├── sample_int64.dbf │ │ ├── sample_int64.prj │ │ ├── sample_int64.shp │ │ └── sample_int64.shx │ ├── srs │ │ └── sample.gml │ ├── temp │ │ └── .gitignore │ ├── unsupported-srs.tif │ └── vsigzip │ │ └── hp40ne.gz ├── helper.js ├── object_lifetime.js ├── open.test.js ├── open_bigtiff.test.js ├── open_deflate_tiff.test.js ├── open_geojson.test.js ├── open_gpx.test.js ├── open_grib.test.js ├── open_gtiff.test.js ├── open_hfa.test.js ├── open_jpeg_tiff.test.js ├── open_jpg.test.js ├── open_mitab.test.js ├── open_png.test.js ├── open_sdts.test.js ├── open_shp.test.js ├── open_vrt.test.js ├── open_vsigzip.test.js └── utils │ └── file.js └── yuidoc.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/npm-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/.github/workflows/npm-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/.npmignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | /.github/** @brianreavis 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/binding.gyp -------------------------------------------------------------------------------- /common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/common.gypi -------------------------------------------------------------------------------- /deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/Makefile -------------------------------------------------------------------------------- /deps/glob-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/glob-files.py -------------------------------------------------------------------------------- /deps/libexpat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat.sh -------------------------------------------------------------------------------- /deps/libexpat/arch/unix/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/arch/unix/expat_config.h -------------------------------------------------------------------------------- /deps/libexpat/arch/win/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/arch/win/expat_config.h -------------------------------------------------------------------------------- /deps/libexpat/expat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/COPYING -------------------------------------------------------------------------------- /deps/libexpat/expat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/README -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/amigaconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/amigaconfig.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/ascii.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/asciitab.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/expat.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/expat_external.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/iasciitab.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/internal.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/latin1tab.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/macconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/macconfig.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/nametab.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/utf8tab.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/winconfig.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmlparse.c -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmlrole.c -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmlrole.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmltok.c -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmltok.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmltok_impl.c -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmltok_impl.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/expat/lib/xmltok_ns.c -------------------------------------------------------------------------------- /deps/libexpat/libexpat.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libexpat/libexpat.gyp -------------------------------------------------------------------------------- /deps/libgdal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal.sh -------------------------------------------------------------------------------- /deps/libgdal/arch/bsd/cpl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/arch/bsd/cpl_config.h -------------------------------------------------------------------------------- /deps/libgdal/arch/unix/cpl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/arch/unix/cpl_config.h -------------------------------------------------------------------------------- /deps/libgdal/arch/win/cpl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/arch/win/cpl_config.h -------------------------------------------------------------------------------- /deps/libgdal/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/common.gypi -------------------------------------------------------------------------------- /deps/libgdal/gdal/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/LICENSE.TXT -------------------------------------------------------------------------------- /deps/libgdal/gdal/NEWS.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/NEWS.template -------------------------------------------------------------------------------- /deps/libgdal/gdal/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.4 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/contour.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/delaunay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/delaunay.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdal_alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdal_alg.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdal_alg_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdal_alg_priv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdal_crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdal_crs.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdal_octave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdal_octave.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdal_rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdal_rpc.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdal_simplesurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdal_simplesurf.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdal_tps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdal_tps.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalchecksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalchecksum.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalcutline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalcutline.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdaldither.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdaldither.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalgeoloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalgeoloc.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalgrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalgrid.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalgrid.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalgrid_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalgrid_priv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalgridavx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalgridavx.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalgridsse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalgridsse.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdallinearsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdallinearsystem.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalmatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalmatching.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalmediancut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalmediancut.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalpansharpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalpansharpen.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalpansharpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalpansharpen.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalproximity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalproximity.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalrasterize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalrasterize.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalsimplewarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalsimplewarp.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalwarper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalwarper.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalwarper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalwarper.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gdalwarpkernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gdalwarpkernel.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/gvgcpfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/gvgcpfit.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/llrasterize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/llrasterize.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/polygonize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/polygonize.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/rasterfill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/rasterfill.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/thinplatespline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/alg/thinplatespline.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/commonutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/commonutils.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/commonutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/commonutils.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/dumpoverviews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/dumpoverviews.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdal-config.in -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal2ogr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdal2ogr.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal_contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdal_contour.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal_grid_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdal_grid_bin.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal_grid_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdal_grid_lib.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdal_utils.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal_utils_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdal_utils_priv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdaladdo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdaladdo.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalasyncread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalasyncread.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdaldem_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdaldem_bin.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdaldem_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdaldem_lib.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalenhance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalenhance.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalflattenmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalflattenmask.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalinfo_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalinfo_bin.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalinfo_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalinfo_lib.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalmanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalmanage.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalserver.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalsrsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalsrsinfo.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdaltindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdaltindex.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdaltorture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdaltorture.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdaltransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdaltransform.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalwarp_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalwarp_bin.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalwarp_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalwarp_lib.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdalwarpsimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gdalwarpsimple.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gnm_utilities.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gnm_utilities.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gnmanalyse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gnmanalyse.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gnmmanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/gnmmanage.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/multireadtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/multireadtest.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/nearblack_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/nearblack_bin.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/nearblack_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/nearblack_lib.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/ogr2ogr_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/ogr2ogr_bin.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/ogr2ogr_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/ogr2ogr_lib.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/ogr_utilities.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/ogr_utilities.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/ogrdissolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/ogrdissolve.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/ogrinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/ogrinfo.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/ogrlineref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/ogrlineref.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/ogrtindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/ogrtindex.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/test_ogrsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/test_ogrsf.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/testepsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/apps/testepsg.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/GDALLogoBW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/GDALLogoBW.svg -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/GDALLogoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/GDALLogoColor.svg -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/GDALLogoGS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/GDALLogoGS.svg -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/bag_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/bag_template.xml -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/compdcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/compdcs.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/datum_shift.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/datum_shift.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/default.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/default.rsc -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/ecw_cs.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/ecw_cs.wkt -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/eedaconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/eedaconf.json -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/ellipsoid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/ellipsoid.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/epsg.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/epsg.wkt -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/esri_epsg.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/esri_epsg.wkt -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/esri_extra.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/esri_extra.wkt -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gcs.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gcs.override.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gcs.override.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gdal_datum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gdal_datum.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gdalicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gdalicon.png -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gdalvrt.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gdalvrt.xsd -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/geoccs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/geoccs.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gml_registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gml_registry.xml -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gmlasconf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gmlasconf.xml -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gmlasconf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gmlasconf.xsd -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gt_datum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gt_datum.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/gt_ellips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/gt_ellips.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/header.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/header.dxf -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/jpfgdgml_BldA.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/jpfgdgml_BldA.gfs -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/jpfgdgml_BldL.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/jpfgdgml_BldL.gfs -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/jpfgdgml_Cntr.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/jpfgdgml_Cntr.gfs -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/jpfgdgml_GCP.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/jpfgdgml_GCP.gfs -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/jpfgdgml_WA.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/jpfgdgml_WA.gfs -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/jpfgdgml_WL.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/jpfgdgml_WL.gfs -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/netcdf_config.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/netcdf_config.xsd -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/nitf_spec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/nitf_spec.xml -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/nitf_spec.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/nitf_spec.xsd -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/ogrvrt.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/ogrvrt.xsd -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/osmconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/osmconf.ini -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/ozi_datum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/ozi_datum.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/ozi_ellips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/ozi_ellips.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/pci_datum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/pci_datum.txt -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/pci_ellips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/pci_ellips.txt -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/pcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/pcs.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/pcs.override.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/pcs.override.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/pds4_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/pds4_template.xml -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/plscenesconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/plscenesconf.json -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/projop_wparm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/projop_wparm.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/ruian_vf_v1.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/ruian_vf_v1.gfs -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/s57agencies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/s57agencies.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/s57attributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/s57attributes.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/seed_2d.dgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/seed_2d.dgn -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/seed_3d.dgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/seed_3d.dgn -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/stateplane.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/stateplane.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/trailer.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/trailer.dxf -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/vdv452.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/vdv452.xml -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/vdv452.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/vdv452.xsd -------------------------------------------------------------------------------- /deps/libgdal/gdal/data/vertcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/data/vertcs.csv -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/aigrid/aigopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/aigrid/aigopen.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/aigrid/aigrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/aigrid/aigrid.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/aigrid/aitest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/aigrid/aitest.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/aigrid/gridlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/aigrid/gridlib.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/blx/blx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/blx/blx.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/blx/blx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/blx/blx.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/bsb/bsb2raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/bsb/bsb2raw.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/bsb/bsb_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/bsb/bsb_read.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/bsb/bsb_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/bsb/bsb_read.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ceos/ceosopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ceos/ceosopen.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ceos/ceosopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ceos/ceosopen.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ceos/ceostest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ceos/ceostest.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ceos2/ceos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ceos2/ceos.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ceos2/ceos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ceos2/ceos.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ceos2/ceossar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ceos2/ceossar.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ceos2/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ceos2/link.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/dted/dted_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/dted/dted_api.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/dted/dted_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/dted/dted_api.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/dted/dted_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/dted/dted_test.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ecw/gdal_ecw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ecw/gdal_ecw.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ecw/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ecw/lookup.py -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/eeda/eeda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/eeda/eeda.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ers/ershdrnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/ers/ershdrnode.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/fit/fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/fit/fit.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/fit/fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/fit/fit.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/fit/gstEndian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/fit/gstEndian.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/fit/gstTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/fit/gstTypes.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gtiff/gtiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gtiff/gtiff.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gtiff/tif_lerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gtiff/tif_lerc.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gtiff/tif_lerc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gtiff/tif_lerc.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gtiff/tifvsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gtiff/tifvsi.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gtiff/tifvsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gtiff/tifvsi.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gxf/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gxf/configure.in -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gxf/gxf.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gxf/gxf.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gxf/gxf_ogcwkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gxf/gxf_ogcwkt.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gxf/gxf_proj4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gxf/gxf_proj4.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gxf/gxfopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gxf/gxfopen.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/gxf/gxfopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/gxf/gxfopen.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hdf5/hdf5_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hdf5/hdf5_api.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfa.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfa_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfa_p.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfaband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfaband.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfadataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfadataset.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfaentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfaentry.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfafield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfafield.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfaopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfaopen.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/hfa/hfatest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/hfa/hfatest.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/kea/keaband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/kea/keaband.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/kea/keacopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/kea/keacopy.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/kea/kearat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/kea/kearat.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/mrf/Packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/mrf/Packer.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/mrf/marfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/mrf/marfa.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/msg/PublicDecompWT_all.cpp: -------------------------------------------------------------------------------- 1 | #include "PublicDecompWT_all.h" 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/nitf/mgrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/nitf/mgrs.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/nitf/mgrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/nitf/mgrs.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/pcraster/libcsf/AUTHORS: -------------------------------------------------------------------------------- 1 | PCRaster Research and Development team, Utrecht University 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/pdf/pdfio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/pdf/pdfio.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/pdf/pdfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/pdf/pdfio.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/r/rdataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/r/rdataset.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/crc32.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/crc32.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/gzio.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/trees.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/trees.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/zconf.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/zlib.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/zutil.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/frmts/zlib/zutil.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/Version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/Version.rc -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal_frmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal_frmts.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal_misc.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal_pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal_pam.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal_priv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal_proxy.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal_rat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal_rat.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal_rat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdal_rat.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdalexif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdalexif.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdalexif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/gdalexif.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/overview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/overview.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/rasterio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gcore/rasterio.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnm.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnm_api.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnm_arch.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnm_arch.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnm_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnm_priv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnm_tut.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnm_tut.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnmgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnmgraph.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnmgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnmgraph.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnmlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnmlayer.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnmnetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnmnetwork.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnmrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/gnm/gnmrule.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/file.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/file.lst -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_api.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_api.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_apitut.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_apitut.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_arch.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_arch.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_capi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_capi_test.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_core.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_expat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_expat.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_expat.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_feature.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_geo_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_geo_utils.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_geocoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_geocoding.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_geometry.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_geos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_geos.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_libs.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_opt.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_p.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_sfcgal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_sfcgal.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_sql.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_sql.dox -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_srs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_srs_api.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_srs_erm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_srs_erm.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_srs_ozi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_srs_ozi.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_srs_pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_srs_pci.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_srs_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_srs_xml.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_srsnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_srsnode.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_xerces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_xerces.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_xerces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogr_xerces.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ograpispy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ograpispy.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ograpispy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ograpispy.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrct.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrcurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrcurve.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrfeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrfeature.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrgeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrgeometry.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrpoint.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrpolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrpolygon.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrsurface.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrtriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrtriangle.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/ogrutils.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/osr_cs_wkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/osr_cs_wkt.c -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/osr_cs_wkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/osr_cs_wkt.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/style_pen1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/style_pen1.gif -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/style_pen2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/style_pen2.gif -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/style_pen3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/style_pen3.gif -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/swq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/swq.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/swq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/swq.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/swq_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/swq_parser.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/swq_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/swq_parser.hpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/swq_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/swq_parser.y -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/swq_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/ogr/swq_select.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_aws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_aws.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_aws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_aws.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_azure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_azure.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_azure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_azure.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_base64.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_config.h.vc.end: -------------------------------------------------------------------------------- 1 | #endif /* CPL_CONFIG_H */ 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_config.h.vc.no_dll: -------------------------------------------------------------------------------- 1 | #define CPL_DISABLE_DLL 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_conv.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_conv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_csv.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_csv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_error.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_error.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_hash_set.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_http.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_http.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_json.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_json.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_list.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_list.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_md5.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_md5.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_minixml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_minixml.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_odbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_odbc.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_odbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_odbc.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_path.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_port.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_progress.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_recode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_recode.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_sha1.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_sha1.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_sha256.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_sha256.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_spawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_spawn.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_spawn.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_string.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_string.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_strtod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_strtod.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_swift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_swift.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_swift.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_time.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_time.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_vsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_vsi.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cpl_vsil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cpl_vsil.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/cplstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/cplstring.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/gdal_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/gdal_csv.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/vsipreload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gdal/port/vsipreload.cpp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/aaigrid.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/aaigrid.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/adrg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/adrg.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/aigrid.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/aigrid.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/airsar.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/airsar.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/blx.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/blx.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/bmp.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/bmp.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ceos.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ceos.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ceos2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ceos2.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/coasp.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/coasp.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/cosar.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/cosar.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ctg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ctg.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/derived.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/derived.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/dimap.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/dimap.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/dted.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/dted.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/e00grid.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/e00grid.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/elas.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/elas.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/envisat.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/envisat.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ers.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ers.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/fit.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/fit.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/gff.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/gff.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/grib.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/grib.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/gsg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/gsg.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/gtiff.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/gtiff.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/gxf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/gxf.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/hf2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/hf2.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/hfa.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/hfa.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/idrisi.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/idrisi.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ilwis.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ilwis.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ingr.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ingr.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/iris.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/iris.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/iso8211.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/iso8211.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/jdem.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/jdem.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/jpeg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/jpeg.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/l1b.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/l1b.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/leveller.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/leveller.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/map.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/map.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/mem.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/mem.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/msgn.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/msgn.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ngsgeoid.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ngsgeoid.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/nitf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/nitf.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/null.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/null.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_avc.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_avc.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_bna.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_bna.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_csv.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_csv.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_dgn.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_dgn.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_dxf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_dxf.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_gml.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_gml.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_gmt.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_gmt.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_gpx.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_gpx.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_gtm.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_gtm.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_htf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_htf.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_kml.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_kml.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_mem.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_mem.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_mvt.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_mvt.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_ntf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_ntf.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_pds.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_pds.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_rec.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_rec.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_s57.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_s57.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_sdts.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_sdts.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_segy.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_segy.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_sua.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_sua.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_svg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_svg.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_sxf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_sxf.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_vrt.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_vrt.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/ogr_wasp.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/ogr_wasp.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/pcidsk.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/pcidsk.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/pds.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/pds.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/png.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/png.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/r.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/r.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/raw.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/raw.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/rmf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/rmf.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/rs2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/rs2.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/saga.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/saga.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/sdts.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/sdts.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/sgi.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/sgi.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/sigdem.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/sigdem.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/srtmhgt.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/srtmhgt.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/terragen.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/terragen.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/til.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/til.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/tsx.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/tsx.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/usgsdem.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/usgsdem.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/vrt.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/vrt.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/xpm.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/xpm.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/xyz.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/xyz.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/zlib.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/zlib.gyp -------------------------------------------------------------------------------- /deps/libgdal/gyp-formats/zmap.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/gyp-formats/zmap.gyp -------------------------------------------------------------------------------- /deps/libgdal/libgdal.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/libgdal.gyp -------------------------------------------------------------------------------- /deps/libgdal/libgdal_formats.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgdal/libgdal_formats.gypi -------------------------------------------------------------------------------- /deps/libgeos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos.sh -------------------------------------------------------------------------------- /deps/libgeos/arch/win/geos/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/arch/win/geos/platform.h -------------------------------------------------------------------------------- /deps/libgeos/geos/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/AUTHORS -------------------------------------------------------------------------------- /deps/libgeos/geos/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/COPYING -------------------------------------------------------------------------------- /deps/libgeos/geos/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/INSTALL -------------------------------------------------------------------------------- /deps/libgeos/geos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/README -------------------------------------------------------------------------------- /deps/libgeos/geos/capi/geos_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/capi/geos_c.cpp -------------------------------------------------------------------------------- /deps/libgeos/geos/capi/geos_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/capi/geos_c.h -------------------------------------------------------------------------------- /deps/libgeos/geos/capi/geos_ts_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/capi/geos_ts_c.cpp -------------------------------------------------------------------------------- /deps/libgeos/geos/geos_svn_revision.h: -------------------------------------------------------------------------------- 1 | #define GEOS_SVN_REVISION 3921 2 | -------------------------------------------------------------------------------- /deps/libgeos/geos/include/geos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/include/geos.h -------------------------------------------------------------------------------- /deps/libgeos/geos/include/geos/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/include/geos/geom.h -------------------------------------------------------------------------------- /deps/libgeos/geos/include/geos/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/include/geos/io.h -------------------------------------------------------------------------------- /deps/libgeos/geos/include/geos/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/include/geos/util.h -------------------------------------------------------------------------------- /deps/libgeos/geos/src/dirlist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/src/dirlist.mk -------------------------------------------------------------------------------- /deps/libgeos/geos/src/geom/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/src/geom/Point.cpp -------------------------------------------------------------------------------- /deps/libgeos/geos/src/inlines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/src/inlines.cpp -------------------------------------------------------------------------------- /deps/libgeos/geos/src/io/Unload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/src/io/Unload.cpp -------------------------------------------------------------------------------- /deps/libgeos/geos/src/io/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/src/io/Writer.cpp -------------------------------------------------------------------------------- /deps/libgeos/geos/src/util/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/src/util/Assert.cpp -------------------------------------------------------------------------------- /deps/libgeos/geos/src/util/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/geos/src/util/math.cpp -------------------------------------------------------------------------------- /deps/libgeos/libgeos.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libgeos/libgeos.gyp -------------------------------------------------------------------------------- /deps/libproj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj.sh -------------------------------------------------------------------------------- /deps/libproj/libproj.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/libproj.gyp -------------------------------------------------------------------------------- /deps/libproj/proj/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/AUTHORS -------------------------------------------------------------------------------- /deps/libproj/proj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libproj/proj/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/COPYING -------------------------------------------------------------------------------- /deps/libproj/proj/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/compile -------------------------------------------------------------------------------- /deps/libproj/proj/nad/CH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/CH -------------------------------------------------------------------------------- /deps/libproj/proj/nad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libproj/proj/nad/GL27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/GL27 -------------------------------------------------------------------------------- /deps/libproj/proj/nad/IGNF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/IGNF -------------------------------------------------------------------------------- /deps/libproj/proj/nad/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/README -------------------------------------------------------------------------------- /deps/libproj/proj/nad/epsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/epsg -------------------------------------------------------------------------------- /deps/libproj/proj/nad/esri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/esri -------------------------------------------------------------------------------- /deps/libproj/proj/nad/esri.extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/esri.extra -------------------------------------------------------------------------------- /deps/libproj/proj/nad/nad.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/nad.lst -------------------------------------------------------------------------------- /deps/libproj/proj/nad/nad27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/nad27 -------------------------------------------------------------------------------- /deps/libproj/proj/nad/nad83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/nad83 -------------------------------------------------------------------------------- /deps/libproj/proj/nad/other.extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/other.extra -------------------------------------------------------------------------------- /deps/libproj/proj/nad/proj_def.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/proj_def.dat -------------------------------------------------------------------------------- /deps/libproj/proj/nad/world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/nad/world -------------------------------------------------------------------------------- /deps/libproj/proj/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_aea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_aea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_aeqd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_aeqd.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_airy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_airy.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_aitoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_aitoff.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_august.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_august.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_bacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_bacon.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_bipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_bipc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_boggs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_boggs.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_bonne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_bonne.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_calcofi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_calcofi.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_cass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_cass.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_cc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_cea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_cea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_chamb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_chamb.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_collg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_collg.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_crast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_crast.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_denoy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_denoy.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_eck1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_eck1.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_eck2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_eck2.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_eck3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_eck3.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_eck4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_eck4.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_eck5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_eck5.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_eqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_eqc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_eqdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_eqdc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_fahey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_fahey.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_fouc_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_fouc_s.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_gall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_gall.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_geos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_geos.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_gins8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_gins8.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_gn_sinu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_gn_sinu.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_gnom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_gnom.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_goode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_goode.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_gstmerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_gstmerc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_hammer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_hammer.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_hatano.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_hatano.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_healpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_healpix.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_igh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_igh.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_imw_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_imw_p.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_isea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_isea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_krovak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_krovak.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_labrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_labrd.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_laea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_laea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_lagrng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_lagrng.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_larr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_larr.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_lask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_lask.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_lcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_lcc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_lcca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_lcca.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_loxim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_loxim.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_lsat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_lsat.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_mbt_fps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_mbt_fps.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_mbtfpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_mbtfpp.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_mbtfpq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_mbtfpq.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_merc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_merc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_mill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_mill.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_mod_ster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_mod_ster.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_moll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_moll.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_natearth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_natearth.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_nell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_nell.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_nell_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_nell_h.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_nocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_nocol.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_nsper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_nsper.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_nzmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_nzmg.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_ob_tran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_ob_tran.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_ocea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_ocea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_oea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_oea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_omerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_omerc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_ortho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_ortho.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_poly.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_putp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_putp2.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_putp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_putp3.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_putp4p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_putp4p.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_putp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_putp5.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_putp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_putp6.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_qsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_qsc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_robin.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_rpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_rpoly.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_sconics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_sconics.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_somerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_somerc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_stere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_stere.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_sterea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_sterea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_sts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_sts.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_tcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_tcc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_tcea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_tcea.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_tmerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_tmerc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_tpeqd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_tpeqd.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_urm5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_urm5.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_urmfps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_urmfps.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_vandg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_vandg.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_vandg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_vandg2.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_vandg4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_vandg4.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_wag2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_wag2.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_wag3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_wag3.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_wag7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_wag7.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_wink1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_wink1.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/PJ_wink2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/PJ_wink2.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/aasincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/aasincos.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/adjlon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/adjlon.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/bch2bps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/bch2bps.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/bchgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/bchgen.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/bin_cs2cs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/bin_cs2cs.cmake -------------------------------------------------------------------------------- /deps/libproj/proj/src/bin_geod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/bin_geod.cmake -------------------------------------------------------------------------------- /deps/libproj/proj/src/bin_proj.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/bin_proj.cmake -------------------------------------------------------------------------------- /deps/libproj/proj/src/biveval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/biveval.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/cs2cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/cs2cs.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/dmstor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/dmstor.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/emess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/emess.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/emess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/emess.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/gen_cheb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/gen_cheb.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/geocent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/geocent.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/geocent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/geocent.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/geod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/geod.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/geod_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/geod_set.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/geodesic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/geodesic.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/geodesic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/geodesic.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/jniproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/jniproj.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/lib_proj.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/lib_proj.cmake -------------------------------------------------------------------------------- /deps/libproj/proj/src/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/makefile.vc -------------------------------------------------------------------------------- /deps/libproj/proj/src/mk_cheby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/mk_cheby.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/nad2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/nad2bin.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/nad_cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/nad_cvt.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/nad_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/nad_init.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/nad_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/nad_intr.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/org_proj4_PJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/org_proj4_PJ.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/p_series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/p_series.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_auth.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_ctx.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_datum_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_datum_set.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_datums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_datums.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_deriv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_deriv.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_ell_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_ell_set.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_ellps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_ellps.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_errno.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_factors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_factors.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_fileapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_fileapi.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_fwd.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_gauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_gauss.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_gc_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_gc_reader.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_geocent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_geocent.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_gridinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_gridinfo.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_gridlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_gridlist.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_init.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_initcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_initcache.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_inv.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_latlong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_latlong.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_list.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_list.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_log.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_malloc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_mlfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_mlfn.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_msfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_msfn.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_mutex.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_open_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_open_lib.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_param.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_phi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_phi2.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_pr_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_pr_list.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_qsfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_qsfn.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_release.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_strerrno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_strerrno.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_strtod.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_transform.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_tsfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_tsfn.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_units.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_utils.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_zpoly1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/pj_zpoly1.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/proj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/proj.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/proj_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/proj_api.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/proj_etmerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/proj_etmerc.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/proj_mdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/proj_mdist.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/proj_rouss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/proj_rouss.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/projects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/projects.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/rtodms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/rtodms.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/test228.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/test228.c -------------------------------------------------------------------------------- /deps/libproj/proj/src/vector1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/deps/libproj/proj/src/vector1.c -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/docs/README.md -------------------------------------------------------------------------------- /examples/gdalinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/examples/gdalinfo.js -------------------------------------------------------------------------------- /examples/ogrinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/examples/ogrinfo.js -------------------------------------------------------------------------------- /lib/envelope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/lib/envelope.js -------------------------------------------------------------------------------- /lib/envelope_3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/lib/envelope_3d.js -------------------------------------------------------------------------------- /lib/gdal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/lib/gdal.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/package.json -------------------------------------------------------------------------------- /scripts/gdal-trunk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/scripts/gdal-trunk.sh -------------------------------------------------------------------------------- /src/collections/dataset_bands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/dataset_bands.cpp -------------------------------------------------------------------------------- /src/collections/dataset_bands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/dataset_bands.hpp -------------------------------------------------------------------------------- /src/collections/dataset_layers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/dataset_layers.cpp -------------------------------------------------------------------------------- /src/collections/dataset_layers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/dataset_layers.hpp -------------------------------------------------------------------------------- /src/collections/feature_fields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/feature_fields.cpp -------------------------------------------------------------------------------- /src/collections/feature_fields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/feature_fields.hpp -------------------------------------------------------------------------------- /src/collections/gdal_drivers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/gdal_drivers.cpp -------------------------------------------------------------------------------- /src/collections/gdal_drivers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/gdal_drivers.hpp -------------------------------------------------------------------------------- /src/collections/layer_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/layer_features.cpp -------------------------------------------------------------------------------- /src/collections/layer_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/layer_features.hpp -------------------------------------------------------------------------------- /src/collections/layer_fields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/layer_fields.cpp -------------------------------------------------------------------------------- /src/collections/layer_fields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/layer_fields.hpp -------------------------------------------------------------------------------- /src/collections/linestring_points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/linestring_points.cpp -------------------------------------------------------------------------------- /src/collections/linestring_points.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/linestring_points.hpp -------------------------------------------------------------------------------- /src/collections/polygon_rings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/polygon_rings.cpp -------------------------------------------------------------------------------- /src/collections/polygon_rings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/polygon_rings.hpp -------------------------------------------------------------------------------- /src/collections/rasterband_pixels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/rasterband_pixels.cpp -------------------------------------------------------------------------------- /src/collections/rasterband_pixels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/collections/rasterband_pixels.hpp -------------------------------------------------------------------------------- /src/gdal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal.hpp -------------------------------------------------------------------------------- /src/gdal_algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_algorithms.cpp -------------------------------------------------------------------------------- /src/gdal_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_algorithms.hpp -------------------------------------------------------------------------------- /src/gdal_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_common.cpp -------------------------------------------------------------------------------- /src/gdal_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_common.hpp -------------------------------------------------------------------------------- /src/gdal_dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_dataset.cpp -------------------------------------------------------------------------------- /src/gdal_dataset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_dataset.hpp -------------------------------------------------------------------------------- /src/gdal_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_driver.cpp -------------------------------------------------------------------------------- /src/gdal_driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_driver.hpp -------------------------------------------------------------------------------- /src/gdal_feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_feature.cpp -------------------------------------------------------------------------------- /src/gdal_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_feature.hpp -------------------------------------------------------------------------------- /src/gdal_feature_defn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_feature_defn.cpp -------------------------------------------------------------------------------- /src/gdal_feature_defn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_feature_defn.hpp -------------------------------------------------------------------------------- /src/gdal_field_defn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_field_defn.cpp -------------------------------------------------------------------------------- /src/gdal_field_defn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_field_defn.hpp -------------------------------------------------------------------------------- /src/gdal_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_geometry.cpp -------------------------------------------------------------------------------- /src/gdal_geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_geometry.hpp -------------------------------------------------------------------------------- /src/gdal_geometrycollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_geometrycollection.cpp -------------------------------------------------------------------------------- /src/gdal_geometrycollection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_geometrycollection.hpp -------------------------------------------------------------------------------- /src/gdal_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_layer.cpp -------------------------------------------------------------------------------- /src/gdal_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_layer.hpp -------------------------------------------------------------------------------- /src/gdal_linearring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_linearring.cpp -------------------------------------------------------------------------------- /src/gdal_linearring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_linearring.hpp -------------------------------------------------------------------------------- /src/gdal_linestring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_linestring.cpp -------------------------------------------------------------------------------- /src/gdal_linestring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_linestring.hpp -------------------------------------------------------------------------------- /src/gdal_majorobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_majorobject.cpp -------------------------------------------------------------------------------- /src/gdal_majorobject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_majorobject.hpp -------------------------------------------------------------------------------- /src/gdal_multilinestring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_multilinestring.cpp -------------------------------------------------------------------------------- /src/gdal_multilinestring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_multilinestring.hpp -------------------------------------------------------------------------------- /src/gdal_multipoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_multipoint.cpp -------------------------------------------------------------------------------- /src/gdal_multipoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_multipoint.hpp -------------------------------------------------------------------------------- /src/gdal_multipolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_multipolygon.cpp -------------------------------------------------------------------------------- /src/gdal_multipolygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_multipolygon.hpp -------------------------------------------------------------------------------- /src/gdal_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_point.cpp -------------------------------------------------------------------------------- /src/gdal_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_point.hpp -------------------------------------------------------------------------------- /src/gdal_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_polygon.cpp -------------------------------------------------------------------------------- /src/gdal_polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_polygon.hpp -------------------------------------------------------------------------------- /src/gdal_rasterband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_rasterband.cpp -------------------------------------------------------------------------------- /src/gdal_rasterband.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_rasterband.hpp -------------------------------------------------------------------------------- /src/gdal_spatial_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_spatial_reference.cpp -------------------------------------------------------------------------------- /src/gdal_spatial_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_spatial_reference.hpp -------------------------------------------------------------------------------- /src/gdal_warper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_warper.cpp -------------------------------------------------------------------------------- /src/gdal_warper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/gdal_warper.hpp -------------------------------------------------------------------------------- /src/node_gdal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/node_gdal.cpp -------------------------------------------------------------------------------- /src/utils/field_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/field_types.hpp -------------------------------------------------------------------------------- /src/utils/number_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/number_list.cpp -------------------------------------------------------------------------------- /src/utils/number_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/number_list.hpp -------------------------------------------------------------------------------- /src/utils/obj_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/obj_cache.hpp -------------------------------------------------------------------------------- /src/utils/ptr_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/ptr_manager.cpp -------------------------------------------------------------------------------- /src/utils/ptr_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/ptr_manager.hpp -------------------------------------------------------------------------------- /src/utils/string_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/string_list.cpp -------------------------------------------------------------------------------- /src/utils/string_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/string_list.hpp -------------------------------------------------------------------------------- /src/utils/typed_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/typed_array.cpp -------------------------------------------------------------------------------- /src/utils/typed_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/typed_array.hpp -------------------------------------------------------------------------------- /src/utils/warp_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/warp_options.cpp -------------------------------------------------------------------------------- /src/utils/warp_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/src/utils/warp_options.hpp -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/_common.js -------------------------------------------------------------------------------- /test/api_algorithms.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_algorithms.test.js -------------------------------------------------------------------------------- /test/api_base.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_base.test.js -------------------------------------------------------------------------------- /test/api_dataset.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_dataset.test.js -------------------------------------------------------------------------------- /test/api_drivers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_drivers.test.js -------------------------------------------------------------------------------- /test/api_envelope.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_envelope.test.js -------------------------------------------------------------------------------- /test/api_envelope3d.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_envelope3d.test.js -------------------------------------------------------------------------------- /test/api_feature.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_feature.test.js -------------------------------------------------------------------------------- /test/api_geometry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_geometry.test.js -------------------------------------------------------------------------------- /test/api_layer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_layer.test.js -------------------------------------------------------------------------------- /test/api_linearring.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_linearring.test.js -------------------------------------------------------------------------------- /test/api_linestring.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_linestring.test.js -------------------------------------------------------------------------------- /test/api_point.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_point.test.js -------------------------------------------------------------------------------- /test/api_polygon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_polygon.test.js -------------------------------------------------------------------------------- /test/api_rasterband.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_rasterband.test.js -------------------------------------------------------------------------------- /test/api_spatialreference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_spatialreference.test.js -------------------------------------------------------------------------------- /test/api_warp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/api_warp.test.js -------------------------------------------------------------------------------- /test/artifacts/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/data/12_791_1476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/12_791_1476.jpg -------------------------------------------------------------------------------- /test/data/CM13ct.pgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/CM13ct.pgw -------------------------------------------------------------------------------- /test/data/CM13ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/CM13ct.png -------------------------------------------------------------------------------- /test/data/Pacific.wind.7days.grb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/Pacific.wind.7days.grb -------------------------------------------------------------------------------- /test/data/a39se10.jgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/a39se10.jgw -------------------------------------------------------------------------------- /test/data/a39se10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/a39se10.jpg -------------------------------------------------------------------------------- /test/data/blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/blank.jpg -------------------------------------------------------------------------------- /test/data/cutline.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/cutline.dbf -------------------------------------------------------------------------------- /test/data/cutline.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/cutline.prj -------------------------------------------------------------------------------- /test/data/cutline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/cutline.shp -------------------------------------------------------------------------------- /test/data/cutline.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/cutline.shx -------------------------------------------------------------------------------- /test/data/dem_azimuth50_pa.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/dem_azimuth50_pa.img -------------------------------------------------------------------------------- /test/data/gpx/spiritmountain.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/gpx/spiritmountain.gpx -------------------------------------------------------------------------------- /test/data/invalid: -------------------------------------------------------------------------------- 1 | This is not a tiff. -------------------------------------------------------------------------------- /test/data/mitab/EXTRACT_POLYGON.mid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/data/mitab/EXTRACT_POLYGON.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/mitab/EXTRACT_POLYGON.mif -------------------------------------------------------------------------------- /test/data/multiband.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/multiband.tif -------------------------------------------------------------------------------- /test/data/park.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/park.geo.json -------------------------------------------------------------------------------- /test/data/sample.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sample.tif -------------------------------------------------------------------------------- /test/data/sample.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sample.vrt -------------------------------------------------------------------------------- /test/data/sample_bigtiff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sample_bigtiff.tif -------------------------------------------------------------------------------- /test/data/sample_deflate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sample_deflate.tif -------------------------------------------------------------------------------- /test/data/sample_jpeg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sample_jpeg.tif -------------------------------------------------------------------------------- /test/data/sample_warped.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sample_warped.tif -------------------------------------------------------------------------------- /test/data/sdts/8821CATD.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821CATD.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821CATS.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821CATS.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821CEL0.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821CEL0.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DDDF.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DDDF.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DDOM.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DDOM.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DDSH.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DDSH.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DQAA.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DQAA.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DQCG.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DQCG.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DQHL.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DQHL.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DQLC.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DQLC.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821DQPA.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821DQPA.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821IDEN.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821IDEN.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821IREF.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821IREF.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821LDEF.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821LDEF.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821RSDF.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821RSDF.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821SPDM.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821SPDM.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821STAT.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821STAT.DDF -------------------------------------------------------------------------------- /test/data/sdts/8821XREF.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/8821XREF.DDF -------------------------------------------------------------------------------- /test/data/sdts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/sdts/README -------------------------------------------------------------------------------- /test/data/shp/sample.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample.dbf -------------------------------------------------------------------------------- /test/data/shp/sample.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample.prj -------------------------------------------------------------------------------- /test/data/shp/sample.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample.shp -------------------------------------------------------------------------------- /test/data/shp/sample.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample.shx -------------------------------------------------------------------------------- /test/data/shp/sample_int64.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample_int64.dbf -------------------------------------------------------------------------------- /test/data/shp/sample_int64.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample_int64.prj -------------------------------------------------------------------------------- /test/data/shp/sample_int64.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample_int64.shp -------------------------------------------------------------------------------- /test/data/shp/sample_int64.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/shp/sample_int64.shx -------------------------------------------------------------------------------- /test/data/srs/sample.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/srs/sample.gml -------------------------------------------------------------------------------- /test/data/temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/data/unsupported-srs.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/unsupported-srs.tif -------------------------------------------------------------------------------- /test/data/vsigzip/hp40ne.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/data/vsigzip/hp40ne.gz -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/object_lifetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/object_lifetime.js -------------------------------------------------------------------------------- /test/open.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open.test.js -------------------------------------------------------------------------------- /test/open_bigtiff.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_bigtiff.test.js -------------------------------------------------------------------------------- /test/open_deflate_tiff.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_deflate_tiff.test.js -------------------------------------------------------------------------------- /test/open_geojson.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_geojson.test.js -------------------------------------------------------------------------------- /test/open_gpx.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_gpx.test.js -------------------------------------------------------------------------------- /test/open_grib.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_grib.test.js -------------------------------------------------------------------------------- /test/open_gtiff.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_gtiff.test.js -------------------------------------------------------------------------------- /test/open_hfa.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_hfa.test.js -------------------------------------------------------------------------------- /test/open_jpeg_tiff.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_jpeg_tiff.test.js -------------------------------------------------------------------------------- /test/open_jpg.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_jpg.test.js -------------------------------------------------------------------------------- /test/open_mitab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_mitab.test.js -------------------------------------------------------------------------------- /test/open_png.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_png.test.js -------------------------------------------------------------------------------- /test/open_sdts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_sdts.test.js -------------------------------------------------------------------------------- /test/open_shp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_shp.test.js -------------------------------------------------------------------------------- /test/open_vrt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_vrt.test.js -------------------------------------------------------------------------------- /test/open_vsigzip.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/open_vsigzip.test.js -------------------------------------------------------------------------------- /test/utils/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/test/utils/file.js -------------------------------------------------------------------------------- /yuidoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naturalatlas/node-gdal/HEAD/yuidoc.json --------------------------------------------------------------------------------