Re: [gdal-dev] gdal.BuildVRT with an empty destination

2019-03-13 Thread Patrick Young
Thanks Even, this is awesome functionality! Definitely makes it even easier to work with VRTs in memory! On Wed, Mar 13, 2019 at 3:37 AM Even Rouault wrote: > On mardi 12 mars 2019 16:42:34 CET Patrick Young wrote: > > Hi all, > > > > I was browsing some GDAL test cases and came across some test

Re: [gdal-dev] gdal.BuildVRT with an empty destination

2019-03-13 Thread Even Rouault
On mardi 12 mars 2019 16:42:34 CET Patrick Young wrote: > Hi all, > > I was browsing some GDAL test cases and came across some tests like so: > > ds = gdal.BuildVRT('',...) > > aka the destination is an empty string. Is the returned dataset a purely > in memory object in this case? I assume it

[gdal-dev] gdal.BuildVRT with an empty destination

2019-03-12 Thread Patrick Young
Hi all, I was browsing some GDAL test cases and came across some tests like so: ds = gdal.BuildVRT('',...) aka the destination is an empty string. Is the returned dataset a purely in memory object in this case? I assume it is safe to use like any other dataset; some of the other VRT related te