You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am dealing with datasets that I cannot bring into memory all at once, and to my understanding methods like vectorTranslateAsync need the data to be provided as a dataset in memory.
I am wondering if there is a way to leverage this library to expose ogr2ogr in path. I would like to execute some function like
spawn('ogr2ogr',ogrArgs)
is that possible using this library? If not, is there a way to use this library to process data with ogr without bringing the full dataset into memory?
The text was updated successfully, but these errors were encountered:
Basically it is any variety of common geospatial formats (shp, kmz, gpkg, etc.) to geojson. I haven't tried kmz or gpkg but it looks like gdal.open / gdal.openAsync does that automatically for shapefiles. Is there a way to do that transformation without storing the output in memory?
Also, I am happy to close this and move over to stack overflow or gis stack exchange if you'd rather deal with this sort of question there!
Hi, and thank you so much for this library!
I am dealing with datasets that I cannot bring into memory all at once, and to my understanding methods like
vectorTranslateAsync
need the data to be provided as a dataset in memory.I am wondering if there is a way to leverage this library to expose ogr2ogr in path. I would like to execute some function like
is that possible using this library? If not, is there a way to use this library to process data with ogr without bringing the full dataset into memory?
The text was updated successfully, but these errors were encountered: