Giter Club home page Giter Club logo

Comments (6)

zachsa avatar zachsa commented on August 27, 2024 1

Thanks very much!

from ogr2ogr.

zachsa avatar zachsa commented on August 27, 2024

Actually I have just tested this, and the command is not set this way

from ogr2ogr.

wavded avatar wavded commented on August 27, 2024

I'd be open to PR that allows you to switch the base command from the default.

from ogr2ogr.

zachsa avatar zachsa commented on August 27, 2024

I've added some code that as far as I can tell will work. (I'm sure that it allows for switching the base command).

However, I'm not able to get the examples to run -, related to this thread: #26

If I replace this statement:

let s = cp.spawn('ogr2ogr', logCommand(args), commandOptions)

With this statment (i.e. provide a command that I know exists on the $PATH of the invoking user):

let s = cp.spawn('docker run -v /tmp/:/tmp --rm osgeo/gdal:alpine-small-latest ogr2ogr', logCommand(args), commandOptions)

Running the examples I get the ENOENT error (the docker command appears not to be findable). If I replace cp.spawn with cp.exec then I get an error from the GDAL ogr2ogr client:

let s = cp.exec('docker run -v /tmp/:/tmp --rm osgeo/gdal:alpine-small-latest ogr2ogr', logCommand(args), commandOptions)

FAILURE: no target datasource provided

I think that the spawn command is not working as expected. I'm using Node.js 14.15 on WSL2 Ubuntu 20.04

from ogr2ogr.

zachsa avatar zachsa commented on August 27, 2024

I've adjusted the API like this:

// examples/docker.js
const ogr2ogr = require('../')

ogr2ogr('../test/samples/sample.shp.zip')
  .command('docker run -v /tmp/:/tmp --rm osgeo/gdal:alpine-small-latest ogr2ogr') // <= This is the addition
  .exec(function (er, data) {
    if (er) {
      console.log('er', er)
    } else {
      console.log('data', data)
    }
  })

from ogr2ogr.

wavded avatar wavded commented on August 27, 2024

Release in v2.1.0

from ogr2ogr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.