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
so a initial work around would be to get output files instead of relying on the return value of ogr2ogr, but that would requiree knowing what these files are in advance (writing a special shaprefile only converter), which is difficult because of #44 as processing can't dictate the output filename, so no general purpose function seems reliable
to support shapefiles (or others?), I'd propose returning an array from ogr2ogr if multiple files are created or documenting this behavior and implementing a fix for #44
The text was updated successfully, but these errors were encountered:
feat: add env param to config to set global gdal configuration
feat: add gdalinfo and ogrinfo apps and add the app results to dataset object
fix: raster/vector type calculation
fix: prevent app from terminating if a warning occurs
fix: support node.js >= 18
chore: update emscripten version to 3.1.50 (temporary disable PDS driver)
feat: list all created files with all param in the outputs of ogr2ogr, gdal_translate, gdalwarp, gdal_rasterize #45
feat: add outputName param to ogr2ogr, gdal_translate, gdalwarp, gdal_rasterize #44
fix: mocha issue causing tests not to start for Chrome
feat: add playground to test
feat: add more info about dataset in gdal3.js gui
Everyone hates shapefiles: it generates multiple files: https://gdal.org/drivers/vector/shapefile.html
Currently, only the obvious *.shp file is presented as
filePath
. It should be generating at least three (four typically) files: .shp, .shx, and .dbfto allow the ogr2ogr api seems it seems two options:
it looks like these files are being generated:
so a initial work around would be to get output files instead of relying on the return value of ogr2ogr, but that would requiree knowing what these files are in advance (writing a special shaprefile only converter), which is difficult because of #44 as processing can't dictate the output filename, so no general purpose function seems reliable
to support shapefiles (or others?), I'd propose returning an array from ogr2ogr if multiple files are created or documenting this behavior and implementing a fix for #44
The text was updated successfully, but these errors were encountered: