Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
ogr2ogr enables spatial file conversion and reprojection of spatial data through the use of ogr2ogr (gdal) tool
ogr2ogr requires the command line tool ogr2ogr - gdal install page. It is recommended to use the latest version.
npm install ogr2ogr
ogr2ogr takes either a path, a stream, or a GeoJSON object. The result of the transformation can be consumed via callback or stream:
var ogr2ogr = require('ogr2ogr')
var ogr = ogr2ogr('/path/to/spatial/file')
ogr.exec(function (er, data) {
if (er) console.error(er)
console.log(data)
})
var ogr2 = ogr2ogr('/path/to/another/spatial/file')
ogr2.stream().pipe(writeStream)
See /examples
for usage examples and /test/api.js
.
The goal is for ogr2ogr to support most (if not all) formats your underlying ogr2ogr supports. You can see the progress of that in /tests/drivers.js
.
It also will:
ogr2ogr takes chainable modifier functions:
var shapefile = ogr2ogr('/path/to/spatial/file.geojson')
.format('ESRI Shapefile')
.skipfailures()
.stream()
shapefile.pipe(fs.createWriteStream('/shapefile.zip'))
Available options include:
.project(dest, src)
- reproject data (defaults to: "ESPG:4326").format(fmt)
- set output format (defaults to: "GeoJSON").timeout(ms)
- milliseconds before ogr2ogr is killed (defaults to: 15000).skipfailures()
- skip failures (continue after failure, skipping failed feature -- by default failures are not skipped).options(arr)
- array of custom org2ogr arguments (e.g. ['-fieldmap', '2,-1,4']
).destination(str)
- ogr2ogr destination (directly tell ogr2ogr where the output should go, useful for writing to databases)(The MIT License)
Copyright (c) 2016 Marc Harter <wavded@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
ogr2ogr wrapper w/ multiple format support
The npm package ogr2ogr receives a total of 1,794 weekly downloads. As such, ogr2ogr popularity was classified as popular.
We found that ogr2ogr demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.