Opened 8 years ago

Closed 8 years ago

Last modified 8 years ago

#6604 closed defect (fixed)

Too many open files reading vrt

Reported by: kyngchaos Owned by: warmerdam
Priority: normal Milestone: 2.0.4
Component: GDAL_Raster Version: 2.0.0
Severity: normal Keywords: mac vrt
Cc:

Description

Running gdalwarp with a vrt source with thousands of tiff files, but only need a small area of the vrt, approx 2500 files, I very quickly get an error about "Too many open files". gdalwarp from 1.11.5 handles this without error.

OS X 10.10, GDAL 2.1.1

Attachments (3)

eurafrasia.vrt (1.9 KB ) - added by kyngchaos 8 years ago.
primary vrt
vrts.zip (73.4 KB ) - added by kyngchaos 8 years ago.
vrts with file references
extent.prj (391 bytes ) - added by kyngchaos 8 years ago.
projection used

Download all attachments as: .zip

Change History (12)

comment:1 by Even Rouault, 8 years ago

Just in case it would make a difference could you provide the VRT + the gdalwarp command line used ? (no need for the tiffs at that stage)

comment:2 by Even Rouault, 8 years ago

I've tried a simple test and couldn't find an issue

With byte.tif from http://svn.osgeo.org/gdal/trunk/autotest/gcore/data/byte.tif

Preparation :

$ gdal_translate byte.tif byte_left.tif -srcwin 0 0 7 20
$ gdal_translate byte.tif byte_middle.tif -srcwin 7 0 7 20
$ gdal_translate byte.tif byte_right.tif -srcwin 14 0 6 20
$ gdalbuildvrt test.vrt byte_left.tif byte_middle.tif byte_right.tif 

Extract just a part that intersect byte_left.tif:

$ gdalwarp test.vrt out.tif -overwrite -te 440800 3750200 441000 3751200 --debug GDAL -q
GDAL: GDALOpen(test.vrt, this=0x17d5640) succeeds as VRT.
GDAL: GDALOpen(out.tif, this=0x17d8590) succeeds as GTiff.
GDAL: GDALClose(out.tif, this=0x17d8590)
GDAL: QuietDelete(out.tif) invoking Delete()
GDAL: GDALOpen(out.tif, this=0x17d4cd0) succeeds as GTiff.
GDAL: GDALDefaultOverviews::OverviewScan()
GDAL: GDALClose(out.tif, this=0x17d4cd0)
GDAL: GDALDriver::Create(GTiff,out.tif,3,17,1,Byte,(nil))
GDAL: GDALDefaultOverviews::OverviewScan()
GDAL: GDALOpen(byte_left.tif, this=0x17d65a0) succeeds as GTiff.
GDAL: GDAL_CACHEMAX = 796 MB
GDAL: GDALWarpKernel()::GWKNearestNoMasksOrDstDensityOnlyByte()
Src=1,2,4x17 Dst=0,0,3x17
GDAL: GDALClose(test.vrt, this=0x17d5640)
GDAL: GDALClose(byte_left.tif, this=0x17d65a0)
GDAL: GDALClose(out.tif, this=0x17d7c90)

---> one can see that only byte_left.tif is opened

Wrap the whole VRT but with a limit of maximum 2 datasets simultaneously opened (this is the min value allowed. The default is 100)

$ gdalwarp test.vrt out.tif -overwrite --debug GDAL -q --config GDAL_MAX_DATASET_POOL_SIZE 2
GDAL: GDALOpen(test.vrt, this=0x9a9580) succeeds as VRT.
GDAL: GDALOpen(out.tif, this=0x9a9d30) succeeds as GTiff.
GDAL: GDALClose(out.tif, this=0x9a9d30)
GDAL: QuietDelete(out.tif) invoking Delete()
GDAL: GDALOpen(out.tif, this=0x9a9bd0) succeeds as GTiff.
GDAL: GDALDefaultOverviews::OverviewScan()
GDAL: GDALClose(out.tif, this=0x9a9bd0)
GDAL: GDALDriver::Create(GTiff,out.tif,20,20,1,Byte,(nil))
GDAL: GDALDefaultOverviews::OverviewScan()
GDAL: GDALOpen(byte_left.tif, this=0x9ab080) succeeds as GTiff.
GDAL: GDAL_CACHEMAX = 796 MB
GDAL: GDALOpen(byte_middle.tif, this=0x9d2dc0) succeeds as GTiff.
GDAL: GDALClose(byte_left.tif, this=0x9ab080)
GDAL: GDALOpen(byte_right.tif, this=0x9a9cd0) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKNearestNoMasksOrDstDensityOnlyByte()
Src=0,0,20x20 Dst=0,0,20x20
GDAL: GDALClose(test.vrt, this=0x9a9580)
GDAL: GDALClose(byte_right.tif, this=0x9a9cd0)
GDAL: GDALClose(byte_middle.tif, this=0x9d2dc0)
GDAL: GDALClose(out.tif, this=0x9abc00)

--> one can see it is properly honoured. byte_left.tif is closed before byte_right.tif is opened.

comment:3 by kyngchaos, 8 years ago

gdalwarp -r cubic -t_srs extent.prj -tr 10000 10000 -tap -te -2571695 -2661429 2672738 2998108 eurafrasia.vrt srtm.tif

The vrt refers to 3 other vrts, because gdalbuildvrt chokes on too many command line options or too long of a command, I don't remember exactly. Total files in the 3 vrts is a little over 11000.

by kyngchaos, 8 years ago

Attachment: eurafrasia.vrt added

primary vrt

by kyngchaos, 8 years ago

Attachment: vrts.zip added

vrts with file references

by kyngchaos, 8 years ago

Attachment: extent.prj added

projection used

comment:4 by kyngchaos, 8 years ago

Debug for GDAL 2.1.1:

$ gdalwarp -r cubic -t_srs extent.prj -tr 10000 10000 -tap -te -2571695 -2661429 2672738 2998108 --debug GDAL /Volumes/MSLdata/GISdata/World/SRTM/dem/eurafrasia.vrt srtm2.tif
GDAL: AutoSkipDriver(JPEG2000)
Warning 1: Unable to find driver FileGDB to unload from GDAL_SKIP environment variable.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/eurafrasia.vrt, this=0x7ff76350f660) succeeds as VRT.
Creating output file that is 526P x 567L.
GDAL: GDALDriver::Create(GTiff,srtm2.tif,526,567,1,Int16,0x0)
Processing input file /Volumes/MSLdata/GISdata/World/SRTM/dem/eurafrasia.vrt.
GDAL: GDALDefaultOverviews::OverviewScan()
Using internal nodata values (e.g. -32767) for image /Volumes/MSLdata/GISdata/World/SRTM/dem/eurafrasia.vrt.
Copying nodata values from source /Volumes/MSLdata/GISdata/World/SRTM/dem/eurafrasia.vrt to destination srtm2.tif.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia.vrt, this=0x7ff765fe9f80) succeeds as VRT.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe.vrt, this=0x7ff763769540) succeeds as VRT.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E004.tif, this=0x7ff763436e30) succeeds as GTiff.
GDAL: GDAL_CACHEMAX = 409 MB
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E005.tif, this=0x7ff763438f30) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E006.tif, this=0x7ff763702790) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E007.tif, this=0x7ff763704680) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E008.tif, this=0x7ff76343e770) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E009.tif, this=0x7ff763440450) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E004.tif, this=0x7ff7637091a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E005.tif, this=0x7ff76370dcf0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E006.tif, this=0x7ff763711da0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E007.tif, this=0x7ff763717690) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E008.tif, this=0x7ff76344c800) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E009.tif, this=0x7ff76344e2f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E004.tif, this=0x7ff763728000) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E005.tif, this=0x7ff76372e280) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E006.tif, this=0x7ff763732800) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E007.tif, this=0x7ff763736d30) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E008.tif, this=0x7ff76345c810) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E009.tif, this=0x7ff763462570) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E004.tif, this=0x7ff7634668f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E005.tif, this=0x7ff763748af0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E006.tif, this=0x7ff76374c5e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E007.tif, this=0x7ff76346b1c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E008.tif, this=0x7ff76346de40) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E009.tif, this=0x7ff763470470) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=221282,38903,6704x3493 Dst=0,0,32x17
0GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E010.tif, this=0x7ff763472a20) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E011.tif, this=0x7ff763476d50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E012.tif, this=0x7ff76375aeb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E013.tif, this=0x7ff76375d6e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E014.tif, this=0x7ff76347cf50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E010.tif, this=0x7ff763762180) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E011.tif, this=0x7ff763483320) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E012.tif, this=0x7ff7634881e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E013.tif, this=0x7ff7664a41b0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E014.tif, this=0x7ff7664a87d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E010.tif, this=0x7ff763497280) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E011.tif, this=0x7ff76349a710) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E012.tif, this=0x7ff7664b89a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E013.tif, this=0x7ff7664bc190) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E014.tif, this=0x7ff7664bf960) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E008.tif, this=0x7ff7634ab880) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E009.tif, this=0x7ff7634adf00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E010.tif, this=0x7ff7634afa50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E011.tif, this=0x7ff7664c84d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E012.tif, this=0x7ff7664cad00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E013.tif, this=0x7ff7634b4bb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E014.tif, this=0x7ff7664ce2f0) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=226217,37946,6857x3432 Dst=32,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E015.tif, this=0x7ff7664d07d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E016.tif, this=0x7ff7634b9ee0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E017.tif, this=0x7ff7664d7850) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E018.tif, this=0x7ff7634c0a60) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E015.tif, this=0x7ff7664df200) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E016.tif, this=0x7ff7664e5fe0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E017.tif, this=0x7ff7664eba30) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E018.tif, this=0x7ff7634cb6f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E015.tif, this=0x7ff7634d86f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E016.tif, this=0x7ff7635114f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E017.tif, this=0x7ff7634e0bf0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E018.tif, this=0x7ff7635195d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E012.tif, this=0x7ff76351edb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E013.tif, this=0x7ff7662c9f20) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E014.tif, this=0x7ff763520250) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E015.tif, this=0x7ff763521090) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E016.tif, this=0x7ff763522220) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E017.tif, this=0x7ff763523440) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E018.tif, this=0x7ff7662cbf40) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=231424,37127,6837x3330 Dst=65,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E019.tif, this=0x7ff7635245d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E020.tif, this=0x7ff7662ccef0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E021.tif, this=0x7ff763525da0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E022.tif, this=0x7ff7662ce5a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E019.tif, this=0x7ff7662cf6e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E020.tif, this=0x7ff76352a310) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E021.tif, this=0x7ff7662d9110) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E022.tif, this=0x7ff7662dc9b0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E019.tif, this=0x7ff763535510) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E020.tif, this=0x7ff763539ea0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E021.tif, this=0x7ff7662e9010) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E022.tif, this=0x7ff763543f00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E019.tif, this=0x7ff7662f4da0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E020.tif, this=0x7ff76354fb60) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E021.tif, this=0x7ff7662f9430) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E022.tif, this=0x7ff763554b70) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=236746,36456,6788x3213 Dst=98,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E023.tif, this=0x7ff763557020) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E024.tif, this=0x7ff7660056a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E025.tif, this=0x7ff765e0e970) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E026.tif, this=0x7ff76355e220) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E027.tif, this=0x7ff76600ad50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E023.tif, this=0x7ff7635622a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E024.tif, this=0x7ff763567a50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E025.tif, this=0x7ff766013110) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E026.tif, this=0x7ff76356dab0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E027.tif, this=0x7ff763572e30) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E023.tif, this=0x7ff76601f410) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E024.tif, this=0x7ff76357ced0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E025.tif, this=0x7ff765c085b0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E026.tif, this=0x7ff7635816e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E027.tif, this=0x7ff765e17370) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E021.tif, this=0x7ff76358a490) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E022.tif, this=0x7ff76358b650) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E023.tif, this=0x7ff765c13cd0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E024.tif, this=0x7ff765c14c90) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E025.tif, this=0x7ff765c15cb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E026.tif, this=0x7ff765d1f1d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E027.tif, this=0x7ff765c16c50) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=242169,35935,6710x3084 Dst=131,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E028.tif, this=0x7ff765c17d60) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E029.tif, this=0x7ff765c191f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E030.tif, this=0x7ff76358ebb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E031.tif, this=0x7ff76358f980) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E028.tif, this=0x7ff765c1b0d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E029.tif, this=0x7ff765c1eb00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E030.tif, this=0x7ff765c22bf0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E031.tif, this=0x7ff765c26f80) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E028.tif, this=0x7ff76359f9c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E029.tif, this=0x7ff765c30da0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E030.tif, this=0x7ff765c359a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E031.tif, this=0x7ff7635ac620) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E028.tif, this=0x7ff7635b2f50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E029.tif, this=0x7ff765d23840) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E030.tif, this=0x7ff7635b6420) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E031.tif, this=0x7ff765c42510) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=247679,35570,6601x2942 Dst=164,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E032.tif, this=0x7ff7635ba760) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E033.tif, this=0x7ff765c47550) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E034.tif, this=0x7ff765c4a490) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E035.tif, this=0x7ff765e1bf70) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E036.tif, this=0x7ff7635c7310) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E032.tif, this=0x7ff7635ca750) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E033.tif, this=0x7ff765c59360) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E034.tif, this=0x7ff765c5e3c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E035.tif, this=0x7ff765c62a70) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E036.tif, this=0x7ff765c66450) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E032.tif, this=0x7ff765c6b4b0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E033.tif, this=0x7ff7635df300) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E034.tif, this=0x7ff7635e2d60) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E035.tif, this=0x7ff7635e5c70) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E036.tif, this=0x7ff765c71db0) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=253256,35363,6461x2787 Dst=197,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E035.tif, this=0x7ff765c74fa0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E036.tif, this=0x7ff7635ec250) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E037.tif, this=0x7ff7635ed840) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E038.tif, this=0x7ff7635eeea0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E039.tif, this=0x7ff765c7a550) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E040.tif, this=0x7ff7635f2c90) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E035.tif, this=0x7ff765c7d070) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E036.tif, this=0x7ff7635f82f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E037.tif, this=0x7ff76350ef80) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E038.tif, this=0x7ff765a0df00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E039.tif, this=0x7ff765c896f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E040.tif, this=0x7ff765c8dac0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E037.tif, this=0x7ff765c931a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E038.tif, this=0x7ff765c97130) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E039.tif, this=0x7ff765c9be10) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E040.tif, this=0x7ff765d2b1c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E037.tif, this=0x7ff765ca2c80) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E038.tif, this=0x7ff765ca6ed0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E039.tif, this=0x7ff765a38f60) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E040.tif, this=0x7ff765cad5d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E037.tif, this=0x7ff765a41c10) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E038.tif, this=0x7ff765cb49a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E039.tif, this=0x7ff765a46740) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E040.tif, this=0x7ff765a49860) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=258878,35314,6319x4611 Dst=230,0,33x35
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E041.tif, this=0x7ff765a4c970) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E042.tif, this=0x7ff765a4e9e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E043.tif, this=0x7ff765cbe460) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E044.tif, this=0x7ff765a50cd0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E045.tif, this=0x7ff765d2df40) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E041.tif, this=0x7ff765a53d90) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E042.tif, this=0x7ff765a57690) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E043.tif, this=0x7ff765a5be50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E044.tif, this=0x7ff765ccfcb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E045.tif, this=0x7ff765cd3db0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E041.tif, this=0x7ff765cd9050) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E042.tif, this=0x7ff765a6a6b0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E043.tif, this=0x7ff765a6ccf0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E044.tif, this=0x7ff765ce70a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E045.tif, this=0x7ff765a73700) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E041.tif, this=0x7ff765a79fd0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E042.tif, this=0x7ff765cf3490) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E043.tif, this=0x7ff765cf6880) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E044.tif, this=0x7ff765cfb800) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E045.tif, this=0x7ff765f04800) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E041.tif, this=0x7ff765f08660) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E042.tif, this=0x7ff765f0b380) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E043.tif, this=0x7ff765a92ce0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E044.tif, this=0x7ff765a95bf0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E045.tif, this=0x7ff765a98620) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=264458,35313,6202x4654 Dst=263,0,32x35
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E046.tif, this=0x7ff765a9b9d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E047.tif, this=0x7ff765aa2700) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E048.tif, this=0x7ff765aa70d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E049.tif, this=0x7ff765f1bf00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E050.tif, this=0x7ff765aaf9b0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E046.tif, this=0x7ff765f21ce0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E047.tif, this=0x7ff765f25860) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E048.tif, this=0x7ff765abc110) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E049.tif, this=0x7ff765ac19c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E050.tif, this=0x7ff765f2f6a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E046.tif, this=0x7ff765acae00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E047.tif, this=0x7ff765f32410) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E048.tif, this=0x7ff765ad1820) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E049.tif, this=0x7ff765f34a50) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E050.tif, this=0x7ff765ad6ab0) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=269770,35404,6501x2830 Dst=295,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E049.tif, this=0x7ff765ada470) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E050.tif, this=0x7ff765f389b0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E051.tif, this=0x7ff765f39e30) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E052.tif, this=0x7ff765f3b3c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E053.tif, this=0x7ff765f3c900) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E054.tif, this=0x7ff765d384e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E051.tif, this=0x7ff765f3ebd0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E052.tif, this=0x7ff765ae1b20) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E053.tif, this=0x7ff765f46dc0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E054.tif, this=0x7ff765f4b5f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E051.tif, this=0x7ff765aec5e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E052.tif, this=0x7ff765af07d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E053.tif, this=0x7ff765f57470) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E054.tif, this=0x7ff765f5c600) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E051.tif, this=0x7ff765ba3ae0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E052.tif, this=0x7ff765f60e70) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E053.tif, this=0x7ff765f62370) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E054.tif, this=0x7ff765f64340) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=275198,35654,6634x2982 Dst=328,0,33x17
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E055.tif, this=0x7ff765bac5c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E056.tif, this=0x7ff765f6c800) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E057.tif, this=0x7ff765bb2c10) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E058.tif, this=0x7ff765e88b00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E059.tif, this=0x7ff765bb8be0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E055.tif, this=0x7ff765bbb9a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E056.tif, this=0x7ff765bc15e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E057.tif, this=0x7ff765bc5c00) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E058.tif, this=0x7ff765bcaeb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E059.tif, this=0x7ff765f84f10) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E055.tif, this=0x7ff765bd31e0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E056.tif, this=0x7ff765bd84a0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E057.tif, this=0x7ff765f90290) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E058.tif, this=0x7ff765f94f40) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E059.tif, this=0x7ff765f99b30) succeeds as GTiff.
GDAL: GDALWarpKernel()::GWKGeneralCase()
Src=280586,36062,6734x3120 Dst=361,0,33x17
.GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E060.tif, this=0x7ff765e8ce80) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E061.tif, this=0x7ff765be62d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E062.tif, this=0x7ff765f9d950) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E063.tif, this=0x7ff765be81f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E060.tif, this=0x7ff765be95d0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E061.tif, this=0x7ff765bee590) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E062.tif, this=0x7ff765fa6100) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E063.tif, this=0x7ff765faaeb0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E060.tif, this=0x7ff765bf9990) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E061.tif, this=0x7ff765802d20) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E062.tif, this=0x7ff765fb51c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E063.tif, this=0x7ff76580bc60) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E060.tif, this=0x7ff76580f130) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E061.tif, this=0x7ff7658118c0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E062.tif, this=0x7ff765fc0da0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E063.tif, this=0x7ff765816510) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E058.tif, this=0x7ff765fc3e60) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E059.tif, this=0x7ff765819b10) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E060.tif, this=0x7ff76581b060) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E060.tif, this=0x7ff765fc80f0) succeeds as GTiff.
GDAL: GDALOpen(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E060.tif, this=0x7ff765fcd1b0) succeeds as GTiff.
ERROR 4: /Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E060.tif: Too many open files
GDAL: GDALClose(srtm2.tif, this=0x7ff763432e00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/eurafrasia.vrt, this=0x7ff76350f660)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E059.tif, this=0x7ff765f99b30)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E058.tif, this=0x7ff765f94f40)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E060.tif, this=0x7ff765fcd1b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E059.tif, this=0x7ff765f84f10)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E058.tif, this=0x7ff765bcaeb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E060.tif, this=0x7ff765fc80f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E059.tif, this=0x7ff765bb8be0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E058.tif, this=0x7ff765e88b00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E060.tif, this=0x7ff76581b060)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E059.tif, this=0x7ff765819b10)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E058.tif, this=0x7ff765fc3e60)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe.vrt, this=0x7ff763769540)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E063.tif, this=0x7ff765816510)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E062.tif, this=0x7ff765fc0da0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E061.tif, this=0x7ff7658118c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N51E060.tif, this=0x7ff76580f130)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E063.tif, this=0x7ff76580bc60)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E062.tif, this=0x7ff765fb51c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E061.tif, this=0x7ff765802d20)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N50E060.tif, this=0x7ff765bf9990)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E063.tif, this=0x7ff765faaeb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E062.tif, this=0x7ff765fa6100)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E061.tif, this=0x7ff765bee590)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N49E060.tif, this=0x7ff765be95d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E063.tif, this=0x7ff765be81f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E062.tif, this=0x7ff765f9d950)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E061.tif, this=0x7ff765be62d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia/east/N48E060.tif, this=0x7ff765e8ce80)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/asia.vrt, this=0x7ff765fe9f80)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E057.tif, this=0x7ff765f90290)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E056.tif, this=0x7ff765bd84a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E055.tif, this=0x7ff765bd31e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E054.tif, this=0x7ff765f5c600)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E053.tif, this=0x7ff765f57470)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E057.tif, this=0x7ff765bc5c00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E056.tif, this=0x7ff765bc15e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E055.tif, this=0x7ff765bbb9a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E054.tif, this=0x7ff765f4b5f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E053.tif, this=0x7ff765f46dc0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E057.tif, this=0x7ff765bb2c10)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E056.tif, this=0x7ff765f6c800)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E055.tif, this=0x7ff765bac5c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E054.tif, this=0x7ff765d384e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E053.tif, this=0x7ff765f3c900)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E054.tif, this=0x7ff765f64340)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E053.tif, this=0x7ff765f62370)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E052.tif, this=0x7ff765f60e70)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E051.tif, this=0x7ff765ba3ae0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E050.tif, this=0x7ff765ad6ab0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E049.tif, this=0x7ff765f34a50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E052.tif, this=0x7ff765af07d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E051.tif, this=0x7ff765aec5e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E050.tif, this=0x7ff765f2f6a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E049.tif, this=0x7ff765ac19c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E052.tif, this=0x7ff765ae1b20)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E051.tif, this=0x7ff765f3ebd0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E050.tif, this=0x7ff765aaf9b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E049.tif, this=0x7ff765f1bf00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E052.tif, this=0x7ff765f3b3c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E051.tif, this=0x7ff765f39e30)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E050.tif, this=0x7ff765f389b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E049.tif, this=0x7ff765ada470)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E048.tif, this=0x7ff765ad1820)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E047.tif, this=0x7ff765f32410)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E046.tif, this=0x7ff765acae00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E045.tif, this=0x7ff765a98620)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E044.tif, this=0x7ff765a95bf0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E048.tif, this=0x7ff765abc110)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E047.tif, this=0x7ff765f25860)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E046.tif, this=0x7ff765f21ce0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E045.tif, this=0x7ff765f04800)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E044.tif, this=0x7ff765cfb800)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E048.tif, this=0x7ff765aa70d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E047.tif, this=0x7ff765aa2700)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E046.tif, this=0x7ff765a9b9d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E045.tif, this=0x7ff765a73700)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E044.tif, this=0x7ff765ce70a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E043.tif, this=0x7ff765a92ce0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E042.tif, this=0x7ff765f0b380)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E041.tif, this=0x7ff765f08660)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E040.tif, this=0x7ff765a49860)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E043.tif, this=0x7ff765cf6880)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E042.tif, this=0x7ff765cf3490)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E041.tif, this=0x7ff765a79fd0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E040.tif, this=0x7ff765cad5d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E043.tif, this=0x7ff765a6ccf0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E042.tif, this=0x7ff765a6a6b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E041.tif, this=0x7ff765cd9050)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E040.tif, this=0x7ff765d2b1c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E045.tif, this=0x7ff765cd3db0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E044.tif, this=0x7ff765ccfcb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E043.tif, this=0x7ff765a5be50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E042.tif, this=0x7ff765a57690)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E041.tif, this=0x7ff765a53d90)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E040.tif, this=0x7ff765c8dac0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E045.tif, this=0x7ff765d2df40)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E044.tif, this=0x7ff765a50cd0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E043.tif, this=0x7ff765cbe460)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E042.tif, this=0x7ff765a4e9e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E041.tif, this=0x7ff765a4c970)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E040.tif, this=0x7ff7635f2c90)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E039.tif, this=0x7ff765a46740)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E038.tif, this=0x7ff765cb49a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E037.tif, this=0x7ff765a41c10)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E036.tif, this=0x7ff765c71db0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E035.tif, this=0x7ff7635e5c70)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E039.tif, this=0x7ff765a38f60)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E038.tif, this=0x7ff765ca6ed0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E037.tif, this=0x7ff765ca2c80)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E036.tif, this=0x7ff765c66450)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E035.tif, this=0x7ff765c62a70)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E039.tif, this=0x7ff765c9be10)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E038.tif, this=0x7ff765c97130)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E037.tif, this=0x7ff765c931a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E036.tif, this=0x7ff7635c7310)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E035.tif, this=0x7ff765e1bf70)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E039.tif, this=0x7ff765c896f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E038.tif, this=0x7ff765a0df00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E037.tif, this=0x7ff76350ef80)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E036.tif, this=0x7ff7635f82f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E035.tif, this=0x7ff765c7d070)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E039.tif, this=0x7ff765c7a550)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E038.tif, this=0x7ff7635eeea0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E037.tif, this=0x7ff7635ed840)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E036.tif, this=0x7ff7635ec250)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E035.tif, this=0x7ff765c74fa0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E034.tif, this=0x7ff7635e2d60)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E033.tif, this=0x7ff7635df300)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E032.tif, this=0x7ff765c6b4b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E031.tif, this=0x7ff765c42510)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E034.tif, this=0x7ff765c5e3c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E033.tif, this=0x7ff765c59360)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E032.tif, this=0x7ff7635ca750)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E031.tif, this=0x7ff7635ac620)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E034.tif, this=0x7ff765c4a490)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E033.tif, this=0x7ff765c47550)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E032.tif, this=0x7ff7635ba760)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E031.tif, this=0x7ff765c26f80)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E030.tif, this=0x7ff7635b6420)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E029.tif, this=0x7ff765d23840)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E028.tif, this=0x7ff7635b2f50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E027.tif, this=0x7ff765c16c50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E026.tif, this=0x7ff765d1f1d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E030.tif, this=0x7ff765c359a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E029.tif, this=0x7ff765c30da0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E028.tif, this=0x7ff76359f9c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E027.tif, this=0x7ff765e17370)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E026.tif, this=0x7ff7635816e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E030.tif, this=0x7ff765c22bf0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E029.tif, this=0x7ff765c1eb00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E028.tif, this=0x7ff765c1b0d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E027.tif, this=0x7ff763572e30)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E026.tif, this=0x7ff76356dab0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E031.tif, this=0x7ff76358f980)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E030.tif, this=0x7ff76358ebb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E029.tif, this=0x7ff765c191f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E028.tif, this=0x7ff765c17d60)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E027.tif, this=0x7ff76600ad50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E026.tif, this=0x7ff76355e220)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E025.tif, this=0x7ff765c15cb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E024.tif, this=0x7ff765c14c90)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E023.tif, this=0x7ff765c13cd0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E022.tif, this=0x7ff76358b650)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N52E021.tif, this=0x7ff76358a490)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E025.tif, this=0x7ff765c085b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E024.tif, this=0x7ff76357ced0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E023.tif, this=0x7ff76601f410)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E022.tif, this=0x7ff763554b70)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E021.tif, this=0x7ff7662f9430)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E025.tif, this=0x7ff766013110)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E024.tif, this=0x7ff763567a50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E023.tif, this=0x7ff7635622a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E022.tif, this=0x7ff763543f00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E021.tif, this=0x7ff7662e9010)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E025.tif, this=0x7ff765e0e970)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E024.tif, this=0x7ff7660056a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E023.tif, this=0x7ff763557020)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E022.tif, this=0x7ff7662dc9b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E021.tif, this=0x7ff7662d9110)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E020.tif, this=0x7ff76354fb60)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E019.tif, this=0x7ff7662f4da0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E018.tif, this=0x7ff7662cbf40)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E017.tif, this=0x7ff763523440)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E020.tif, this=0x7ff763539ea0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E019.tif, this=0x7ff763535510)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E018.tif, this=0x7ff7635195d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E017.tif, this=0x7ff7634e0bf0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E020.tif, this=0x7ff76352a310)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E019.tif, this=0x7ff7662cf6e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E018.tif, this=0x7ff7634cb6f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E017.tif, this=0x7ff7664eba30)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E022.tif, this=0x7ff7662ce5a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E021.tif, this=0x7ff763525da0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E020.tif, this=0x7ff7662ccef0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E019.tif, this=0x7ff7635245d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E018.tif, this=0x7ff7634c0a60)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E017.tif, this=0x7ff7664d7850)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E016.tif, this=0x7ff763522220)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E015.tif, this=0x7ff763521090)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E014.tif, this=0x7ff763520250)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E013.tif, this=0x7ff7662c9f20)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N51E012.tif, this=0x7ff76351edb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E016.tif, this=0x7ff7635114f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E015.tif, this=0x7ff7634d86f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E014.tif, this=0x7ff7664ce2f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E013.tif, this=0x7ff7634b4bb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E012.tif, this=0x7ff7664cad00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E016.tif, this=0x7ff7664e5fe0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E015.tif, this=0x7ff7664df200)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E014.tif, this=0x7ff7664bf960)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E013.tif, this=0x7ff7664bc190)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E012.tif, this=0x7ff7664b89a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E016.tif, this=0x7ff7634b9ee0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E015.tif, this=0x7ff7664d07d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E014.tif, this=0x7ff7664a87d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E013.tif, this=0x7ff7664a41b0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E012.tif, this=0x7ff7634881e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E011.tif, this=0x7ff7664c84d0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E010.tif, this=0x7ff7634afa50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E009.tif, this=0x7ff7634adf00)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N50E008.tif, this=0x7ff7634ab880)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E011.tif, this=0x7ff76349a710)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E010.tif, this=0x7ff763497280)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E009.tif, this=0x7ff763470470)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E008.tif, this=0x7ff76346de40)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E011.tif, this=0x7ff763483320)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E010.tif, this=0x7ff763762180)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E009.tif, this=0x7ff763462570)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E008.tif, this=0x7ff76345c810)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E014.tif, this=0x7ff76347cf50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E013.tif, this=0x7ff76375d6e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E012.tif, this=0x7ff76375aeb0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E011.tif, this=0x7ff763476d50)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E010.tif, this=0x7ff763472a20)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E009.tif, this=0x7ff76344e2f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E008.tif, this=0x7ff76344c800)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E007.tif, this=0x7ff76346b1c0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E006.tif, this=0x7ff76374c5e0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E005.tif, this=0x7ff763748af0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N49E004.tif, this=0x7ff7634668f0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E007.tif, this=0x7ff763736d30)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E006.tif, this=0x7ff763732800)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E005.tif, this=0x7ff76372e280)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N48E004.tif, this=0x7ff763728000)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E007.tif, this=0x7ff763717690)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E006.tif, this=0x7ff763711da0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E005.tif, this=0x7ff76370dcf0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N47E004.tif, this=0x7ff7637091a0)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E009.tif, this=0x7ff763440450)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E008.tif, this=0x7ff76343e770)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E007.tif, this=0x7ff763704680)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E006.tif, this=0x7ff763702790)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E005.tif, this=0x7ff763438f30)
GDAL: GDALClose(/Volumes/MSLdata/GISdata/World/SRTM/dem/europe/N46E004.tif, this=0x7ff763436e30)

comment:5 by kyngchaos, 8 years ago

counted 254 file opens before error.

GDAL 1.11 debug is much longer, since it succeeds. I see there than every open is immediately followed by a close.

comment:6 by Even Rouault, 8 years ago

Resolution: fixed
Status: newclosed

In 34775:

gdal_translate & gdalwarp: lower the default value of GDAL_MAX_DATASET_POOL_SIZE to 100 on MacOSX (fixes #6604)

comment:7 by Even Rouault, 8 years ago

In 34776:

gdal_translate & gdalwarp: lower the default value of GDAL_MAX_DATASET_POOL_SIZE to 100 on MacOSX (fixes #6604)

comment:8 by Even Rouault, 8 years ago

In 34777:

gdal_translate & gdalwarp: lower the default value of GDAL_MAX_DATASET_POOL_SIZE to 100 on MacOSX (fixes #6604)

comment:9 by Even Rouault, 8 years ago

Component: defaultGDAL_Raster
Keywords: mac vrt added
Milestone: 2.0.4
Version: 2.1.12.0.0

As a workaround you can manually add "--config GDAL_MAX_DATASET_POOL_SIZE 100" (or define it as environement variable)

Note: See TracTickets for help on using tickets.