├── gdal ├── VERSION ├── html │ └── do-not-remove ├── swig │ ├── include │ │ └── php │ │ │ └── osr_php.i │ ├── python │ │ ├── osgeo │ │ │ └── gdalnumeric.py │ │ ├── ogr.py │ │ ├── osr.py │ │ ├── gdal.py │ │ ├── epydoc.conf │ │ ├── gdalconst.py │ │ └── gdalnumeric.py │ ├── csharp │ │ ├── gdal.snk │ │ ├── gdal │ │ │ └── makefile.vc │ │ ├── ogr │ │ │ └── makefile.vc │ │ ├── osr │ │ │ └── makefile.vc │ │ └── const │ │ │ └── makefile.vc │ └── java │ │ └── test_data │ │ ├── byte.tif │ │ ├── poly.dbf │ │ ├── poly.shp │ │ └── poly.shx ├── data │ ├── epsg.wkt │ ├── gdalicon.png │ ├── seed_2d.dgn │ ├── seed_3d.dgn │ ├── cubewerx_extra.wkt │ ├── s57attributes_iw.csv │ └── s57expectedinput.csv ├── frmts │ ├── bsb │ │ ├── Makefile.dist │ │ └── makefile.vc │ ├── idrisi │ │ ├── rdc.txt │ │ └── rst.txt │ ├── rik │ │ ├── frmt_rik.html │ │ └── makefile.vc │ ├── jpipkak │ │ ├── components.PNG │ │ ├── gdalsequence.PNG │ │ ├── jpipsequence.PNG │ │ └── frmt_jpipkak.html │ ├── msg │ │ └── PublicDecompWTMakefiles.zip │ ├── grib │ │ └── degrib18 │ │ │ └── degrib │ │ │ └── metaname.cpp │ ├── gtiff │ │ └── libtiff │ │ │ └── tiffconf.h │ ├── pcidsk │ │ └── sdk │ │ │ ├── core │ │ │ └── Makefile │ │ │ ├── port │ │ │ └── Makefile │ │ │ ├── channel │ │ │ └── Makefile │ │ │ └── segment │ │ │ └── Makefile │ ├── mrsid_lidar │ │ └── frmt_mrsid_lidar_view_point_cloud.html │ ├── postgisraster │ │ └── todo │ ├── tsx │ │ ├── makefile.vc │ │ └── GNUmakefile │ ├── terragen │ │ └── makefile.vc │ ├── bmp │ │ └── makefile.vc │ ├── ctg │ │ └── makefile.vc │ ├── dds │ │ └── makefile.vc │ ├── dimap │ │ └── makefile.vc │ ├── elas │ │ └── makefile.vc │ ├── gff │ │ └── makefile.vc │ ├── hf2 │ │ └── makefile.vc │ ├── l1b │ │ └── makefile.vc │ ├── map │ │ └── makefile.vc │ ├── mem │ │ └── makefile.vc │ ├── rs2 │ │ └── makefile.vc │ ├── xyz │ │ └── makefile.vc │ ├── zmap │ │ └── makefile.vc │ ├── aaigrid │ │ └── makefile.vc │ ├── airsar │ │ └── makefile.vc │ ├── coasp │ │ └── makefile.vc │ ├── cosar │ │ └── makefile.vc │ ├── e00grid │ │ └── makefile.vc │ ├── jaxapalsar │ │ └── makefile.vc │ ├── leveller │ │ └── makefile.vc │ ├── ngsgeoid │ │ └── makefile.vc │ ├── r │ │ └── makefile.vc │ ├── wms │ │ ├── frmt_twms_Clementine.xml │ │ ├── frmt_twms_srtm.xml │ │ └── frmt_twms_Moon.xml │ ├── ceos │ │ └── makefile.vc │ ├── fit │ │ └── makefile.vc │ ├── saga │ │ ├── makefile.vc │ │ └── GNUmakefile │ ├── rmf │ │ └── makefile.vc │ ├── iris │ │ └── makefile.vc │ ├── sgi │ │ └── makefile.vc │ ├── gsg │ │ └── makefile.vc │ ├── srtmhgt │ │ └── makefile.vc │ ├── til │ │ └── makefile.vc │ └── xpm │ │ └── makefile.vc ├── port │ ├── cpl_wince.h │ ├── cpl_win32ce_api.h │ └── cpl_win32ce_api.cpp ├── doc │ ├── grid │ │ ├── ellipse.png │ │ ├── gridding.png │ │ └── src │ │ │ ├── ellipse.tex │ │ │ └── gridding.tex │ ├── images │ │ ├── i3-logo.jpg │ │ ├── act-logo.png │ │ ├── foss4g09.png │ │ ├── safe-logo.png │ │ ├── src-logo.png │ │ ├── cadcorp_logo.jpg │ │ ├── ingres-logo.png │ │ └── waypoint_logo.png │ ├── ogr │ │ ├── style_pen1.gif │ │ ├── style_pen2.gif │ │ ├── style_pen3.gif │ │ └── style_textanchor.gif │ └── gdal_footer.html ├── ogr │ ├── ogrsf_frmts │ │ ├── ili │ │ │ └── iom │ │ │ │ ├── iom.h │ │ │ │ ├── iom_basket.cpp │ │ │ │ └── iom_object.cpp │ │ ├── sosi │ │ │ └── fyba_melding.cpp │ │ ├── geojson │ │ │ └── jsonc │ │ │ │ ├── AUTHORS │ │ │ │ └── ChangeLog │ │ ├── geoconcept │ │ │ └── geoconcept_syscoord.c │ │ ├── libkml │ │ │ └── .indent.pro │ │ └── sdts │ │ │ └── install-libs.sh │ └── wcts │ │ └── req_getcap.xml ├── submake.bat ├── vb6 │ └── test │ │ └── Module1.bas ├── wince │ └── TODO ├── bridge │ └── Makefile └── autogen.sh └── autotest ├── alg ├── tmp │ └── do-not-remove └── data │ ├── pat.tif │ └── cutline.csv ├── cpp ├── data │ ├── do-not-remove │ ├── n43.dt0 │ ├── byte.tif │ ├── int16.tif │ ├── int32.tif │ ├── poly.dbf │ ├── poly.shp │ ├── poly.shx │ ├── cfloat32.tif │ ├── cfloat64.tif │ ├── cint16.tif │ ├── cint32.tif │ ├── float32.tif │ ├── float64.tif │ ├── uint16.tif │ ├── uint32.tif │ ├── utmsmall.tif │ └── recode-rus.dat └── tmp │ └── do-not-remove ├── gcore ├── tmp │ └── do-not-remove └── data │ ├── rat.img │ ├── 1bit.bmp │ ├── byte.img │ ├── byte.pnm │ ├── byte.raw │ ├── byte.tar │ ├── byte.tgz │ ├── byte.tif │ ├── byte_2.hdf │ ├── byte_3.hdf │ ├── cielab.tif │ ├── cint16.tif │ ├── cint32.tif │ ├── f2r23.aux │ ├── f2r23.tif │ ├── int10.tif │ ├── int12.tif │ ├── int16.img │ ├── int16.raw │ ├── int16.tif │ ├── int24.tif │ ├── int32.img │ ├── int32.raw │ ├── int32.tif │ ├── nan32.tif │ ├── nan64.tif │ ├── rgba.tif │ ├── sasha.aux │ ├── sasha.tif │ ├── sstgeo.tif │ ├── uint16.img │ ├── uint16.pnm │ ├── uint16.raw │ ├── uint16.tif │ ├── uint32.img │ ├── uint32.raw │ ├── uint32.tif │ ├── 4bit_pal.bmp │ ├── 8bit_pal.bmp │ ├── bug4468.tif │ ├── byte.tif.gz │ ├── byte.tif.zip │ ├── cfloat32.raw │ ├── cfloat32.tif │ ├── cfloat64.raw │ ├── cfloat64.tif │ ├── cint_sar.tif │ ├── float16.tif │ ├── float24.tif │ ├── float32.img │ ├── float32.raw │ ├── float32.tif │ ├── float64.img │ ├── float64.raw │ ├── float64.tif │ ├── int16_2.hdf │ ├── int16_3.hdf │ ├── int32_2.hdf │ ├── int32_3.hdf │ ├── mfftest.r00 │ ├── minfloat.tif │ ├── rgbsmall.tif │ ├── slim_g4.tif │ ├── small_ov.img │ ├── small_ov.rrd │ ├── test_gf.tif │ ├── testzip.zip │ ├── uint16_2.hdf │ ├── uint16_3.hdf │ ├── uint32_2.hdf │ ├── uint32_3.hdf │ ├── utmsmall.img │ ├── utmsmall.raw │ ├── utmsmall.tif │ ├── byte_point.tif │ ├── empty1bit.tif │ ├── float32_2.hdf │ ├── float32_3.hdf │ ├── float64_2.hdf │ ├── float64_3.hdf │ ├── geomatrix.tif │ ├── nodata_byte.tif │ ├── oddsize1bit.tif │ ├── spaf27_epsg.tif │ ├── ticket3019.tif │ ├── twoimages.tif │ ├── utmsmall_2.hdf │ ├── utmsmall_3.hdf │ ├── zackthecat.tif │ ├── contig_strip.tif │ ├── contig_tiled.tif │ ├── exif_and_gps.tif │ ├── nan32_nodata.tif │ ├── rgbsmall_cmyk.tif │ ├── 2bit_compressed.img │ ├── float32_minwhite.tif │ ├── oddsize_1bit2b.tif │ ├── onefileinsubdir.zip │ ├── separate_tiled.tif │ ├── seperate_strip.tif │ ├── spaf27_correct.tif │ ├── stefan_full_rgba.png │ ├── stefan_full_rgba.tif │ ├── twofileinsubdir.zip │ ├── ycbcr_with_mask.tif │ ├── citation_mixedcase.tif │ ├── spaf27_brokengdal.tif │ ├── stats_signed_byte.img │ ├── test_nodatavalues.tif │ ├── byte_buggy_packbits.tif │ ├── corrupted_gtiff_tags.tif │ ├── mandrilmini_12bitjpeg.tif │ ├── spaf27_markedcorrect.tif │ ├── stats_nodata_neginf.tif │ ├── stats_nodata_posinf.tif │ ├── stefan_full_greyalpha.tif │ ├── tag_without_null_byte.tif │ ├── test3_with_1mask_1bit.tif │ ├── test3_with_mask_1bit.tif │ ├── test3_with_mask_8bit.tif │ ├── test_average_palette.tif │ ├── test_with_mask_1bit.tif │ ├── test_with_mask_8bit.tif │ ├── bigtiff_header_extract.tif │ ├── stats_nodata_neginf_msvc.tif │ ├── stats_nodata_posinf_msvc.tif │ ├── mfftest.hdr │ ├── stefan_full_rgba_jpeg_contig.tif │ ├── test3_with_mask_1bit_and_ovr.tif │ ├── test_with_mask_1bit_and_ovr.tif │ ├── stefan_full_rgba_jpeg_separate.tif │ ├── stefan_full_rgba_photometric_rgb.tif │ ├── tiff_dos_strip_chop.tif │ ├── testserialization.asc │ └── mfftest.hdr.aux.xml ├── gdrivers ├── data │ ├── BAND1.DAT │ ├── BAND2.DAT │ ├── BAND3.DAT │ ├── BAND4.DAT │ ├── BAND5.DAT │ ├── BAND6.DAT │ ├── BAND7.DAT │ ├── caseinsensitive │ ├── envirpc.img │ ├── fake_snodas.dat │ ├── fakeeir.img │ ├── fakemff.b0 │ ├── n0o0y867.0fn │ ├── n0o0y867.0fo │ ├── n0o0y867.0fp │ ├── w0y13a4t.012 │ ├── fakefujibas.img │ ├── fakemfftiled.b0 │ ├── testenviclasses │ ├── fakecpgSIRC.img │ ├── L71230079_07920021111_B61.FST │ ├── ABC3X1UC │ │ ├── VAT.ADF │ │ ├── HDR.ADF │ │ ├── STA.ADF │ │ ├── DBLBND.ADF │ │ ├── W001001.ADF │ │ ├── W001001X.ADF │ │ └── PRJ.ADF │ ├── abc3x1 │ │ ├── vat.adf │ │ ├── hdr.adf │ │ ├── sta.adf │ │ ├── dblbnd.adf │ │ ├── w001001.adf │ │ ├── w001001x.adf │ │ └── prj.adf │ ├── envistat │ ├── wc_10m_CCCMA_A2a_2020_tmin_9.bil │ ├── nitf59.nfw │ ├── fakegsc.gsc │ ├── small_grass_dataset │ │ ├── demomapset │ │ │ ├── cell_misc │ │ │ │ └── elevation │ │ │ │ │ └── range │ │ │ └── cell │ │ │ │ └── elevation │ │ ├── PERMANENT │ │ │ ├── PROJ_UNITS │ │ │ └── PROJ_INFO │ │ └── README.txt │ ├── srtm │ ├── testtil.imd │ ├── A.TOC │ ├── aea.dat │ ├── ers_dem │ ├── int.img │ ├── jrc.ecw │ ├── ldd.map │ ├── ll.jp2 │ ├── n43.dt0 │ ├── rgb.ntf │ ├── trmm.nc │ ├── u8be.h5 │ ├── utm.pix │ ├── utm.tif │ ├── bogus.jpg │ ├── bug636.nc │ ├── byte.jp2 │ ├── byte.pgm │ ├── byte.rst │ ├── byte.rsw │ ├── byte.sgi │ ├── byte.tif │ ├── dem10.img │ ├── float.img │ ├── gmt_1.grd │ ├── groups.h5 │ ├── int16.jp2 │ ├── int16.tif │ ├── int32.tif │ ├── real.rst │ ├── s4103.blx │ ├── s4103.xlb │ ├── small.raw │ ├── spill.ige │ ├── spill.img │ ├── spill.rde │ ├── spill.rrd │ ├── test.png │ ├── trmm.tif │ ├── 251_head.dat │ ├── 251_tail.dat │ ├── 87test.img │ ├── 8bit_pal.cot │ ├── 8bit_rgb.cot │ ├── CSK_DGM.h5 │ ├── CSK_GEC.h5 │ ├── DWI01012.AFC │ ├── F0116231.aux │ ├── LDEM_4.IMG │ ├── RPFTOC01.ON2 │ ├── U_1050A.NTF │ ├── U_4017A.NTF │ ├── albania.jpg │ ├── bug3246.grb │ ├── bug407.gif │ ├── bug_1109.img │ ├── byte-lzw.rsw │ ├── byte.jp2.gz │ ├── byte_jpg.zip │ ├── bytemff.b00 │ ├── cf-bug636.nc │ ├── cf_geog.nc │ ├── cf_lcc1sp.nc │ ├── cf_lcc2sp.nc │ ├── ds.mint.bin │ ├── ehdr10.bil │ ├── ehdr11.flt │ ├── envistat.sta │ ├── fakebig.gif │ ├── fakelan.lan │ ├── fg118-91.aux │ ├── float32.bil │ ├── float32.tif │ ├── float64.mtw │ ├── float64.tif │ ├── frmt02.cot │ ├── frmt09.cot │ ├── frmt09t.cot │ ├── frmt10.cot │ ├── frmt24.cit │ ├── frmt27.cot │ ├── frmt28.cot │ ├── frmt29.cot │ ├── frmt30.cot │ ├── frmt31.cot │ ├── hydroc1.gtx │ ├── i8u_c_i.img │ ├── i_3034c.ntf │ ├── i_3034f.ntf │ ├── iristest.dat │ ├── masked.jpg │ ├── mercator.sid │ ├── metadata.h5 │ ├── nc_vars.nc │ ├── netcdf-4d.nc │ ├── ns3034d.nsf │ ├── nwt_grc.grc │ ├── nwt_grd.grd │ ├── r_test.rdb │ ├── rgba16.png │ ├── rgbsmall.ppm │ ├── rgbsmall.rsw │ ├── rgbsmall.tif │ ├── rset.ntf.r0 │ ├── rset.ntf.r1 │ ├── rset.ntf.r2 │ ├── small16.raw │ ├── sombrero.grd │ ├── spif83.ecw │ ├── tbbn2c16.png │ ├── ter6test.ter │ ├── testtest.on9 │ ├── trmm-2x2.nc │ ├── trmm-nan.nc │ ├── trmm-nc2.nc │ ├── trmm-nc4.nc │ ├── trmm-nc4c.nc │ ├── trmm-nc4z.nc │ ├── uint32.cot │ ├── vophead.jpg │ ├── big-endian.rsw │ ├── byte_elas.bin │ ├── fake_nsif.ntf │ ├── fakedipex.dat │ ├── gsg_binary.grd │ ├── hdifftst2.hdf │ ├── int16-nogeo.nc │ ├── melb-small.tif │ ├── n43_wgs72.dt0 │ ├── orog_CRCM1.nc │ ├── orog_CRCM2.nc │ ├── rgbsmall.webp │ ├── small1bit.img │ ├── small1bit.rrd │ ├── tm4628_96.bil │ ├── trmm-wgs84.tif │ ├── 251_rasterdms.dat │ ├── 4byteFloat.sdat │ ├── IMAGERY-75K.L-3 │ ├── LanduseSmall.rp# │ ├── LanduseSmall.tb# │ ├── byte_scanline.tif │ ├── byte_signed.tif │ ├── byte_with_xmp.gif │ ├── byte_with_xmp.jp2 │ ├── byte_with_xmp.jpg │ ├── byte_with_xmp.png │ ├── byte_with_xmp.tif │ ├── cf_aea2sp_invf.nc │ ├── cf_no_sphere.nc │ ├── fakelan4bit.lan │ ├── gsg_7binary.grd │ ├── idat_broken.png │ ├── mercator_new.sid │ ├── n43_bad_crc.dt0 │ ├── rasterlite.sqlite │ ├── rgb16_ecwsdk.jp2 │ ├── rgb_ntf_cmyk.jpg │ ├── rgbsmall-lzw.rsw │ ├── rgbsmall_rgb.jpg │ ├── scale_offset.nc │ ├── small_200ppcm.jp2 │ ├── small_world.tif │ ├── test_iso32000.pdf │ ├── test_ogc_bp.pdf │ ├── vlstr_metadata.h5 │ ├── world_l1.mbtiles │ ├── 42BW_420730_VT2.aux │ ├── Sample_QuikSCAT.grb │ ├── aea_compressed.dat │ ├── byte_corrupted.jpg │ ├── bytemff2 │ │ └── image_data │ ├── foo_5dimensional.nc │ ├── int16_lossless.jp2 │ ├── isis3_detached.cub │ ├── isis3_unit_test.cub │ ├── n43_sparse_cols.dt0 │ ├── no_scale_offset.nc │ ├── rgbsmall_index.kap │ ├── true_n_nominal.bag │ ├── two_images_jp2.ntf │ ├── two_images_jpeg.ntf │ ├── 12bit_rose_extract.jpg │ ├── 3_13bit_and_1bit.jp2 │ ├── C3607614_truncated.NWS │ ├── PDS_WITH_ZIP_IMG.ZIP │ ├── USRP_PCB4 │ │ └── FKUSRP01.IMG │ ├── USRP_PCB8 │ │ └── FKUSRP01.IMG │ ├── fl73n003_truncated.img │ ├── gtsmall_10_uint16.jp2 │ ├── gtsmall_11_int16.jp2 │ ├── i_6130a_truncated.ntf │ ├── n43_partial_cols.dt0 │ ├── rasterlite_pct.sqlite │ ├── rgbsmall_with_xmp.webp │ ├── test_FARSITE_UTM12.LCP │ ├── SMALL_ADRG │ │ └── ABCDEF01.IMG │ ├── test_USGS_LFNM_Alb83.lcp │ ├── two_vars_scale_offset.nc │ ├── EN0001426030M_truncated.IMG │ ├── adobe_style_geospatial.pdf │ ├── fl73n003_alt_truncated.img │ ├── g2009u01_be_truncated.bin │ ├── g2009u01_le_truncated.bin │ ├── rasterlite_pyramids.sqlite │ ├── rgbwcmyk01_YeGeo_kakadu.jp2 │ ├── test_vrt_filter_nodata.tif │ ├── L71118038_03820020111_B80.FST │ ├── L72230079_07920021111_B62.FST │ ├── byte_without_geotransform.jp2 │ ├── fakemff.hdr │ ├── arvidson_original_truncated.cub │ ├── gmljp2_dtedsm_epsg_4326_axes.jp2 │ ├── stefan_full_rgba_alpha_1bit.jp2 │ ├── stefan_full_rgba_ecwv3_meta.ecw │ ├── small.gxf │ ├── STDS_1107834_truncated │ │ └── 1107CEL0.DDF │ ├── adobe_style_geospatial_with_xmp.pdf │ ├── byte_without_geotransform.j2w │ ├── ehdr10.hdr │ ├── ehdr11.hdr │ ├── geoserver.wcs │ ├── gmljp2_dtedsm_epsg_4326_axes_alt_offsetVector.jp2 │ ├── fakeeir.hdr │ ├── nitf59.hdr │ ├── test.wld │ ├── envistat.hdr │ ├── fakemfftiled.hdr │ ├── srtmplus.wcs │ ├── fakefujibas.pcb │ ├── fakecpgSIRC.hdr │ └── grassascii.txt └── tmp │ └── do-not-remove ├── ogr ├── tmp │ └── do-not-remove └── data │ ├── testnumheader2.csv │ ├── points.gen │ ├── testdatetime.csvt │ ├── testnumheader1.csv │ ├── points.avl │ ├── gjpoint.sbn │ ├── gjpoint.sbx │ ├── points25d.gen │ ├── testquoteheader2.csv │ ├── wkb_wkt │ ├── 3d_broken_line.wkt │ ├── 8.wkt │ ├── 10.wkt │ ├── 3d_broken_point.wkt │ ├── 9.wkt │ ├── 3d_broken_polygon.wkt │ ├── 3d_odd_collection.wkt_hidden │ ├── 1.wkb │ ├── 10.wkb │ ├── 11.wkb │ ├── 2.wkb │ ├── 3.wkb │ ├── 4.wkb │ ├── 5.wkb │ ├── 6.wkb │ ├── 7.wkb │ ├── 8.wkb │ ├── 9.wkb │ ├── 3d_1.wkb │ ├── db2_poly.wkb │ ├── 3d_broken_line.wkb │ ├── 3d_broken_point.wkb │ ├── 3d_broken_polygon.wkb │ ├── 5.wkt │ ├── 1.wkt │ ├── 3d_odd_collection.wkb_hidden │ ├── 11.wkt │ ├── 6.wkt │ └── 7.wkt │ ├── testquoteheader1.csv │ ├── PERMANENT │ ├── vector │ │ └── point │ │ │ ├── coor │ │ │ ├── cidx │ │ │ ├── dbln │ │ │ ├── topo │ │ │ └── head │ ├── PROJ_UNITS │ ├── README.txt │ ├── PROJ_INFO │ └── dbf │ │ └── point.dbf │ ├── testnull.csvt │ ├── apt.dat │ ├── asm.shp │ ├── asm.shx │ ├── awy.dat │ ├── bna_for_gpx.bna │ ├── fix.dat │ ├── test_eurostat.tsv │ ├── empty.dbf │ ├── empty.mdb │ ├── empty.shp │ ├── empty.shx │ ├── flat.dbf │ ├── lines.vct │ ├── point.geojson │ ├── poly.dbf │ ├── poly.shp │ ├── poly.shx │ ├── poly.zip │ ├── test.ods │ ├── test.pbf │ ├── test.xlsx │ ├── 1B5X02NE.000 │ ├── Stacks.dbf │ ├── Stacks.shp │ ├── Stacks.shx │ ├── assorted.dxf │ ├── bigoffset.dbf │ ├── bug1526.000 │ ├── bylany.vfk │ ├── can_caps.shp │ ├── can_caps.shx │ ├── departs.dbf │ ├── departs.shp │ ├── departs.shx │ ├── gjline.shp │ ├── gjline.shx │ ├── gjpoint.shp │ ├── gjpoint.shx │ ├── gjpoly.shp │ ├── gjpoly.shx │ ├── info │ ├── arc.dir │ ├── arc0000.nit │ ├── arc0001.dat │ ├── arc0001.nit │ ├── arc0002.dat │ ├── arc0002.nit │ ├── arc0003.dat │ ├── arc0003.nit │ ├── arc0004.dat │ ├── arc0004.nit │ ├── arc0005.dat │ └── arc0005.nit │ ├── points.vct │ ├── poly.tar.gz │ ├── polygons.vct │ ├── test3356.shp │ ├── test3356.shx │ ├── testpoly.ind │ ├── testpoly.qix │ ├── testpoly.shp │ ├── testpoly.shx │ ├── apt810 │ └── apt.dat │ ├── bigoffset.shp │ ├── bigoffset.shx │ ├── buggypoint.shp │ ├── buggypoint.shx │ ├── inlineStr.xlsx │ ├── lines.gen │ ├── multipatch.shp │ ├── multipatch.shx │ ├── samplemap.gtm │ ├── smalltest.dgn │ ├── testpointm.shp │ ├── testpointm.shx │ ├── testsegy.segy │ ├── base-64.osm.pbf │ ├── gjmultiline.shp │ ├── gjmultiline.shx │ ├── gjmultipoint.shp │ ├── gjmultipoint.shx │ ├── gjmultipoly.shp │ ├── gjmultipoly.shx │ ├── multipatch.dbf │ ├── nan.dbf │ ├── test972000xp.xls │ ├── test_kspread.ods │ ├── testavc │ ├── arc.adf │ ├── arx.adf │ ├── bnd.adf │ ├── lab.adf │ ├── tic.adf │ ├── tol.adf │ └── prj.adf │ ├── testnull.csv │ ├── testpointzm.shp │ ├── testpointzm.shx │ ├── testshp │ ├── poly.dbf │ ├── poly.shp │ └── poly.shx │ ├── buggymultiline.shp │ ├── buggymultiline.shx │ ├── buggymultipoint.shp │ ├── buggymultipoint.shx │ ├── buggymultipoly.shp │ ├── buggymultipoly.shx │ ├── buggymultipoly2.shp │ ├── buggymultipoly2.shx │ ├── emptymultiline.shp │ ├── emptymultiline.shx │ ├── emptymultipoint.shp │ ├── emptymultipoint.shx │ ├── emptymultipoly.shp │ ├── emptymultipoly.shx │ ├── testcsvt.csvt │ ├── water_main_dist.dbf │ ├── bug2147_3R7D0889.000 │ ├── ili │ ├── encoding-test.itf │ ├── enum-test.itf │ ├── format-test.itf │ └── format-default.itf │ ├── lines25d.gen │ ├── poly_spatialite.sqlite │ ├── facility_surface_dd.dbf │ ├── oddname.csv │ ├── poly_spatialite4.sqlite │ ├── emptyshapefilewithsbn.sbn │ ├── emptyshapefilewithsbn.sbx │ ├── emptyshapefilewithsbn.shp │ ├── emptyshapefilewithsbn.shx │ ├── testgeometryelementpath.zip │ ├── linestring.geojson │ ├── multipoint.geojson │ ├── test.rec │ ├── D3607551_rd0s_1_sdts_truncated │ ├── TR01LE01.DDF │ ├── TR01NA01.DDF │ ├── TR01NO01.DDF │ └── TR01NP01.DDF │ ├── polygons.gen │ ├── small.mid │ ├── small_ntf.mid │ ├── csv_with_utf8_bom.csv │ ├── polygon.geojson │ ├── gjline.dbf │ ├── gjpoint.dbf │ ├── gjpoly.dbf │ ├── gjmultiline.dbf │ ├── gjmultipoint.dbf │ ├── gjmultipoly.dbf │ ├── testcsvt.csv │ ├── emptymultiline.dbf │ ├── emptymultipoint.dbf │ ├── emptymultipoly.dbf │ ├── multilinestring.geojson │ ├── poly_vrt.vrt │ ├── polygons25d.gen │ ├── circle.dxf │ ├── empty.kml │ ├── invalid3.vrt │ ├── departs.vrt │ ├── invalid2.vrt │ ├── testpoly.dbf │ ├── wkt.csv │ ├── poly_nonoptimized_vrt.vrt │ └── text.dxf ├── warp ├── tmp │ └── do-not-remove └── data │ ├── test3658.tif │ ├── white_nodata.tif │ ├── utmsmall_mode.tiff │ ├── utmsmall_near.tiff │ ├── utmsmall_average.tiff │ ├── utmsmall_blinear.tiff │ ├── utmsmall_cubic.tiff │ ├── utmsmall_lanczos.tiff │ ├── utmsmall-int16-neg.tiff │ ├── utmsmall_cubicspline.tiff │ ├── utmsmall_ds_lanczos.tiff │ ├── utmsmall_mode_int16.tiff │ ├── utmsmall_mode_int32.tiff │ ├── utmsmall-int16-neg_mode.tiff │ ├── utmsmall_average_float.tiff │ └── utmsmall_ds_cubicspline.tiff ├── pyscripts └── tmp │ └── do-not-remove ├── utilities ├── tmp │ └── do-not-remove ├── data │ ├── dataforogr2ogr21.csv │ ├── w_jpeg.tiff │ ├── duplicatedfields.csv │ ├── whiteblackred.tif │ ├── cutline.csv │ ├── contour_orientation.tif │ ├── pyramid_shaded_ref.tif │ ├── color_file.txt │ ├── Fields.csv │ └── color_file.cpt └── ref_data │ ├── grid_range.tif │ ├── grid_avdist.tif │ ├── grid_average.tif │ ├── grid_invdist.tif │ ├── grid_maximum.tif │ ├── grid_minimum.tif │ ├── testgdalwarp11.tif │ ├── testgdalwarp12.tif │ ├── testgdalwarp13.tif │ ├── testgdalwarp14.tif │ ├── grid_count_300_300.tif │ ├── grid_count_70_70.tif │ ├── grid_avdist_150_150.tif │ ├── grid_average_190_190.tif │ ├── grid_maximum_100_100.tif │ ├── grid_range_90_90_8p.tif │ ├── grid_avdist_150_50_-15.tif │ ├── grid_average_300_100_40.tif │ ├── grid_average_90_90_8p.tif │ ├── grid_invdist_90_90_8p.tif │ └── grid_minimum_400_100_120.tif └── osr └── data ├── esri_gcs.csv.gz └── esri_pcs.csv.gz /gdal/VERSION: -------------------------------------------------------------------------------- 1 | 1.10.0 2 | -------------------------------------------------------------------------------- /gdal/html/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/alg/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/cpp/data/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/cpp/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gcore/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/BAND1.DAT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/BAND2.DAT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/BAND3.DAT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/BAND4.DAT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/BAND5.DAT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/BAND6.DAT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/BAND7.DAT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/ogr/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/warp/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gdal/swig/include/php/osr_php.i: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/caseinsensitive: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/envirpc.img: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /autotest/gdrivers/data/fake_snodas.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakeeir.img: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakemff.b0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /autotest/gdrivers/data/n0o0y867.0fn: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/n0o0y867.0fo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/n0o0y867.0fp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/w0y13a4t.012: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/pyscripts/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/utilities/tmp/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakefujibas.img: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakemfftiled.b0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /autotest/gdrivers/data/testenviclasses: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakecpgSIRC.img: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/L71230079_07920021111_B61.FST: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotest/ogr/data/testnumheader2.csv: -------------------------------------------------------------------------------- 1 | 1,2 2 | 1,2 3 | -------------------------------------------------------------------------------- /autotest/ogr/data/points.gen: -------------------------------------------------------------------------------- 1 | 1,2,49 2 | 2,3,50 3 | END 4 | -------------------------------------------------------------------------------- /autotest/ogr/data/testdatetime.csvt: -------------------------------------------------------------------------------- 1 | String,DateTime 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/testnumheader1.csv: -------------------------------------------------------------------------------- 1 | 1 - 2,2-3 2 | 1,2 3 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/ABC3X1UC/VAT.ADF: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /autotest/gdrivers/data/abc3x1/vat.adf: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /autotest/gdrivers/data/envistat: -------------------------------------------------------------------------------- 1 | 000000000000000000000000 2 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/wc_10m_CCCMA_A2a_2020_tmin_9.bil: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/points.avl: -------------------------------------------------------------------------------- 1 | 1 2 3.45 foo 2 | 2 3 4.56 bar 3 | -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoint.sbn: -------------------------------------------------------------------------------- 1 | Dummy file. Not really an index. 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoint.sbx: -------------------------------------------------------------------------------- 1 | Dummy file. Not really an index. 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/points25d.gen: -------------------------------------------------------------------------------- 1 | 1,2,49,10 2 | 2,3,50,20 3 | END 4 | -------------------------------------------------------------------------------- /autotest/ogr/data/testquoteheader2.csv: -------------------------------------------------------------------------------- 1 | test,2000,2000.12 2 | 1,2,3 3 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_broken_line.wkt: -------------------------------------------------------------------------------- 1 | LINESTRING(1 2 3,2 3 4) 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/8.wkt: -------------------------------------------------------------------------------- 1 | POINT (2.0012135167 5.9985312409)) 2 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/nitf59.nfw: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 0 4 | -1 5 | 150000 6 | 4500000 -------------------------------------------------------------------------------- /autotest/ogr/data/testquoteheader1.csv: -------------------------------------------------------------------------------- 1 | "test","2000","2000.12" 2 | 1,2,3 3 | -------------------------------------------------------------------------------- /gdal/data/epsg.wkt: -------------------------------------------------------------------------------- 1 | include esri_extra.wkt 2 | include cubewerx_extra.wkt 3 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/10.wkt: -------------------------------------------------------------------------------- 1 | POINT (1.001213526586071 6.998531214354443) 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_broken_point.wkt: -------------------------------------------------------------------------------- 1 | POINT (2.00121352 6.99853124 5.1) 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/9.wkt: -------------------------------------------------------------------------------- 1 | POINT (2.001213517040014 6.998531239878503) 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/vector/point/coor: -------------------------------------------------------------------------------- 1 | + -------------------------------------------------------------------------------- /autotest/ogr/data/testnull.csvt: -------------------------------------------------------------------------------- 1 | "Integer(5)","Real (10.7)","Integer","Real","String" 2 | -------------------------------------------------------------------------------- /gdal/frmts/bsb/Makefile.dist: -------------------------------------------------------------------------------- 1 | bsb2raw: 2 | $(CXX) $(CFLAGS) *.c *.cpp -o bsb2raw 3 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakegsc.gsc: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /autotest/gdrivers/data/small_grass_dataset/demomapset/cell_misc/elevation/range: -------------------------------------------------------------------------------- 1 | 0 0 3 27 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/PROJ_UNITS: -------------------------------------------------------------------------------- 1 | unit: degree 2 | units: degrees 3 | meters: 1.0 4 | -------------------------------------------------------------------------------- /gdal/data/gdalicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/data/gdalicon.png -------------------------------------------------------------------------------- /gdal/data/seed_2d.dgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/data/seed_2d.dgn -------------------------------------------------------------------------------- /gdal/data/seed_3d.dgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/data/seed_3d.dgn -------------------------------------------------------------------------------- /gdal/port/cpl_wince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/port/cpl_wince.h -------------------------------------------------------------------------------- /gdal/swig/python/osgeo/gdalnumeric.py: -------------------------------------------------------------------------------- 1 | from gdal_array import * 2 | from numpy import * 3 | -------------------------------------------------------------------------------- /autotest/alg/data/pat.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/alg/data/pat.tif -------------------------------------------------------------------------------- /autotest/cpp/data/n43.dt0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/n43.dt0 -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/vector/point/cidx: -------------------------------------------------------------------------------- 1 |  ) -------------------------------------------------------------------------------- /autotest/ogr/data/apt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/apt.dat -------------------------------------------------------------------------------- /autotest/ogr/data/asm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/asm.shp -------------------------------------------------------------------------------- /autotest/ogr/data/asm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/asm.shx -------------------------------------------------------------------------------- /autotest/ogr/data/awy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/awy.dat -------------------------------------------------------------------------------- /autotest/ogr/data/bna_for_gpx.bna: -------------------------------------------------------------------------------- 1 | "PID1","SID1","TID1",1 2 | 0,1 3 | "PID2","SID2",1 4 | 2,3 5 | -------------------------------------------------------------------------------- /autotest/ogr/data/fix.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/fix.dat -------------------------------------------------------------------------------- /autotest/ogr/data/test_eurostat.tsv: -------------------------------------------------------------------------------- 1 | unit,geo\time 2010 2011 2012 2 | NBR,FOO : 1 u 2.34 3 | -------------------------------------------------------------------------------- /autotest/utilities/data/dataforogr2ogr21.csv: -------------------------------------------------------------------------------- 1 | comment,name,WKT 2 | COMMENT,NAME,POINT(2 49) 3 | -------------------------------------------------------------------------------- /gdal/doc/grid/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/grid/ellipse.png -------------------------------------------------------------------------------- /gdal/frmts/idrisi/rdc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/idrisi/rdc.txt -------------------------------------------------------------------------------- /gdal/frmts/idrisi/rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/idrisi/rst.txt -------------------------------------------------------------------------------- /gdal/swig/csharp/gdal.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/swig/csharp/gdal.snk -------------------------------------------------------------------------------- /autotest/cpp/data/byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/byte.tif -------------------------------------------------------------------------------- /autotest/cpp/data/int16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/int16.tif -------------------------------------------------------------------------------- /autotest/cpp/data/int32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/int32.tif -------------------------------------------------------------------------------- /autotest/cpp/data/poly.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/poly.dbf -------------------------------------------------------------------------------- /autotest/cpp/data/poly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/poly.shp -------------------------------------------------------------------------------- /autotest/cpp/data/poly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/poly.shx -------------------------------------------------------------------------------- /autotest/gcore/data/rat.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/rat.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/srtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/srtm -------------------------------------------------------------------------------- /autotest/gdrivers/data/testtil.imd: -------------------------------------------------------------------------------- 1 | numRows = 20 2 | numColumns = 20 3 | bitsPerPixel = 8 4 | END; 5 | -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/vector/point/dbln: -------------------------------------------------------------------------------- 1 | 1 point cat $GISDBASE/$LOCATION_NAME/$MAPSET/dbf/ dbf 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/empty.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/empty.dbf -------------------------------------------------------------------------------- /autotest/ogr/data/empty.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/empty.mdb -------------------------------------------------------------------------------- /autotest/ogr/data/empty.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/empty.shp -------------------------------------------------------------------------------- /autotest/ogr/data/empty.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/empty.shx -------------------------------------------------------------------------------- /autotest/ogr/data/flat.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/flat.dbf -------------------------------------------------------------------------------- /autotest/ogr/data/lines.vct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/lines.vct -------------------------------------------------------------------------------- /autotest/ogr/data/point.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Point", 3 | "coordinates": [100.0, 0.0] 4 | } -------------------------------------------------------------------------------- /autotest/ogr/data/poly.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/poly.dbf -------------------------------------------------------------------------------- /autotest/ogr/data/poly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/poly.shp -------------------------------------------------------------------------------- /autotest/ogr/data/poly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/poly.shx -------------------------------------------------------------------------------- /autotest/ogr/data/poly.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/poly.zip -------------------------------------------------------------------------------- /autotest/ogr/data/test.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/test.ods -------------------------------------------------------------------------------- /autotest/ogr/data/test.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/test.pbf -------------------------------------------------------------------------------- /autotest/ogr/data/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/test.xlsx -------------------------------------------------------------------------------- /gdal/doc/grid/gridding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/grid/gridding.png -------------------------------------------------------------------------------- /gdal/doc/images/i3-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/i3-logo.jpg -------------------------------------------------------------------------------- /gdal/doc/ogr/style_pen1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/ogr/style_pen1.gif -------------------------------------------------------------------------------- /gdal/doc/ogr/style_pen2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/ogr/style_pen2.gif -------------------------------------------------------------------------------- /gdal/doc/ogr/style_pen3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/ogr/style_pen3.gif -------------------------------------------------------------------------------- /gdal/port/cpl_win32ce_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/port/cpl_win32ce_api.h -------------------------------------------------------------------------------- /autotest/cpp/data/cfloat32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/cfloat32.tif -------------------------------------------------------------------------------- /autotest/cpp/data/cfloat64.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/cfloat64.tif -------------------------------------------------------------------------------- /autotest/cpp/data/cint16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/cint16.tif -------------------------------------------------------------------------------- /autotest/cpp/data/cint32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/cint32.tif -------------------------------------------------------------------------------- /autotest/cpp/data/float32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/float32.tif -------------------------------------------------------------------------------- /autotest/cpp/data/float64.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/float64.tif -------------------------------------------------------------------------------- /autotest/cpp/data/uint16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/uint16.tif -------------------------------------------------------------------------------- /autotest/cpp/data/uint32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/uint32.tif -------------------------------------------------------------------------------- /autotest/cpp/data/utmsmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/utmsmall.tif -------------------------------------------------------------------------------- /autotest/gcore/data/1bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/1bit.bmp -------------------------------------------------------------------------------- /autotest/gcore/data/byte.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.img -------------------------------------------------------------------------------- /autotest/gcore/data/byte.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.pnm -------------------------------------------------------------------------------- /autotest/gcore/data/byte.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.raw -------------------------------------------------------------------------------- /autotest/gcore/data/byte.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.tar -------------------------------------------------------------------------------- /autotest/gcore/data/byte.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.tgz -------------------------------------------------------------------------------- /autotest/gcore/data/byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.tif -------------------------------------------------------------------------------- /autotest/gcore/data/byte_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/byte_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/cielab.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cielab.tif -------------------------------------------------------------------------------- /autotest/gcore/data/cint16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cint16.tif -------------------------------------------------------------------------------- /autotest/gcore/data/cint32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cint32.tif -------------------------------------------------------------------------------- /autotest/gcore/data/f2r23.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/f2r23.aux -------------------------------------------------------------------------------- /autotest/gcore/data/f2r23.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/f2r23.tif -------------------------------------------------------------------------------- /autotest/gcore/data/int10.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int10.tif -------------------------------------------------------------------------------- /autotest/gcore/data/int12.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int12.tif -------------------------------------------------------------------------------- /autotest/gcore/data/int16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int16.img -------------------------------------------------------------------------------- /autotest/gcore/data/int16.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int16.raw -------------------------------------------------------------------------------- /autotest/gcore/data/int16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int16.tif -------------------------------------------------------------------------------- /autotest/gcore/data/int24.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int24.tif -------------------------------------------------------------------------------- /autotest/gcore/data/int32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int32.img -------------------------------------------------------------------------------- /autotest/gcore/data/int32.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int32.raw -------------------------------------------------------------------------------- /autotest/gcore/data/int32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int32.tif -------------------------------------------------------------------------------- /autotest/gcore/data/nan32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/nan32.tif -------------------------------------------------------------------------------- /autotest/gcore/data/nan64.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/nan64.tif -------------------------------------------------------------------------------- /autotest/gcore/data/rgba.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/rgba.tif -------------------------------------------------------------------------------- /autotest/gcore/data/sasha.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/sasha.aux -------------------------------------------------------------------------------- /autotest/gcore/data/sasha.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/sasha.tif -------------------------------------------------------------------------------- /autotest/gcore/data/sstgeo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/sstgeo.tif -------------------------------------------------------------------------------- /autotest/gcore/data/uint16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint16.img -------------------------------------------------------------------------------- /autotest/gcore/data/uint16.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint16.pnm -------------------------------------------------------------------------------- /autotest/gcore/data/uint16.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint16.raw -------------------------------------------------------------------------------- /autotest/gcore/data/uint16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint16.tif -------------------------------------------------------------------------------- /autotest/gcore/data/uint32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint32.img -------------------------------------------------------------------------------- /autotest/gcore/data/uint32.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint32.raw -------------------------------------------------------------------------------- /autotest/gcore/data/uint32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint32.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/A.TOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/A.TOC -------------------------------------------------------------------------------- /autotest/gdrivers/data/aea.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/aea.dat -------------------------------------------------------------------------------- /autotest/gdrivers/data/ers_dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ers_dem -------------------------------------------------------------------------------- /autotest/gdrivers/data/int.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/int.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/jrc.ecw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/jrc.ecw -------------------------------------------------------------------------------- /autotest/gdrivers/data/ldd.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ldd.map -------------------------------------------------------------------------------- /autotest/gdrivers/data/ll.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ll.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/n43.dt0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/n43.dt0 -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgb.ntf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgb.ntf -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/u8be.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/u8be.h5 -------------------------------------------------------------------------------- /autotest/gdrivers/data/utm.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/utm.pix -------------------------------------------------------------------------------- /autotest/gdrivers/data/utm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/utm.tif -------------------------------------------------------------------------------- /autotest/ogr/data/1B5X02NE.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/1B5X02NE.000 -------------------------------------------------------------------------------- /autotest/ogr/data/Stacks.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/Stacks.dbf -------------------------------------------------------------------------------- /autotest/ogr/data/Stacks.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/Stacks.shp -------------------------------------------------------------------------------- /autotest/ogr/data/Stacks.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/Stacks.shx -------------------------------------------------------------------------------- /autotest/ogr/data/assorted.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/assorted.dxf -------------------------------------------------------------------------------- /autotest/ogr/data/bigoffset.dbf: -------------------------------------------------------------------------------- 1 | _A WFIDN 0 -------------------------------------------------------------------------------- /autotest/ogr/data/bug1526.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/bug1526.000 -------------------------------------------------------------------------------- /autotest/ogr/data/bylany.vfk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/bylany.vfk -------------------------------------------------------------------------------- /autotest/ogr/data/can_caps.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/can_caps.shp -------------------------------------------------------------------------------- /autotest/ogr/data/can_caps.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/can_caps.shx -------------------------------------------------------------------------------- /autotest/ogr/data/departs.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/departs.dbf -------------------------------------------------------------------------------- /autotest/ogr/data/departs.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/departs.shp -------------------------------------------------------------------------------- /autotest/ogr/data/departs.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/departs.shx -------------------------------------------------------------------------------- /autotest/ogr/data/gjline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjline.shp -------------------------------------------------------------------------------- /autotest/ogr/data/gjline.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjline.shx -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoint.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjpoint.shp -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoint.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjpoint.shx -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjpoly.shp -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjpoly.shx -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc.dir -------------------------------------------------------------------------------- /autotest/ogr/data/points.vct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/points.vct -------------------------------------------------------------------------------- /autotest/ogr/data/poly.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/poly.tar.gz -------------------------------------------------------------------------------- /autotest/ogr/data/polygons.vct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/polygons.vct -------------------------------------------------------------------------------- /autotest/ogr/data/test3356.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/test3356.shp -------------------------------------------------------------------------------- /autotest/ogr/data/test3356.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/test3356.shx -------------------------------------------------------------------------------- /autotest/ogr/data/testpoly.ind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpoly.ind -------------------------------------------------------------------------------- /autotest/ogr/data/testpoly.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpoly.qix -------------------------------------------------------------------------------- /autotest/ogr/data/testpoly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpoly.shp -------------------------------------------------------------------------------- /autotest/ogr/data/testpoly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpoly.shx -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_broken_polygon.wkt: -------------------------------------------------------------------------------- 1 | POLYGON ((0 0 1,1 0 1,1 1 1,0 1 1),(0 0 2,1 0 2,1 1 2,0 1 2)) -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_odd_collection.wkt_hidden: -------------------------------------------------------------------------------- 1 | GEOMETRYCOLLECTION(POINT(1 2 0),POINT(2 1 2)) 2 | -------------------------------------------------------------------------------- /gdal/data/cubewerx_extra.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/data/cubewerx_extra.wkt -------------------------------------------------------------------------------- /gdal/data/s57attributes_iw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/data/s57attributes_iw.csv -------------------------------------------------------------------------------- /gdal/data/s57expectedinput.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/data/s57expectedinput.csv -------------------------------------------------------------------------------- /gdal/doc/images/act-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/act-logo.png -------------------------------------------------------------------------------- /gdal/doc/images/foss4g09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/foss4g09.png -------------------------------------------------------------------------------- /gdal/doc/images/safe-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/safe-logo.png -------------------------------------------------------------------------------- /gdal/doc/images/src-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/src-logo.png -------------------------------------------------------------------------------- /gdal/frmts/rik/frmt_rik.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/rik/frmt_rik.html -------------------------------------------------------------------------------- /gdal/port/cpl_win32ce_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/port/cpl_win32ce_api.cpp -------------------------------------------------------------------------------- /autotest/cpp/data/recode-rus.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/cpp/data/recode-rus.dat -------------------------------------------------------------------------------- /autotest/gcore/data/4bit_pal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/4bit_pal.bmp -------------------------------------------------------------------------------- /autotest/gcore/data/8bit_pal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/8bit_pal.bmp -------------------------------------------------------------------------------- /autotest/gcore/data/bug4468.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/bug4468.tif -------------------------------------------------------------------------------- /autotest/gcore/data/byte.tif.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.tif.gz -------------------------------------------------------------------------------- /autotest/gcore/data/byte.tif.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte.tif.zip -------------------------------------------------------------------------------- /autotest/gcore/data/cfloat32.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cfloat32.raw -------------------------------------------------------------------------------- /autotest/gcore/data/cfloat32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cfloat32.tif -------------------------------------------------------------------------------- /autotest/gcore/data/cfloat64.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cfloat64.raw -------------------------------------------------------------------------------- /autotest/gcore/data/cfloat64.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cfloat64.tif -------------------------------------------------------------------------------- /autotest/gcore/data/cint_sar.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/cint_sar.tif -------------------------------------------------------------------------------- /autotest/gcore/data/float16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float16.tif -------------------------------------------------------------------------------- /autotest/gcore/data/float24.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float24.tif -------------------------------------------------------------------------------- /autotest/gcore/data/float32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float32.img -------------------------------------------------------------------------------- /autotest/gcore/data/float32.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float32.raw -------------------------------------------------------------------------------- /autotest/gcore/data/float32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float32.tif -------------------------------------------------------------------------------- /autotest/gcore/data/float64.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float64.img -------------------------------------------------------------------------------- /autotest/gcore/data/float64.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float64.raw -------------------------------------------------------------------------------- /autotest/gcore/data/float64.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float64.tif -------------------------------------------------------------------------------- /autotest/gcore/data/int16_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int16_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/int16_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int16_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/int32_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int32_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/int32_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/int32_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/mfftest.r00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/mfftest.r00 -------------------------------------------------------------------------------- /autotest/gcore/data/minfloat.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/minfloat.tif -------------------------------------------------------------------------------- /autotest/gcore/data/rgbsmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/rgbsmall.tif -------------------------------------------------------------------------------- /autotest/gcore/data/slim_g4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/slim_g4.tif -------------------------------------------------------------------------------- /autotest/gcore/data/small_ov.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/small_ov.img -------------------------------------------------------------------------------- /autotest/gcore/data/small_ov.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/small_ov.rrd -------------------------------------------------------------------------------- /autotest/gcore/data/test_gf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test_gf.tif -------------------------------------------------------------------------------- /autotest/gcore/data/testzip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/testzip.zip -------------------------------------------------------------------------------- /autotest/gcore/data/uint16_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint16_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/uint16_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint16_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/uint32_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint32_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/uint32_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/uint32_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/utmsmall.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/utmsmall.img -------------------------------------------------------------------------------- /autotest/gcore/data/utmsmall.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/utmsmall.raw -------------------------------------------------------------------------------- /autotest/gcore/data/utmsmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/utmsmall.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/bogus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/bogus.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/bug636.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/bug636.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte.pgm -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte.rst -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte.rsw -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte.sgi -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/dem10.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/dem10.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/float.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/float.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/gmt_1.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/gmt_1.grd -------------------------------------------------------------------------------- /autotest/gdrivers/data/groups.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/groups.h5 -------------------------------------------------------------------------------- /autotest/gdrivers/data/int16.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/int16.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/int16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/int16.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/int32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/int32.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/real.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/real.rst -------------------------------------------------------------------------------- /autotest/gdrivers/data/s4103.blx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/s4103.blx -------------------------------------------------------------------------------- /autotest/gdrivers/data/s4103.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/s4103.xlb -------------------------------------------------------------------------------- /autotest/gdrivers/data/small.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/small.raw -------------------------------------------------------------------------------- /autotest/gdrivers/data/small_grass_dataset/PERMANENT/PROJ_UNITS: -------------------------------------------------------------------------------- 1 | unit: meter 2 | units: meters 3 | meters: 1.0 4 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/spill.ige: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/spill.ige -------------------------------------------------------------------------------- /autotest/gdrivers/data/spill.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/spill.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/spill.rde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/spill.rde -------------------------------------------------------------------------------- /autotest/gdrivers/data/spill.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/spill.rrd -------------------------------------------------------------------------------- /autotest/gdrivers/data/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/test.png -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm.tif -------------------------------------------------------------------------------- /autotest/ogr/data/apt810/apt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/apt810/apt.dat -------------------------------------------------------------------------------- /autotest/ogr/data/bigoffset.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/bigoffset.shp -------------------------------------------------------------------------------- /autotest/ogr/data/bigoffset.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/bigoffset.shx -------------------------------------------------------------------------------- /autotest/ogr/data/buggypoint.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggypoint.shp -------------------------------------------------------------------------------- /autotest/ogr/data/buggypoint.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggypoint.shx -------------------------------------------------------------------------------- /autotest/ogr/data/inlineStr.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/inlineStr.xlsx -------------------------------------------------------------------------------- /autotest/ogr/data/lines.gen: -------------------------------------------------------------------------------- 1 | 1 2 | 2,49 3 | 3,50 4 | END 5 | 2 6 | 3,50 7 | 2,49 8 | END 9 | END 10 | -------------------------------------------------------------------------------- /autotest/ogr/data/multipatch.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/multipatch.shp -------------------------------------------------------------------------------- /autotest/ogr/data/multipatch.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/multipatch.shx -------------------------------------------------------------------------------- /autotest/ogr/data/samplemap.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/samplemap.gtm -------------------------------------------------------------------------------- /autotest/ogr/data/smalltest.dgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/smalltest.dgn -------------------------------------------------------------------------------- /autotest/ogr/data/testpointm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpointm.shp -------------------------------------------------------------------------------- /autotest/ogr/data/testpointm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpointm.shx -------------------------------------------------------------------------------- /autotest/ogr/data/testsegy.segy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testsegy.segy -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/1.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/1.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/10.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/10.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/11.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/11.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/2.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/2.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/3.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/4.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/4.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/5.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/5.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/6.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/6.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/7.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/7.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/8.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/8.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/9.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/9.wkb -------------------------------------------------------------------------------- /autotest/warp/data/test3658.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/test3658.tif -------------------------------------------------------------------------------- /gdal/doc/images/cadcorp_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/cadcorp_logo.jpg -------------------------------------------------------------------------------- /gdal/doc/images/ingres-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/ingres-logo.png -------------------------------------------------------------------------------- /autotest/gcore/data/byte_point.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte_point.tif -------------------------------------------------------------------------------- /autotest/gcore/data/empty1bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/empty1bit.tif -------------------------------------------------------------------------------- /autotest/gcore/data/float32_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float32_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/float32_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float32_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/float64_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float64_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/float64_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float64_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/geomatrix.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/geomatrix.tif -------------------------------------------------------------------------------- /autotest/gcore/data/nodata_byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/nodata_byte.tif -------------------------------------------------------------------------------- /autotest/gcore/data/oddsize1bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/oddsize1bit.tif -------------------------------------------------------------------------------- /autotest/gcore/data/spaf27_epsg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/spaf27_epsg.tif -------------------------------------------------------------------------------- /autotest/gcore/data/ticket3019.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/ticket3019.tif -------------------------------------------------------------------------------- /autotest/gcore/data/twoimages.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/twoimages.tif -------------------------------------------------------------------------------- /autotest/gcore/data/utmsmall_2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/utmsmall_2.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/utmsmall_3.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/utmsmall_3.hdf -------------------------------------------------------------------------------- /autotest/gcore/data/zackthecat.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/zackthecat.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/251_head.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/251_head.dat -------------------------------------------------------------------------------- /autotest/gdrivers/data/251_tail.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/251_tail.dat -------------------------------------------------------------------------------- /autotest/gdrivers/data/87test.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/87test.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/8bit_pal.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/8bit_pal.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/8bit_rgb.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/8bit_rgb.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/CSK_DGM.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/CSK_DGM.h5 -------------------------------------------------------------------------------- /autotest/gdrivers/data/CSK_GEC.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/CSK_GEC.h5 -------------------------------------------------------------------------------- /autotest/gdrivers/data/DWI01012.AFC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/DWI01012.AFC -------------------------------------------------------------------------------- /autotest/gdrivers/data/F0116231.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/F0116231.aux -------------------------------------------------------------------------------- /autotest/gdrivers/data/LDEM_4.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/LDEM_4.IMG -------------------------------------------------------------------------------- /autotest/gdrivers/data/RPFTOC01.ON2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/RPFTOC01.ON2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/U_1050A.NTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/U_1050A.NTF -------------------------------------------------------------------------------- /autotest/gdrivers/data/U_4017A.NTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/U_4017A.NTF -------------------------------------------------------------------------------- /autotest/gdrivers/data/albania.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/albania.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/bug3246.grb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/bug3246.grb -------------------------------------------------------------------------------- /autotest/gdrivers/data/bug407.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/bug407.gif -------------------------------------------------------------------------------- /autotest/gdrivers/data/bug_1109.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/bug_1109.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte-lzw.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte-lzw.rsw -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte.jp2.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte.jp2.gz -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_jpg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_jpg.zip -------------------------------------------------------------------------------- /autotest/gdrivers/data/bytemff.b00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/bytemff.b00 -------------------------------------------------------------------------------- /autotest/gdrivers/data/cf-bug636.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/cf-bug636.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/cf_geog.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/cf_geog.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/cf_lcc1sp.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/cf_lcc1sp.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/cf_lcc2sp.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/cf_lcc2sp.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/ds.mint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ds.mint.bin -------------------------------------------------------------------------------- /autotest/gdrivers/data/ehdr10.bil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ehdr10.bil -------------------------------------------------------------------------------- /autotest/gdrivers/data/ehdr11.flt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ehdr11.flt -------------------------------------------------------------------------------- /autotest/gdrivers/data/envistat.sta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/envistat.sta -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakebig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fakebig.gif -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakelan.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fakelan.lan -------------------------------------------------------------------------------- /autotest/gdrivers/data/fg118-91.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fg118-91.aux -------------------------------------------------------------------------------- /autotest/gdrivers/data/float32.bil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/float32.bil -------------------------------------------------------------------------------- /autotest/gdrivers/data/float32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/float32.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/float64.mtw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/float64.mtw -------------------------------------------------------------------------------- /autotest/gdrivers/data/float64.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/float64.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt02.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt02.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt09.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt09.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt09t.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt09t.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt10.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt10.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt24.cit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt24.cit -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt27.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt27.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt28.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt28.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt29.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt29.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt30.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt30.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/frmt31.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/frmt31.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/hydroc1.gtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/hydroc1.gtx -------------------------------------------------------------------------------- /autotest/gdrivers/data/i8u_c_i.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/i8u_c_i.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/i_3034c.ntf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/i_3034c.ntf -------------------------------------------------------------------------------- /autotest/gdrivers/data/i_3034f.ntf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/i_3034f.ntf -------------------------------------------------------------------------------- /autotest/gdrivers/data/iristest.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/iristest.dat -------------------------------------------------------------------------------- /autotest/gdrivers/data/masked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/masked.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/mercator.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/mercator.sid -------------------------------------------------------------------------------- /autotest/gdrivers/data/metadata.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/metadata.h5 -------------------------------------------------------------------------------- /autotest/gdrivers/data/nc_vars.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/nc_vars.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/netcdf-4d.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/netcdf-4d.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/ns3034d.nsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ns3034d.nsf -------------------------------------------------------------------------------- /autotest/gdrivers/data/nwt_grc.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/nwt_grc.grc -------------------------------------------------------------------------------- /autotest/gdrivers/data/nwt_grd.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/nwt_grd.grd -------------------------------------------------------------------------------- /autotest/gdrivers/data/r_test.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/r_test.rdb -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgba16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgba16.png -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall.ppm -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall.rsw -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/rset.ntf.r0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rset.ntf.r0 -------------------------------------------------------------------------------- /autotest/gdrivers/data/rset.ntf.r1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rset.ntf.r1 -------------------------------------------------------------------------------- /autotest/gdrivers/data/rset.ntf.r2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rset.ntf.r2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/small16.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/small16.raw -------------------------------------------------------------------------------- /autotest/gdrivers/data/sombrero.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/sombrero.grd -------------------------------------------------------------------------------- /autotest/gdrivers/data/spif83.ecw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/spif83.ecw -------------------------------------------------------------------------------- /autotest/gdrivers/data/tbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/tbbn2c16.png -------------------------------------------------------------------------------- /autotest/gdrivers/data/ter6test.ter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ter6test.ter -------------------------------------------------------------------------------- /autotest/gdrivers/data/testtest.on9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/testtest.on9 -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm-2x2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm-2x2.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm-nan.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm-nan.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm-nc2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm-nc2.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm-nc4.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm-nc4.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm-nc4c.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm-nc4c.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm-nc4z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm-nc4z.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/uint32.cot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/uint32.cot -------------------------------------------------------------------------------- /autotest/gdrivers/data/vophead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/vophead.jpg -------------------------------------------------------------------------------- /autotest/ogr/data/base-64.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/base-64.osm.pbf -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultiline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjmultiline.shp -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultiline.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjmultiline.shx -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultipoint.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjmultipoint.shp -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultipoint.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjmultipoint.shx -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultipoly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjmultipoly.shp -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultipoly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/gjmultipoly.shx -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0000.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc0000.nit -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0001.dat: -------------------------------------------------------------------------------- 1 | ../testavc/bnd.adf -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0001.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc0001.nit -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0002.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc0002.dat -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0002.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc0002.nit -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0003.dat: -------------------------------------------------------------------------------- 1 | ../testavc/tic.adf -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0003.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc0003.nit -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0004.dat: -------------------------------------------------------------------------------- 1 | ../testavc2/bnd.adf -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0004.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc0004.nit -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0005.dat: -------------------------------------------------------------------------------- 1 | ../testavc2/tic.adf -------------------------------------------------------------------------------- /autotest/ogr/data/info/arc0005.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/info/arc0005.nit -------------------------------------------------------------------------------- /autotest/ogr/data/multipatch.dbf: -------------------------------------------------------------------------------- 1 | bA WIDN 2 | 1 -------------------------------------------------------------------------------- /autotest/ogr/data/nan.dbf: -------------------------------------------------------------------------------- 1 | _AWrealN nan -------------------------------------------------------------------------------- /autotest/ogr/data/test972000xp.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/test972000xp.xls -------------------------------------------------------------------------------- /autotest/ogr/data/test_kspread.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/test_kspread.ods -------------------------------------------------------------------------------- /autotest/ogr/data/testavc/arc.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testavc/arc.adf -------------------------------------------------------------------------------- /autotest/ogr/data/testavc/arx.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testavc/arx.adf -------------------------------------------------------------------------------- /autotest/ogr/data/testavc/bnd.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testavc/bnd.adf -------------------------------------------------------------------------------- /autotest/ogr/data/testavc/lab.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testavc/lab.adf -------------------------------------------------------------------------------- /autotest/ogr/data/testavc/tic.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testavc/tic.adf -------------------------------------------------------------------------------- /autotest/ogr/data/testavc/tol.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testavc/tol.adf -------------------------------------------------------------------------------- /autotest/ogr/data/testnull.csv: -------------------------------------------------------------------------------- 1 | "INTCOL","REALCOL","INTCOL2","REALCOL2","STRINGCOL" 2 | 12,5.7,"foo","foo","foo" 3 | -------------------------------------------------------------------------------- /autotest/ogr/data/testpointzm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpointzm.shp -------------------------------------------------------------------------------- /autotest/ogr/data/testpointzm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testpointzm.shx -------------------------------------------------------------------------------- /autotest/ogr/data/testshp/poly.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testshp/poly.dbf -------------------------------------------------------------------------------- /autotest/ogr/data/testshp/poly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testshp/poly.shp -------------------------------------------------------------------------------- /autotest/ogr/data/testshp/poly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testshp/poly.shx -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_1.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/3d_1.wkb -------------------------------------------------------------------------------- /autotest/osr/data/esri_gcs.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/osr/data/esri_gcs.csv.gz -------------------------------------------------------------------------------- /autotest/osr/data/esri_pcs.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/osr/data/esri_pcs.csv.gz -------------------------------------------------------------------------------- /autotest/utilities/data/w_jpeg.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/data/w_jpeg.tiff -------------------------------------------------------------------------------- /autotest/warp/data/white_nodata.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/white_nodata.tif -------------------------------------------------------------------------------- /gdal/doc/images/waypoint_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/images/waypoint_logo.png -------------------------------------------------------------------------------- /gdal/doc/ogr/style_textanchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/doc/ogr/style_textanchor.gif -------------------------------------------------------------------------------- /gdal/frmts/jpipkak/components.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/jpipkak/components.PNG -------------------------------------------------------------------------------- /gdal/frmts/jpipkak/gdalsequence.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/jpipkak/gdalsequence.PNG -------------------------------------------------------------------------------- /gdal/frmts/jpipkak/jpipsequence.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/jpipkak/jpipsequence.PNG -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/ili/iom/iom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/ogr/ogrsf_frmts/ili/iom/iom.h -------------------------------------------------------------------------------- /gdal/submake.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd %1 3 | nmake /NOLOGO /f makefile.vc %2 4 | if ERRORLEVEL 1 exit 1 5 | cd .. 6 | -------------------------------------------------------------------------------- /gdal/swig/java/test_data/byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/swig/java/test_data/byte.tif -------------------------------------------------------------------------------- /gdal/swig/java/test_data/poly.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/swig/java/test_data/poly.dbf -------------------------------------------------------------------------------- /gdal/swig/java/test_data/poly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/swig/java/test_data/poly.shp -------------------------------------------------------------------------------- /gdal/swig/java/test_data/poly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/swig/java/test_data/poly.shx -------------------------------------------------------------------------------- /autotest/gcore/data/contig_strip.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/contig_strip.tif -------------------------------------------------------------------------------- /autotest/gcore/data/contig_tiled.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/contig_tiled.tif -------------------------------------------------------------------------------- /autotest/gcore/data/exif_and_gps.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/exif_and_gps.tif -------------------------------------------------------------------------------- /autotest/gcore/data/nan32_nodata.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/nan32_nodata.tif -------------------------------------------------------------------------------- /autotest/gcore/data/rgbsmall_cmyk.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/rgbsmall_cmyk.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/abc3x1/hdr.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/abc3x1/hdr.adf -------------------------------------------------------------------------------- /autotest/gdrivers/data/abc3x1/sta.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/abc3x1/sta.adf -------------------------------------------------------------------------------- /autotest/gdrivers/data/big-endian.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/big-endian.rsw -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_elas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_elas.bin -------------------------------------------------------------------------------- /autotest/gdrivers/data/fake_nsif.ntf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fake_nsif.ntf -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakedipex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fakedipex.dat -------------------------------------------------------------------------------- /autotest/gdrivers/data/gsg_binary.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/gsg_binary.grd -------------------------------------------------------------------------------- /autotest/gdrivers/data/hdifftst2.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/hdifftst2.hdf -------------------------------------------------------------------------------- /autotest/gdrivers/data/int16-nogeo.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/int16-nogeo.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/melb-small.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/melb-small.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/n43_wgs72.dt0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/n43_wgs72.dt0 -------------------------------------------------------------------------------- /autotest/gdrivers/data/orog_CRCM1.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/orog_CRCM1.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/orog_CRCM2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/orog_CRCM2.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall.webp -------------------------------------------------------------------------------- /autotest/gdrivers/data/small1bit.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/small1bit.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/small1bit.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/small1bit.rrd -------------------------------------------------------------------------------- /autotest/gdrivers/data/tm4628_96.bil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/tm4628_96.bil -------------------------------------------------------------------------------- /autotest/gdrivers/data/trmm-wgs84.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/trmm-wgs84.tif -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/README.txt: -------------------------------------------------------------------------------- 1 | This is an extract from the demolocation/PERMANENT dataset from the GRASS repository. -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultiline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultiline.shp -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultiline.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultiline.shx -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultipoint.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultipoint.shp -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultipoint.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultipoint.shx -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultipoly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultipoly.shp -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultipoly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultipoly.shx -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultipoly2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultipoly2.shp -------------------------------------------------------------------------------- /autotest/ogr/data/buggymultipoly2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/buggymultipoly2.shx -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultiline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptymultiline.shp -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultiline.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptymultiline.shx -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultipoint.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptymultipoint.shp -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultipoint.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptymultipoint.shx -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultipoly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptymultipoly.shp -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultipoly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptymultipoly.shx -------------------------------------------------------------------------------- /autotest/ogr/data/testcsvt.csvt: -------------------------------------------------------------------------------- 1 | "Integer(5)","Real (10.7)","String(15)","Integer","Real","String","DateTime","Date","Time" -------------------------------------------------------------------------------- /autotest/ogr/data/water_main_dist.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/water_main_dist.dbf -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_mode.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_mode.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_near.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_near.tiff -------------------------------------------------------------------------------- /gdal/frmts/jpipkak/frmt_jpipkak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/jpipkak/frmt_jpipkak.html -------------------------------------------------------------------------------- /autotest/gcore/data/2bit_compressed.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/2bit_compressed.img -------------------------------------------------------------------------------- /autotest/gcore/data/float32_minwhite.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/float32_minwhite.tif -------------------------------------------------------------------------------- /autotest/gcore/data/oddsize_1bit2b.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/oddsize_1bit2b.tif -------------------------------------------------------------------------------- /autotest/gcore/data/onefileinsubdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/onefileinsubdir.zip -------------------------------------------------------------------------------- /autotest/gcore/data/separate_tiled.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/separate_tiled.tif -------------------------------------------------------------------------------- /autotest/gcore/data/seperate_strip.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/seperate_strip.tif -------------------------------------------------------------------------------- /autotest/gcore/data/spaf27_correct.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/spaf27_correct.tif -------------------------------------------------------------------------------- /autotest/gcore/data/stefan_full_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stefan_full_rgba.png -------------------------------------------------------------------------------- /autotest/gcore/data/stefan_full_rgba.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stefan_full_rgba.tif -------------------------------------------------------------------------------- /autotest/gcore/data/twofileinsubdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/twofileinsubdir.zip -------------------------------------------------------------------------------- /autotest/gcore/data/ycbcr_with_mask.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/ycbcr_with_mask.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/251_rasterdms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/251_rasterdms.dat -------------------------------------------------------------------------------- /autotest/gdrivers/data/4byteFloat.sdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/4byteFloat.sdat -------------------------------------------------------------------------------- /autotest/gdrivers/data/ABC3X1UC/HDR.ADF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ABC3X1UC/HDR.ADF -------------------------------------------------------------------------------- /autotest/gdrivers/data/ABC3X1UC/STA.ADF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ABC3X1UC/STA.ADF -------------------------------------------------------------------------------- /autotest/gdrivers/data/IMAGERY-75K.L-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/IMAGERY-75K.L-3 -------------------------------------------------------------------------------- /autotest/gdrivers/data/LanduseSmall.rp#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/LanduseSmall.rp# -------------------------------------------------------------------------------- /autotest/gdrivers/data/LanduseSmall.tb#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/LanduseSmall.tb# -------------------------------------------------------------------------------- /autotest/gdrivers/data/abc3x1/dblbnd.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/abc3x1/dblbnd.adf -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_scanline.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_scanline.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_signed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_signed.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_with_xmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_with_xmp.gif -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_with_xmp.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_with_xmp.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_with_xmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_with_xmp.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_with_xmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_with_xmp.png -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_with_xmp.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_with_xmp.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/cf_aea2sp_invf.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/cf_aea2sp_invf.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/cf_no_sphere.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/cf_no_sphere.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakelan4bit.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fakelan4bit.lan -------------------------------------------------------------------------------- /autotest/gdrivers/data/gsg_7binary.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/gsg_7binary.grd -------------------------------------------------------------------------------- /autotest/gdrivers/data/idat_broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/idat_broken.png -------------------------------------------------------------------------------- /autotest/gdrivers/data/mercator_new.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/mercator_new.sid -------------------------------------------------------------------------------- /autotest/gdrivers/data/n43_bad_crc.dt0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/n43_bad_crc.dt0 -------------------------------------------------------------------------------- /autotest/gdrivers/data/rasterlite.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rasterlite.sqlite -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgb16_ecwsdk.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgb16_ecwsdk.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgb_ntf_cmyk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgb_ntf_cmyk.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall-lzw.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall-lzw.rsw -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall_rgb.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/scale_offset.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/scale_offset.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/small_200ppcm.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/small_200ppcm.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/small_world.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/small_world.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/test_iso32000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/test_iso32000.pdf -------------------------------------------------------------------------------- /autotest/gdrivers/data/test_ogc_bp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/test_ogc_bp.pdf -------------------------------------------------------------------------------- /autotest/gdrivers/data/vlstr_metadata.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/vlstr_metadata.h5 -------------------------------------------------------------------------------- /autotest/gdrivers/data/world_l1.mbtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/world_l1.mbtiles -------------------------------------------------------------------------------- /autotest/ogr/data/bug2147_3R7D0889.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/bug2147_3R7D0889.000 -------------------------------------------------------------------------------- /autotest/ogr/data/ili/encoding-test.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/ili/encoding-test.itf -------------------------------------------------------------------------------- /autotest/ogr/data/lines25d.gen: -------------------------------------------------------------------------------- 1 | 1 2 | 2,49,10 3 | 3,50,10 4 | END 5 | 2 6 | 3,50,20 7 | 2,49,20 8 | END 9 | END 10 | -------------------------------------------------------------------------------- /autotest/ogr/data/poly_spatialite.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/poly_spatialite.sqlite -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/db2_poly.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/db2_poly.wkb -------------------------------------------------------------------------------- /autotest/utilities/data/duplicatedfields.csv: -------------------------------------------------------------------------------- 1 | foo,bar,foo,foo2,baz,foo 2 | val_foo,val_bar,val_foo3,val_foo2,val_baz,val_foo4 3 | -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_average.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_average.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_blinear.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_blinear.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_cubic.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_cubic.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_lanczos.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_lanczos.tiff -------------------------------------------------------------------------------- /autotest/gcore/data/citation_mixedcase.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/citation_mixedcase.tif -------------------------------------------------------------------------------- /autotest/gcore/data/spaf27_brokengdal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/spaf27_brokengdal.tif -------------------------------------------------------------------------------- /autotest/gcore/data/stats_signed_byte.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stats_signed_byte.img -------------------------------------------------------------------------------- /autotest/gcore/data/test_nodatavalues.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test_nodatavalues.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/42BW_420730_VT2.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/42BW_420730_VT2.aux -------------------------------------------------------------------------------- /autotest/gdrivers/data/ABC3X1UC/DBLBND.ADF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ABC3X1UC/DBLBND.ADF -------------------------------------------------------------------------------- /autotest/gdrivers/data/Sample_QuikSCAT.grb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/Sample_QuikSCAT.grb -------------------------------------------------------------------------------- /autotest/gdrivers/data/abc3x1/w001001.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/abc3x1/w001001.adf -------------------------------------------------------------------------------- /autotest/gdrivers/data/abc3x1/w001001x.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/abc3x1/w001001x.adf -------------------------------------------------------------------------------- /autotest/gdrivers/data/aea_compressed.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/aea_compressed.dat -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_corrupted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_corrupted.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/bytemff2/image_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/bytemff2/image_data -------------------------------------------------------------------------------- /autotest/gdrivers/data/foo_5dimensional.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/foo_5dimensional.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/int16_lossless.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/int16_lossless.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/isis3_detached.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/isis3_detached.cub -------------------------------------------------------------------------------- /autotest/gdrivers/data/isis3_unit_test.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/isis3_unit_test.cub -------------------------------------------------------------------------------- /autotest/gdrivers/data/n43_sparse_cols.dt0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/n43_sparse_cols.dt0 -------------------------------------------------------------------------------- /autotest/gdrivers/data/no_scale_offset.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/no_scale_offset.nc -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall_index.kap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall_index.kap -------------------------------------------------------------------------------- /autotest/gdrivers/data/true_n_nominal.bag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/true_n_nominal.bag -------------------------------------------------------------------------------- /autotest/gdrivers/data/two_images_jp2.ntf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/two_images_jp2.ntf -------------------------------------------------------------------------------- /autotest/gdrivers/data/two_images_jpeg.ntf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/two_images_jpeg.ntf -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/PROJ_INFO: -------------------------------------------------------------------------------- 1 | name: Lat/Lon 2 | datum: wgs84 3 | towgs84: 0.000,0.000,0.000 4 | proj: ll 5 | ellps: wgs84 6 | -------------------------------------------------------------------------------- /autotest/ogr/data/facility_surface_dd.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/facility_surface_dd.dbf -------------------------------------------------------------------------------- /autotest/ogr/data/oddname.csv: -------------------------------------------------------------------------------- 1 | "PRIME_MERIDIAN_CODE","PRIME:MERIDIAN/NAME","Funky @Name" 2 | 8901,Greenwich,17 3 | 8902,Lisbon,32 4 | -------------------------------------------------------------------------------- /autotest/ogr/data/poly_spatialite4.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/poly_spatialite4.sqlite -------------------------------------------------------------------------------- /autotest/utilities/data/whiteblackred.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/data/whiteblackred.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_range.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_range.tif -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall-int16-neg.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall-int16-neg.tiff -------------------------------------------------------------------------------- /gdal/frmts/msg/PublicDecompWTMakefiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/msg/PublicDecompWTMakefiles.zip -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/sosi/fyba_melding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/ogr/ogrsf_frmts/sosi/fyba_melding.cpp -------------------------------------------------------------------------------- /gdal/ogr/wcts/req_getcap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /autotest/gcore/data/byte_buggy_packbits.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/byte_buggy_packbits.tif -------------------------------------------------------------------------------- /autotest/gcore/data/corrupted_gtiff_tags.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/corrupted_gtiff_tags.tif -------------------------------------------------------------------------------- /autotest/gcore/data/mandrilmini_12bitjpeg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/mandrilmini_12bitjpeg.tif -------------------------------------------------------------------------------- /autotest/gcore/data/spaf27_markedcorrect.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/spaf27_markedcorrect.tif -------------------------------------------------------------------------------- /autotest/gcore/data/stats_nodata_neginf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stats_nodata_neginf.tif -------------------------------------------------------------------------------- /autotest/gcore/data/stats_nodata_posinf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stats_nodata_posinf.tif -------------------------------------------------------------------------------- /autotest/gcore/data/stefan_full_greyalpha.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stefan_full_greyalpha.tif -------------------------------------------------------------------------------- /autotest/gcore/data/tag_without_null_byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/tag_without_null_byte.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test3_with_1mask_1bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test3_with_1mask_1bit.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test3_with_mask_1bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test3_with_mask_1bit.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test3_with_mask_8bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test3_with_mask_8bit.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test_average_palette.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test_average_palette.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test_with_mask_1bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test_with_mask_1bit.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test_with_mask_8bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test_with_mask_8bit.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/12bit_rose_extract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/12bit_rose_extract.jpg -------------------------------------------------------------------------------- /autotest/gdrivers/data/3_13bit_and_1bit.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/3_13bit_and_1bit.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/ABC3X1UC/W001001.ADF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ABC3X1UC/W001001.ADF -------------------------------------------------------------------------------- /autotest/gdrivers/data/ABC3X1UC/W001001X.ADF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/ABC3X1UC/W001001X.ADF -------------------------------------------------------------------------------- /autotest/gdrivers/data/C3607614_truncated.NWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/C3607614_truncated.NWS -------------------------------------------------------------------------------- /autotest/gdrivers/data/PDS_WITH_ZIP_IMG.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/PDS_WITH_ZIP_IMG.ZIP -------------------------------------------------------------------------------- /autotest/gdrivers/data/USRP_PCB4/FKUSRP01.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/USRP_PCB4/FKUSRP01.IMG -------------------------------------------------------------------------------- /autotest/gdrivers/data/USRP_PCB8/FKUSRP01.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/USRP_PCB8/FKUSRP01.IMG -------------------------------------------------------------------------------- /autotest/gdrivers/data/fl73n003_truncated.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fl73n003_truncated.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/gtsmall_10_uint16.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/gtsmall_10_uint16.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/gtsmall_11_int16.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/gtsmall_11_int16.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/i_6130a_truncated.ntf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/i_6130a_truncated.ntf -------------------------------------------------------------------------------- /autotest/gdrivers/data/n43_partial_cols.dt0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/n43_partial_cols.dt0 -------------------------------------------------------------------------------- /autotest/gdrivers/data/rasterlite_pct.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rasterlite_pct.sqlite -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbsmall_with_xmp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbsmall_with_xmp.webp -------------------------------------------------------------------------------- /autotest/gdrivers/data/test_FARSITE_UTM12.LCP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/test_FARSITE_UTM12.LCP -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/vector/point/topo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/PERMANENT/vector/point/topo -------------------------------------------------------------------------------- /autotest/ogr/data/emptyshapefilewithsbn.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptyshapefilewithsbn.sbn -------------------------------------------------------------------------------- /autotest/ogr/data/emptyshapefilewithsbn.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptyshapefilewithsbn.sbx -------------------------------------------------------------------------------- /autotest/ogr/data/emptyshapefilewithsbn.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptyshapefilewithsbn.shp -------------------------------------------------------------------------------- /autotest/ogr/data/emptyshapefilewithsbn.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/emptyshapefilewithsbn.shx -------------------------------------------------------------------------------- /autotest/ogr/data/testgeometryelementpath.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/testgeometryelementpath.zip -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_broken_line.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/3d_broken_line.wkb -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_broken_point.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/3d_broken_point.wkb -------------------------------------------------------------------------------- /autotest/utilities/data/cutline.csv: -------------------------------------------------------------------------------- 1 | ID,"WKT" 2 | 1,"POLYGON ((445125 3748212,442222 3748212,442222 3750366,445125 3750366,445125 3748212))" -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_avdist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_avdist.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_average.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_average.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_invdist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_invdist.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_maximum.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_maximum.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_minimum.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_minimum.tif -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_cubicspline.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_cubicspline.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_ds_lanczos.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_ds_lanczos.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_mode_int16.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_mode_int16.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_mode_int32.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_mode_int32.tiff -------------------------------------------------------------------------------- /gdal/frmts/grib/degrib18/degrib/metaname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/grib/degrib18/degrib/metaname.cpp -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/geojson/jsonc/AUTHORS: -------------------------------------------------------------------------------- 1 | Michael Clark 2 | C. Watford (christopher.watford@gmail.com) 3 | -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/geojson/jsonc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/ogr/ogrsf_frmts/geojson/jsonc/ChangeLog -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/ili/iom/iom_basket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/ogr/ogrsf_frmts/ili/iom/iom_basket.cpp -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/ili/iom/iom_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/ogr/ogrsf_frmts/ili/iom/iom_object.cpp -------------------------------------------------------------------------------- /autotest/gcore/data/bigtiff_header_extract.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/bigtiff_header_extract.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/SMALL_ADRG/ABCDEF01.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/SMALL_ADRG/ABCDEF01.IMG -------------------------------------------------------------------------------- /autotest/gdrivers/data/test_USGS_LFNM_Alb83.lcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/test_USGS_LFNM_Alb83.lcp -------------------------------------------------------------------------------- /autotest/gdrivers/data/two_vars_scale_offset.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/two_vars_scale_offset.nc -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_broken_polygon.wkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/3d_broken_polygon.wkb -------------------------------------------------------------------------------- /autotest/utilities/data/contour_orientation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/data/contour_orientation.tif -------------------------------------------------------------------------------- /autotest/utilities/data/pyramid_shaded_ref.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/data/pyramid_shaded_ref.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/testgdalwarp11.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/testgdalwarp11.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/testgdalwarp12.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/testgdalwarp12.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/testgdalwarp13.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/testgdalwarp13.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/testgdalwarp14.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/testgdalwarp14.tif -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall-int16-neg_mode.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall-int16-neg_mode.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_average_float.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_average_float.tiff -------------------------------------------------------------------------------- /autotest/warp/data/utmsmall_ds_cubicspline.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/warp/data/utmsmall_ds_cubicspline.tiff -------------------------------------------------------------------------------- /gdal/frmts/gtiff/libtiff/tiffconf.h: -------------------------------------------------------------------------------- 1 | /* I'm not sure why tiff.h includes this instead of tif_config.h */ 2 | 3 | #include "tif_config.h" 4 | -------------------------------------------------------------------------------- /autotest/gcore/data/stats_nodata_neginf_msvc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stats_nodata_neginf_msvc.tif -------------------------------------------------------------------------------- /autotest/gcore/data/stats_nodata_posinf_msvc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stats_nodata_posinf_msvc.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/EN0001426030M_truncated.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/EN0001426030M_truncated.IMG -------------------------------------------------------------------------------- /autotest/gdrivers/data/adobe_style_geospatial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/adobe_style_geospatial.pdf -------------------------------------------------------------------------------- /autotest/gdrivers/data/fl73n003_alt_truncated.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/fl73n003_alt_truncated.img -------------------------------------------------------------------------------- /autotest/gdrivers/data/g2009u01_be_truncated.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/g2009u01_be_truncated.bin -------------------------------------------------------------------------------- /autotest/gdrivers/data/g2009u01_le_truncated.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/g2009u01_le_truncated.bin -------------------------------------------------------------------------------- /autotest/gdrivers/data/rasterlite_pyramids.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rasterlite_pyramids.sqlite -------------------------------------------------------------------------------- /autotest/gdrivers/data/rgbwcmyk01_YeGeo_kakadu.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/rgbwcmyk01_YeGeo_kakadu.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/test_vrt_filter_nodata.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/test_vrt_filter_nodata.tif -------------------------------------------------------------------------------- /autotest/ogr/data/linestring.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "LineString", 3 | "coordinates": [ 4 | [100.0, 0.0], [101.0, 1.0] 5 | ] 6 | } -------------------------------------------------------------------------------- /autotest/ogr/data/multipoint.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "MultiPoint", 3 | "coordinates": [ 4 | [100.0, 0.0], [101.0, 1.0] 5 | ] 6 | } -------------------------------------------------------------------------------- /autotest/ogr/data/test.rec: -------------------------------------------------------------------------------- 1 | 2 2 | 0A 0000000000000000000000000 10000 3 | 0B 0000000000000000000000000 10000 4 | 12^ 5 | 34^ 6 | -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_count_300_300.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_count_300_300.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_count_70_70.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_count_70_70.tif -------------------------------------------------------------------------------- /autotest/gcore/data/mfftest.hdr: -------------------------------------------------------------------------------- 1 | IMAGE_FILE_FORMAT = MFF 2 | FILE_TYPE = IMAGE 3 | IMAGE_LINES = 3 4 | LINE_SAMPLES = 3 5 | BYTE_ORDER = LSB 6 | END 7 | -------------------------------------------------------------------------------- /autotest/gcore/data/stefan_full_rgba_jpeg_contig.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stefan_full_rgba_jpeg_contig.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test3_with_mask_1bit_and_ovr.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test3_with_mask_1bit_and_ovr.tif -------------------------------------------------------------------------------- /autotest/gcore/data/test_with_mask_1bit_and_ovr.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/test_with_mask_1bit_and_ovr.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/L71118038_03820020111_B80.FST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/L71118038_03820020111_B80.FST -------------------------------------------------------------------------------- /autotest/gdrivers/data/L72230079_07920021111_B62.FST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/L72230079_07920021111_B62.FST -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_without_geotransform.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/byte_without_geotransform.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakemff.hdr: -------------------------------------------------------------------------------- 1 | IMAGE_FILE_FORMAT=MFF 2 | IMAGE_LINES=1 3 | LINE_SAMPLES=1 4 | NUM_GCPS=1 5 | GCP1=0,1,2,3 6 | PROJECTION_NAME=utm 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/5.wkt: -------------------------------------------------------------------------------- 1 | LINESTRING (.001213534618728 1.998531195873511,1.00121352536371 2.998531220131554,1.00121352635324 5.998531215489493) 2 | -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_avdist_150_150.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_avdist_150_150.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_average_190_190.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_average_190_190.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_maximum_100_100.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_maximum_100_100.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_range_90_90_8p.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_range_90_90_8p.tif -------------------------------------------------------------------------------- /autotest/gcore/data/stefan_full_rgba_jpeg_separate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stefan_full_rgba_jpeg_separate.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/arvidson_original_truncated.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/arvidson_original_truncated.cub -------------------------------------------------------------------------------- /autotest/gdrivers/data/gmljp2_dtedsm_epsg_4326_axes.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/gmljp2_dtedsm_epsg_4326_axes.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/small_grass_dataset/README.txt: -------------------------------------------------------------------------------- 1 | This is a very small extract from the sample set http://grass.itc.it/sampledata/fire_grass6data.tar.gz -------------------------------------------------------------------------------- /autotest/gdrivers/data/stefan_full_rgba_alpha_1bit.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/stefan_full_rgba_alpha_1bit.jp2 -------------------------------------------------------------------------------- /autotest/gdrivers/data/stefan_full_rgba_ecwv3_meta.ecw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/stefan_full_rgba_ecwv3_meta.ecw -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/1.wkt: -------------------------------------------------------------------------------- 1 | MULTIPOINT (7.00121346837841 2.998531375167659,8.001213458890561 2.998531401259243,7.001213468029164 1.998531376986648) 2 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/3d_odd_collection.wkb_hidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/wkb_wkt/3d_odd_collection.wkb_hidden -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_avdist_150_50_-15.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_avdist_150_50_-15.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_average_300_100_40.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_average_300_100_40.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_average_90_90_8p.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_average_90_90_8p.tif -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_invdist_90_90_8p.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_invdist_90_90_8p.tif -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/geoconcept/geoconcept_syscoord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/ogr/ogrsf_frmts/geoconcept/geoconcept_syscoord.c -------------------------------------------------------------------------------- /autotest/gcore/data/stefan_full_rgba_photometric_rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gcore/data/stefan_full_rgba_photometric_rgb.tif -------------------------------------------------------------------------------- /autotest/gdrivers/data/small.gxf: -------------------------------------------------------------------------------- 1 | #POIN 2 | 4 3 | #ROWS 4 | 3 5 | #GRID 6 | -9999999.000 10 7 | 20 25 8 | -10 15 20 22 9 | 5 6 4 3 10 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/11.wkt: -------------------------------------------------------------------------------- 1 | MULTIPOINT ((7.00121346837841 2.998531375167659),(8.001213458890561 2.998531401259243),(7.001213468029164 1.998531376986648)) 2 | -------------------------------------------------------------------------------- /autotest/utilities/ref_data/grid_minimum_400_100_120.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/utilities/ref_data/grid_minimum_400_100_120.tif -------------------------------------------------------------------------------- /gdal/frmts/pcidsk/sdk/core/Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | (cd .. ; $(MAKE)) 3 | 4 | clean: 5 | (cd .. ; $(MAKE) clean) 6 | 7 | check: 8 | (cd .. ; $(MAKE) check) 9 | -------------------------------------------------------------------------------- /gdal/frmts/pcidsk/sdk/port/Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | (cd .. ; $(MAKE)) 3 | 4 | clean: 5 | (cd .. ; $(MAKE) clean) 6 | 7 | check: 8 | (cd .. ; $(MAKE) check) 9 | -------------------------------------------------------------------------------- /autotest/gcore/data/tiff_dos_strip_chop.tif: -------------------------------------------------------------------------------- 1 | II* @@ -------------------------------------------------------------------------------- /autotest/gdrivers/data/STDS_1107834_truncated/1107CEL0.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/STDS_1107834_truncated/1107CEL0.DDF -------------------------------------------------------------------------------- /autotest/gdrivers/data/adobe_style_geospatial_with_xmp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/adobe_style_geospatial_with_xmp.pdf -------------------------------------------------------------------------------- /autotest/gdrivers/data/byte_without_geotransform.j2w: -------------------------------------------------------------------------------- 1 | 60.0000000000 2 | 0.0000000000 3 | 0.0000000000 4 | -60.0000000000 5 | 440750.0000000000 6 | 3751290.0000000000 7 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/ehdr10.hdr: -------------------------------------------------------------------------------- 1 | ncols 321 2 | nrows 2 3 | cellsize 2500.000000 4 | xllcorner -17973801.662435 5 | yllcorner 2041811.701239 6 | byteorder msbfirst 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/dbf/point.dbf: -------------------------------------------------------------------------------- 1 | _acatN nameC 2 | 1my point -------------------------------------------------------------------------------- /gdal/frmts/pcidsk/sdk/channel/Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | (cd .. ; $(MAKE)) 3 | 4 | clean: 5 | (cd .. ; $(MAKE) clean) 6 | 7 | check: 8 | (cd .. ; $(MAKE) check) 9 | -------------------------------------------------------------------------------- /gdal/frmts/pcidsk/sdk/segment/Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | (cd .. ; $(MAKE)) 3 | 4 | clean: 5 | (cd .. ; $(MAKE) clean) 6 | 7 | check: 8 | (cd .. ; $(MAKE) check) 9 | -------------------------------------------------------------------------------- /gdal/swig/python/ogr.py: -------------------------------------------------------------------------------- 1 | # import osgeo.ogr as a convenience 2 | from osgeo.gdal import deprecation_warn 3 | deprecation_warn('ogr') 4 | 5 | from osgeo.ogr import * 6 | -------------------------------------------------------------------------------- /gdal/swig/python/osr.py: -------------------------------------------------------------------------------- 1 | # import osgeo.osr as a convenience 2 | from osgeo.gdal import deprecation_warn 3 | deprecation_warn('osr') 4 | 5 | from osgeo.osr import * 6 | -------------------------------------------------------------------------------- /autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01LE01.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01LE01.DDF -------------------------------------------------------------------------------- /autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01NA01.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01NA01.DDF -------------------------------------------------------------------------------- /autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01NO01.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01NO01.DDF -------------------------------------------------------------------------------- /autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01NP01.DDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/ogr/data/D3607551_rd0s_1_sdts_truncated/TR01NP01.DDF -------------------------------------------------------------------------------- /autotest/ogr/data/polygons.gen: -------------------------------------------------------------------------------- 1 | 1 2 | 2,49 3 | 2,50 4 | 3,50 5 | 3,49 6 | 2,49 7 | END 8 | 2 9 | 2,49 10 | 2,50 11 | 3,50 12 | 3,49 13 | 2,49 14 | END 15 | END 16 | -------------------------------------------------------------------------------- /gdal/frmts/mrsid_lidar/frmt_mrsid_lidar_view_point_cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/gdal/frmts/mrsid_lidar/frmt_mrsid_lidar_view_point_cloud.html -------------------------------------------------------------------------------- /gdal/swig/python/gdal.py: -------------------------------------------------------------------------------- 1 | # import osgeo.gdal as a convenience 2 | from osgeo.gdal import deprecation_warn 3 | deprecation_warn('gdal') 4 | 5 | from osgeo.gdal import * 6 | -------------------------------------------------------------------------------- /autotest/ogr/data/small.mid: -------------------------------------------------------------------------------- 1 | " S. 11th St.",4,"Shiffer James A and Martha L",56115.58,637.68,10,"230" 2 | " S. 11th St.",4,"Guarino ""Chucky"" Sandra",62480.53,710.01,10,"232" 3 | -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/libkml/.indent.pro: -------------------------------------------------------------------------------- 1 | -bc 2 | -br 3 | -lp 4 | -nce 5 | -ncs 6 | -npsl 7 | -nut 8 | -prs 9 | -ts4 10 | -ip4 11 | -i4 12 | -bad 13 | -bfda 14 | -l79 15 | -------------------------------------------------------------------------------- /autotest/gcore/data/testserialization.asc: -------------------------------------------------------------------------------- 1 | ncols 1 2 | nrows 1 3 | xllcorner 0.000000000000 4 | yllcorner 0.000000000000 5 | cellsize 1.000000000000 6 | 0 7 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/ehdr11.hdr: -------------------------------------------------------------------------------- 1 | ncols 321 2 | nrows 2 3 | nbits 32 4 | cellsize 2500.000000 5 | xllcorner -17973801.662435 6 | yllcorner 2041811.701239 7 | byteorder msbfirst 8 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/geoserver.wcs: -------------------------------------------------------------------------------- 1 | 2 | http://demo.opengeo.org/geoserver/wcs? 3 | Img_Sample 4 | 5 | -------------------------------------------------------------------------------- /autotest/ogr/data/small_ntf.mid: -------------------------------------------------------------------------------- 1 | " S. 11th St.",4,"Shiffer James A and Martha L",56115.58,637.68,10,"230" 2 | " S. 11th St.",4,"Guarino ""Chucky"" Sandra",62480.53,710.01,10,"232" 3 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/small_grass_dataset/demomapset/cell/elevation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/small_grass_dataset/demomapset/cell/elevation -------------------------------------------------------------------------------- /autotest/ogr/data/csv_with_utf8_bom.csv: -------------------------------------------------------------------------------- 1 | id,name,WKT 2 | 426,Colac Bay/Ōraka,LOC,POINT (1205949.55535 4853065.413164) 3 | 427,Colac Bay/Ōraka,BAY,POINT (1208242.531016 4852284.8976) 4 | -------------------------------------------------------------------------------- /autotest/ogr/data/polygon.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Polygon", 3 | "coordinates": [ 4 | [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] 5 | ] 6 | } -------------------------------------------------------------------------------- /autotest/gdrivers/data/gmljp2_dtedsm_epsg_4326_axes_alt_offsetVector.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutiteq/gdal/HEAD/autotest/gdrivers/data/gmljp2_dtedsm_epsg_4326_axes_alt_offsetVector.jp2 -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/6.wkt: -------------------------------------------------------------------------------- 1 | POLYGON ((3.001213507319335 5.998531267236103,5.00121348828543 5.998531318837195,5.001213488576468 6.99853131796408,3.001213507552166 6.998531266246573)) 2 | -------------------------------------------------------------------------------- /gdal/frmts/postgisraster/todo: -------------------------------------------------------------------------------- 1 | TODO List : 2 | 3 | Please, check open tickets here: http://trac.osgeo.org/gdal/wiki/frmts_wtkraster.html#OpenTickets 4 | 5 | Last update: 2013-01-05 6 | 7 | -------------------------------------------------------------------------------- /gdal/swig/python/epydoc.conf: -------------------------------------------------------------------------------- 1 | [epydoc] 2 | name: GDAL/OGR Python API 3 | url: http://gdal.org/ 4 | modules: osgeo 5 | output: html 6 | target: html/ 7 | graph: all 8 | dotpath: /usr/bin/dot 9 | -------------------------------------------------------------------------------- /gdal/swig/python/gdalconst.py: -------------------------------------------------------------------------------- 1 | # import osgeo.gdalconst as a convenience 2 | from osgeo.gdal import deprecation_warn 3 | deprecation_warn('gdalconst') 4 | 5 | from osgeo.gdalconst import * 6 | -------------------------------------------------------------------------------- /autotest/ogr/data/gjline.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 1 Line 1 -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoint.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 1 Point 1 -------------------------------------------------------------------------------- /autotest/ogr/data/gjpoly.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 1 Polygon 1 -------------------------------------------------------------------------------- /autotest/utilities/data/color_file.txt: -------------------------------------------------------------------------------- 1 | 500 255 255 255 2 | 450 235 220 175 3 | 300 190 185 135 4 | 150 240 250 150 5 | 76 50 180 50 6 | 75 200 230 255 7 | -32768 200 230 255 8 | -------------------------------------------------------------------------------- /gdal/swig/python/gdalnumeric.py: -------------------------------------------------------------------------------- 1 | # import osgeo.gdal_array as a convenience 2 | from osgeo.gdal import deprecation_warn 3 | deprecation_warn('gdalnumeric') 4 | 5 | from osgeo.gdal_array import * 6 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakeeir.hdr: -------------------------------------------------------------------------------- 1 | IMAGINE_RAW_FILE 2 | WIDTH 1 3 | HEIGHT 1 4 | NUM_LAYERS 1 5 | PIXEL_FILES fakeeir.img 6 | FORMAT BIL 7 | DATATYPE U8 8 | DATA_OFFSET 0 9 | END_RAW_FILE 10 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/nitf59.hdr: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | Selected Projection: Universal Transverse Mercator 9 | Zone: 31 10 | 9 11 | 10 12 | 11 13 | 12 14 | 13 15 | 14 16 | 15 -------------------------------------------------------------------------------- /autotest/gdrivers/data/test.wld: -------------------------------------------------------------------------------- 1 | 0.38 2 | -0,01 3 | 0.01 4 | -0,38 5 | 700000.50 6 | 4287500,50 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultiline.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 2 MultiLine 1 -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultipoint.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 1 MultiPoint 1 -------------------------------------------------------------------------------- /autotest/ogr/data/gjmultipoly.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 2 MultiPoly 1 -------------------------------------------------------------------------------- /autotest/ogr/data/testcsvt.csv: -------------------------------------------------------------------------------- 1 | "INTCOL","REALCOL","STRINGCOL","INTCOL2","REALCOL2","STRINGCOL2","DATETIME","DATE","TIME" 2 | 12,5.7,"foo",12,5.7,"foo",2008-12-25 11:22:33,2008/12/25,11:22:33 3 | ,,,,,,,, -------------------------------------------------------------------------------- /gdal/vb6/test/Module1.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "Module1" 2 | Public fMainForm As frmMain 3 | 4 | 5 | Sub Main() 6 | Set fMainForm = New frmMain 7 | fMainForm.Show 8 | End Sub 9 | 10 | -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultiline.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 2 MultiLine 1 -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultipoint.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 1 MultiPoint 1 -------------------------------------------------------------------------------- /autotest/ogr/data/emptymultipoly.dbf: -------------------------------------------------------------------------------- 1 | _aHFIDN NAMEC< 2 MultiPoly 1 -------------------------------------------------------------------------------- /autotest/ogr/data/multilinestring.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "MultiLineString", 3 | "coordinates": [ 4 | [ [100.0, 0.0], [101.0, 1.0] ], 5 | [ [102.0, 2.0], [103.0, 3.0] ] 6 | ] 7 | } -------------------------------------------------------------------------------- /autotest/ogr/data/poly_vrt.vrt: -------------------------------------------------------------------------------- 1 | 2 | 3 | poly.shp 4 | 5 | 6 | -------------------------------------------------------------------------------- /autotest/ogr/data/polygons25d.gen: -------------------------------------------------------------------------------- 1 | 1 2 | 2,49,10 3 | 2,50,10 4 | 3,50,10 5 | 3,49,10 6 | 2,49,10 7 | END 8 | 2 9 | 2,49,20 10 | 2,50,20 11 | 3,50,20 12 | 3,49,20 13 | 2,49,20 14 | END 15 | END 16 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/envistat.hdr: -------------------------------------------------------------------------------- 1 | ENVI 2 | samples = 2 3 | lines = 2 4 | bands = 6 5 | header offset = 0 6 | file type = ENVI Standard 7 | data type = 1 8 | interleave = bsq 9 | byte order = 0 10 | -------------------------------------------------------------------------------- /autotest/ogr/data/circle.dxf: -------------------------------------------------------------------------------- 1 | 0 2 | SECTION 3 | 2 4 | ENTITIES 5 | 0 6 | CIRCLE 7 | 10 8 | 1.0 9 | 20 10 | 2.0 11 | 30 12 | 3.0 13 | 40 14 | 4.0 15 | 0 16 | ENDSEC 17 | 0 18 | EOF 19 | 20 | -------------------------------------------------------------------------------- /autotest/gcore/data/mfftest.hdr.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -3.40282346638529E+38 4 | 5 | 6 | -------------------------------------------------------------------------------- /gdal/doc/gdal_footer.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | Generated for GDAL by 4 | doxygen $doxygenversion. 5 | 6 | 7 | -------------------------------------------------------------------------------- /gdal/frmts/tsx/makefile.vc: -------------------------------------------------------------------------------- 1 | OBJ = tsxdataset.obj 2 | 3 | GDAL_ROOT = ..\.. 4 | 5 | !INCLUDE $(GDAL_ROOT)\nmake.opt 6 | 7 | default: $(OBJ) 8 | xcopy /D /Y *.obj ..\o 9 | 10 | clean: 11 | -del *.obj 12 | 13 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakemfftiled.hdr: -------------------------------------------------------------------------------- 1 | IMAGE_FILE_FORMAT=MFF 2 | IMAGE_LINES=1 3 | LINE_SAMPLES=1 4 | no_rows=1 5 | tile_size_rows=2 6 | tile_size_columns=2 7 | NUM_GCPS=1 8 | GCP1=0,1,2,3 9 | PROJECTION_NAME=utm 10 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/srtmplus.wcs: -------------------------------------------------------------------------------- 1 | 2 | http://geodata.telascience.org/cgi-bin/mapserv_dem? 3 | srtmplus_raw 4 | 75 5 | 6 | -------------------------------------------------------------------------------- /gdal/frmts/terragen/makefile.vc: -------------------------------------------------------------------------------- 1 | OBJ = terragendataset.obj 2 | 3 | GDAL_ROOT = ..\.. 4 | 5 | !INCLUDE $(GDAL_ROOT)\nmake.opt 6 | 7 | default: $(OBJ) 8 | xcopy /D /Y *.obj ..\o 9 | 10 | clean: 11 | -del *.obj 12 | -------------------------------------------------------------------------------- /gdal/ogr/ogrsf_frmts/sdts/install-libs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | SRCLIB=$1 4 | DSTLIB=$2 5 | 6 | OBJ=`ar t $SRCLIB | grep -v SORTED | grep -v SYMDEF` 7 | 8 | ar x $SRCLIB $OBJ 9 | ar r $DSTLIB $OBJ 10 | rm $OBJ 11 | 12 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/ABC3X1UC/PRJ.ADF: -------------------------------------------------------------------------------- 1 | Projection UTM 2 | Zone 55 3 | Datum GDA94 4 | Spheroid GRS80 5 | Units METERS 6 | Zunits NO 7 | Yshift 10000000.0 8 | Parameters 9 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/abc3x1/prj.adf: -------------------------------------------------------------------------------- 1 | Projection UTM 2 | Zone 55 3 | Datum GDA94 4 | Spheroid GRS80 5 | Units METERS 6 | Zunits NO 7 | Yshift 10000000.0 8 | Parameters 9 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakefujibas.pcb: -------------------------------------------------------------------------------- 1 | [Raw data] 2 | Fuji BAS 3 | width=1 4 | height=1 5 | OrgFile=fakefujibas 6 | PADPADPADPAD 7 | PADPADPADPAD 8 | PADPADPADPAD 9 | PADPADPADPAD 10 | PADPADPADPAD 11 | PADPADPADPAD 12 | -------------------------------------------------------------------------------- /gdal/frmts/bmp/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = bmpdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/ctg/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = ctgdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/dds/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = ddsdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/dimap/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = dimapdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/elas/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = elasdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/gff/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = gff_dataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/hf2/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = hf2dataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/l1b/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = l1bdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/map/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = mapdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/mem/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = memdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/rs2/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = rs2dataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/xyz/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = xyzdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/zmap/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = zmapdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /autotest/ogr/data/PERMANENT/vector/point/head: -------------------------------------------------------------------------------- 1 | ORGANIZATION: 2 | DIGIT DATE: 3 | DIGIT NAME: 4 | MAP NAME: 5 | MAP DATE: 6 | MAP SCALE: 1 7 | OTHER INFO: 8 | ZONE: 0 9 | MAP THRESH: 0.000000 10 | -------------------------------------------------------------------------------- /autotest/utilities/data/Fields.csv: -------------------------------------------------------------------------------- 1 | a,A_1,a_1_2,aaaaaAAAAAb,aAaaaAAAAAc,aaaaaAAAABa,aaaaaAAAABb,aaaaaAAAABc,aaaaaAAAABd,aaaaaAAAABe,aaaaaAAAABf,aaaaaAAAABg,aaaaaAAAABh,aaaaaAAAABi,aaaaaAAAABj 2 | 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 3 | -------------------------------------------------------------------------------- /gdal/frmts/aaigrid/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = aaigriddataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/airsar/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = airsardataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/coasp/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = coasp_dataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/cosar/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = cosar_dataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/e00grid/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = e00griddataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/jaxapalsar/makefile.vc: -------------------------------------------------------------------------------- 1 | OBJ = jaxapalsardataset.obj 2 | 3 | GDAL_ROOT = ..\.. 4 | 5 | !INCLUDE $(GDAL_ROOT)\nmake.opt 6 | 7 | default: $(OBJ) 8 | xcopy /D /Y *.obj ..\o 9 | 10 | clean: 11 | -del *.obj 12 | 13 | -------------------------------------------------------------------------------- /gdal/wince/TODO: -------------------------------------------------------------------------------- 1 | TODO list for Windows CE port: 2 | ----------------------------- 3 | - Add project files for eVC++ 4.0 4 | - Port OGR driver for GML 5 | - Port OGR driver for SQLite 6 | - Port OGR driver for new GDAL rasters support 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/empty.kml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test 5 | 6 | 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/invalid3.vrt: -------------------------------------------------------------------------------- 1 | 2 | 3 | poly.shp 4 | foo 5 | 6 | 7 | -------------------------------------------------------------------------------- /gdal/frmts/bsb/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = bsbdataset.obj bsb_read.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/leveller/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = levellerdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/ngsgeoid/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = ngsgeoiddataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/r/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = rdataset.obj rcreatecopy.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/wms/frmt_twms_Clementine.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | http://onmoon.jpl.nasa.gov/wms.cgi? 4 | Clementine 5 | 6 | 7 | -------------------------------------------------------------------------------- /autotest/alg/data/cutline.csv: -------------------------------------------------------------------------------- 1 | Counter,WKT 2 | 1,"POLYGON((6.25 1.25,7.25 1.25,7.25 2.25,6.25 2.25,6.25 1.25))" 3 | 2,"POLYGON((4.25 4.25,6.25 4.25,6.25 6.25,4.25 6.25,4.25 4.25))" 4 | 3,"POLYGON((1.001 1.001,3.999 3.999,3.2 1.6,1.001 1.001))" 5 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/fakecpgSIRC.hdr: -------------------------------------------------------------------------------- 1 | number_lines 1 2 | number_samples 1 3 | altitude 0.01 4 | near_srd 0.01 5 | sample_size 0.01 6 | sample_size_az 0.01 7 | transposed 0 8 | -------------------------------------------------------------------------------- /gdal/doc/grid/src/ellipse.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | \usepackage{graphicx} 3 | \DeclareGraphicsRule{*}{eps}{*}{} 4 | \nofiles 5 | \begin{document} 6 | \thispagestyle{empty} 7 | \includegraphics{figures.1} 8 | \end{document} 9 | 10 | -------------------------------------------------------------------------------- /gdal/doc/grid/src/gridding.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | \usepackage{graphicx} 3 | \DeclareGraphicsRule{*}{eps}{*}{} 4 | \nofiles 5 | \begin{document} 6 | \thispagestyle{empty} 7 | \includegraphics{figures.2} 8 | \end{document} 9 | 10 | -------------------------------------------------------------------------------- /gdal/frmts/ceos/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = ceosopen.obj ceosdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/fit/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = \ 3 | fit.obj fitdataset.obj 4 | 5 | GDAL_ROOT = ..\.. 6 | 7 | !INCLUDE $(GDAL_ROOT)\nmake.opt 8 | 9 | default: $(OBJ) 10 | xcopy /D /Y *.obj ..\o 11 | 12 | clean: 13 | -del *.obj 14 | 15 | -------------------------------------------------------------------------------- /gdal/frmts/saga/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = sagadataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/wms/frmt_twms_srtm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | http://onearth.jpl.nasa.gov/wms.cgi? 4 | Global SRTM Elevation 5 | 6 | 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/departs.vrt: -------------------------------------------------------------------------------- 1 | 2 | 3 | departs.shp 4 | departs 5 | 6 | 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/invalid2.vrt: -------------------------------------------------------------------------------- 1 | 2 | 3 | poly.shp 4 | foo 5 | 6 | 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/testpoly.dbf: -------------------------------------------------------------------------------- 1 | _A FIDN 2 | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 -------------------------------------------------------------------------------- /autotest/ogr/data/wkt.csv: -------------------------------------------------------------------------------- 1 | Counter,WKT,Desc 2 | 1,"POLYGON((6.25 1.25,7.25 1.25,7.25 2.25,6.25 2.25,6.25 1.25))", 3 | 2,"POLYGON((4.25 4.25,6.25 4.25,6.25 6.25,4.25 6.25,4.25 4.25))", 4 | 3,"POLYGON((1.001 1.001,3.999 3.999,3.2 1.6,1.001 1.001))", 5 | -------------------------------------------------------------------------------- /gdal/frmts/rmf/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = rmfdataset.obj rmfdem.obj rmflzw.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/grassascii.txt: -------------------------------------------------------------------------------- 1 | north: 250.000000 2 | south: 0.000000 3 | east: 150.000000 4 | west: -100.000000 5 | rows: 6 6 | cols: 4 7 | -9999 -9999 5 2 8 | -9999 20 100 36 9 | 3 8 35 10 10 | 32 42 50 6 11 | 88 75 27 9 12 | 13 5 1 -9999 -------------------------------------------------------------------------------- /autotest/ogr/data/poly_nonoptimized_vrt.vrt: -------------------------------------------------------------------------------- 1 | 2 | 3 | poly.shp 4 | poly 5 | 6 | 7 | -------------------------------------------------------------------------------- /gdal/bridge/Makefile: -------------------------------------------------------------------------------- 1 | 2 | bridge_test: bridge_test.cpp gbgetsymbol.cpp gdalbridge.cpp 3 | $(CXX) -Wall -g bridge_test.cpp gbgetsymbol.cpp gdalbridge.cpp -ldl \ 4 | -o bridge_test 5 | 6 | clean: 7 | rm *.o bridge_test 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /gdal/frmts/iris/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = irisdataset.obj 3 | 4 | EXTRAFLAGS = 5 | 6 | GDAL_ROOT = ..\.. 7 | 8 | !INCLUDE $(GDAL_ROOT)\nmake.opt 9 | 10 | default: $(OBJ) 11 | xcopy /D /Y *.obj ..\o 12 | 13 | clean: 14 | -del *.obj 15 | 16 | -------------------------------------------------------------------------------- /gdal/frmts/sgi/makefile.vc: -------------------------------------------------------------------------------- 1 | GDAL_ROOT = ..\.. 2 | !INCLUDE $(GDAL_ROOT)\nmake.opt 3 | 4 | 5 | OBJ = sgidataset.obj 6 | 7 | EXTRAFLAGS = -I./ 8 | 9 | default: $(OBJ) 10 | xcopy /D /Y *.obj ..\o 11 | 12 | clean: 13 | -del *.obj 14 | 15 | -------------------------------------------------------------------------------- /gdal/frmts/wms/frmt_twms_Moon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | http://onmoon.lmmp.nasa.gov/wms.cgi? 4 | LRO WAC Mosaic, LMMP 5 | 6 | 7 | -------------------------------------------------------------------------------- /autotest/ogr/data/ili/enum-test.itf: -------------------------------------------------------------------------------- 1 | SCNT 2 | EnumTest Transfer-File 3 | //// 4 | MTID EnumTest 5 | MODL EnumTest 6 | TOPI Bodenbedeckung 7 | TABL BoFlaechen 8 | OBJE 10 0 1 9 | OBJE 20 1 2 10 | OBJE 30 2 3 11 | ETAB 12 | ETOP 13 | EMOD 14 | ENDE 15 | -------------------------------------------------------------------------------- /autotest/ogr/data/ili/format-test.itf: -------------------------------------------------------------------------------- 1 | SCNT 2 | FormatDefault Transfer-File 3 | //// 4 | MTID FormatDefault 5 | MODL FormatDefault 6 | TOPI FormatTests 7 | TABL FormatTable 8 | OBJE 0 aa_bb ` 9 | CONT cc^dd " 1 10 | ETAB 11 | ETOP 12 | EMOD 13 | ENDE 14 | -------------------------------------------------------------------------------- /autotest/ogr/data/testavc/prj.adf: -------------------------------------------------------------------------------- 1 | Projection UTM 2 | Zone 13 3 | Datum NAD27 4 | Zunits NO 5 | Units METERS 6 | Spheroid CLARKE1866 7 | Xshift 0.0000000000 8 | Yshift 0.0000000000 9 | Parameters 10 | -------------------------------------------------------------------------------- /autotest/ogr/data/text.dxf: -------------------------------------------------------------------------------- 1 | 0 2 | SECTION 3 | 2 4 | ENTITIES 5 | 0 6 | MTEXT 7 | 10 8 | 1.0 9 | 20 10 | 2.0 11 | 30 12 | 3.0 13 | 40 14 | 10.0 15 | 1 16 | test_text 17 | 50 18 | 45.0 19 | 62 20 | 1 21 | 0 22 | ENDSEC 23 | 0 24 | EOF 25 | -------------------------------------------------------------------------------- /autotest/ogr/data/wkb_wkt/7.wkt: -------------------------------------------------------------------------------- 1 | POLYGON ((11.0012134319 7.9985314722,7.0012134699 7.9985313685,7.0012134689 4.9985313728,11.0012134308 4.9985314765),(10.0012134409 6.9985314476,10.0012134407 5.9985314488,8.0012134598 5.9985313965,8.0012134601 6.9985313951)) 2 | -------------------------------------------------------------------------------- /autotest/utilities/data/color_file.cpt: -------------------------------------------------------------------------------- 1 | # fake cpt file 2 | #COLOR_MODEL = RGB 3 | # 4 | 500 255 255 255 450 235 220 175 5 | 300 190 185 135 150 240 250 150 6 | 76 50 180 50 75 200 230 255 7 | F 0 0 0 8 | B 0 0 0 9 | N 200 230 255 10 | -------------------------------------------------------------------------------- /gdal/frmts/gsg/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = gsagdataset.obj gsbgdataset.obj gs7bgdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | default: $(OBJ) 9 | xcopy /D /Y *.obj ..\o 10 | 11 | clean: 12 | -del *.obj 13 | 14 | -------------------------------------------------------------------------------- /gdal/frmts/saga/GNUmakefile: -------------------------------------------------------------------------------- 1 | 2 | include ../../GDALmake.opt 3 | 4 | OBJ = sagadataset.o 5 | 6 | CPPFLAGS = $(GDAL_INCLUDE) 7 | 8 | default: $(OBJ:.o=.$(OBJ_EXT)) 9 | 10 | clean: 11 | rm -f *.o 12 | 13 | install-obj: $(O_OBJ:.o=.$(OBJ_EXT)) 14 | -------------------------------------------------------------------------------- /gdal/frmts/srtmhgt/makefile.vc: -------------------------------------------------------------------------------- 1 | GDAL_ROOT = ..\.. 2 | !INCLUDE $(GDAL_ROOT)\nmake.opt 3 | 4 | 5 | OBJ = srtmhgtdataset.obj 6 | 7 | EXTRAFLAGS = -I./ 8 | 9 | default: $(OBJ) 10 | xcopy /D /Y *.obj ..\o 11 | 12 | clean: 13 | -del *.obj 14 | 15 | -------------------------------------------------------------------------------- /gdal/frmts/til/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = tildataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | EXTRAFLAGS = -I..\vrt 7 | 8 | !INCLUDE $(GDAL_ROOT)\nmake.opt 9 | 10 | default: $(OBJ) 11 | xcopy /D /Y *.obj ..\o 12 | 13 | clean: 14 | -del *.obj 15 | 16 | -------------------------------------------------------------------------------- /gdal/frmts/tsx/GNUmakefile: -------------------------------------------------------------------------------- 1 | include ../../GDALmake.opt 2 | 3 | OBJ = tsxdataset.o 4 | CPPFLAGS := $(GDAL_INCLUDE) $(CPPFLAGS) 5 | 6 | default: $(OBJ:.o=.$(OBJ_EXT)) 7 | clean: 8 | rm -f *.o $(O_OBJ) 9 | 10 | install-obj: $(O_OBJ:.o=.$(OBJ_EXT)) 11 | -------------------------------------------------------------------------------- /gdal/frmts/xpm/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = xpmdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | EXTRAFLAGS = -I..\mem 7 | 8 | !INCLUDE $(GDAL_ROOT)\nmake.opt 9 | 10 | default: $(OBJ) 11 | xcopy /D /Y *.obj ..\o 12 | 13 | clean: 14 | -del *.obj 15 | 16 | -------------------------------------------------------------------------------- /gdal/swig/csharp/gdal/makefile.vc: -------------------------------------------------------------------------------- 1 | OBJ = gdal_wrap.obj 2 | 3 | GDAL_ROOT = ..\..\.. 4 | 5 | !INCLUDE $(GDAL_ROOT)\nmake.opt 6 | 7 | default: $(OBJ) 8 | xcopy /D /Y *.obj .. 9 | 10 | clean: 11 | -del *.obj 12 | -del *.cs 13 | -del *.cpp 14 | 15 | -------------------------------------------------------------------------------- /gdal/swig/csharp/ogr/makefile.vc: -------------------------------------------------------------------------------- 1 | OBJ = ogr_wrap.obj 2 | 3 | GDAL_ROOT = ..\..\.. 4 | 5 | !INCLUDE $(GDAL_ROOT)\nmake.opt 6 | 7 | default: $(OBJ) 8 | xcopy /D /Y *.obj .. 9 | 10 | clean: 11 | -del *.obj 12 | -del *.cs 13 | -del *.cpp 14 | 15 | -------------------------------------------------------------------------------- /gdal/swig/csharp/osr/makefile.vc: -------------------------------------------------------------------------------- 1 | OBJ = osr_wrap.obj 2 | 3 | GDAL_ROOT = ..\..\.. 4 | 5 | !INCLUDE $(GDAL_ROOT)\nmake.opt 6 | 7 | default: $(OBJ) 8 | xcopy /D /Y *.obj .. 9 | 10 | clean: 11 | -del *.obj 12 | -del *.cs 13 | -del *.cpp 14 | 15 | -------------------------------------------------------------------------------- /autotest/ogr/data/ili/format-default.itf: -------------------------------------------------------------------------------- 1 | SCNT 2 | FormatDefault Transfer-File 3 | //// 4 | MTID FormatDefault 5 | MODL FormatDefault 6 | TOPI FormatTests 7 | TABL FormatTable 8 | OBJE 0 aa_bb \ 9 | CONT cc^dd @ 1 10 | ETAB 11 | ETOP 12 | EMOD 13 | ENDE 14 | -------------------------------------------------------------------------------- /gdal/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x 3 | #libtoolize --force --copy 4 | aclocal -I ./m4 5 | # We deliberately do not use autoheader, since it introduces PACKAGE junk 6 | # that conflicts with other packages in cpl_config.h.in (FrankW) 7 | #autoheader 8 | autoconf 9 | -------------------------------------------------------------------------------- /gdal/frmts/rik/makefile.vc: -------------------------------------------------------------------------------- 1 | 2 | OBJ = rikdataset.obj 3 | 4 | GDAL_ROOT = ..\.. 5 | 6 | !INCLUDE $(GDAL_ROOT)\nmake.opt 7 | 8 | EXTRAFLAGS = -I..\zlib 9 | 10 | default: $(OBJ) 11 | xcopy /D /Y *.obj ..\o 12 | 13 | clean: 14 | -del *.obj 15 | 16 | -------------------------------------------------------------------------------- /gdal/swig/csharp/const/makefile.vc: -------------------------------------------------------------------------------- 1 | OBJ = gdalconst_wrap.obj 2 | 3 | GDAL_ROOT = ..\..\.. 4 | 5 | !INCLUDE $(GDAL_ROOT)\nmake.opt 6 | 7 | default: $(OBJ) 8 | xcopy /D /Y *.obj .. 9 | 10 | clean: 11 | -del *.obj 12 | -del *.cs 13 | -del *.c 14 | 15 | -------------------------------------------------------------------------------- /autotest/gdrivers/data/small_grass_dataset/PERMANENT/PROJ_INFO: -------------------------------------------------------------------------------- 1 | name: Universe Transverse Mercator 2 | datum: nad83 3 | towgs84: 0.000,0.000,0.000 4 | proj: utm 5 | ellps: grs80 6 | a: 6378137.0000000000 7 | es: 0.0066943800 8 | f: 298.2572221010 9 | zone: 18 10 | --------------------------------------------------------------------------------