Re: [gdal-dev] Vector Tile Service

2020-05-12 Thread Ari Jolma
Sorry, no. I'm using PostGIS via tilestrata-postgismvt. The code that combines the single-theme tiles it makes is mine, though. The tilestrata-postgismvt works under tilestrata, which works under express. Ari rmaddu kirjoitti 12.5.2020 klo 14.33: Hi, Are you using GDAL binaries for vector ti

Re: [gdal-dev] Vector Tile Service

2020-05-12 Thread rmaddu
Hi, Are you using GDAL binaries for vector tiles generation? Can you please share the sample code? Regards, Rajesh -- Sent from: http://osgeo-org.1560.x6.nabble.com/GDAL-Dev-f3742093.html ___ gdal-dev mailing list gdal-dev@lists.osgeo.org https://lis

Re: [gdal-dev] Vector Tile Service

2020-05-12 Thread Ari Jolma
I don't know about C#. In JavaScript I have a use case where I combine several single theme vector tiles into one multi theme tile each in its own thread async and then combine them before sending. I use the async.series method for that. Ari rmaddu kirjoitti 12.5.2020 klo 13.28: Hi, We have

Re: [gdal-dev] Vector Tile Service

2020-05-12 Thread rmaddu
Hi, We have "VRT - Virtual format" for Vectors also (https://gdal.org/drivers/vector/vrt.html). Using this format and with C# bindings, presently I am able to generate the vector tiles in disk. My problem here is - Presently I have written code in console, whenever I open this console applicatio

Re: [gdal-dev] Vector Tile Service

2020-05-12 Thread Ari Jolma
rmaddu, VRT is raster format and MVT is vector format, so they are incompatible without raster to vector transformation. So, I think there's something missing from your problem statement. Best, Ari rmaddu . kirjoitti 12.5.2020 klo 8.14: I need some help on usage of GDAL C# bindings to conve

[gdal-dev] Vector Tile Service

2020-05-11 Thread rmaddu .
I need some help on usage of GDAL C# bindings to convert VRT to MVT. How do I know that, below call is complete? We observed that below call is Async (All the code lines are executed and Parent thread is waiting until the MVT files/folders are created in disk). Is this correct? I want to create a