Re: [gdal-dev] How to convert GDAL Vector dataset to memory stream

2020-06-21 Thread MRRAJESH
Thanks Tamas for your information. I am able to open the MVT data file using OGR. I have referred your example and able to check the layer names and features. My requirement is: I need to return this entire MVT data i.e., datasource in stream format. How to achieve this? In one of the GDAL-DEV th

Re: [gdal-dev] How to convert GDAL Vector dataset to memory stream

2020-06-21 Thread Tamas Szekeres
Hi, MVT is a vector format, so you should use OGR to manipulate it. To open the OGR format and iterate the features on a layer refer to the following c# example: https://github.com/OSGeo/gdal/blob/master/gdal/swig/csharp/apps/ogrinfo.cs Also refer to the MVT driver information page, how the conn