We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is currently no way to force an input format when using stream input.
Example: I want to convert a string in a CSV format:
let input = "wkt,\n\"POINT(10 20)\""; let stream = Readable.from(input); let output = await ogr2ogr(stream, { format: "geojson" });
This produces the following command:
ogr2ogr -f geojson -skipfailures /vsistdout/ /vsistdin/
and doesn't parse my input.
If we could optionally supply an input format, the command could look like this:
ogr2ogr -f geojson -skipfailures /vsistdout/ CSV:/vsistdin/
which works as expected.
(Using wavdev/ogr2ogr v5.1.0, ogr2ogr v3.8.4)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is currently no way to force an input format when using stream input.
Example: I want to convert a string in a CSV format:
This produces the following command:
and doesn't parse my input.
If we could optionally supply an input format, the command could look like this:
which works as expected.
(Using wavdev/ogr2ogr v5.1.0, ogr2ogr v3.8.4)
The text was updated successfully, but these errors were encountered: