This package has been deprecated

Author message:

package renamed to mongosm

node-mongosm

0.0.5 • Public • Published

Node-Mongosm

Node-mongosm will convert .osm files from Open Street Map and save / upsert new entries to your local or external mongodb instance.

##Installation

Install the latest stable build from npm.

npm install mongosm

Optionally you can install the latest from this repo by cloning and installing with the -d option.

npm install -d

##Run

With the standard installation of Mongodb you can start parsing from the command line

mongod &
./mongosm -v -f "your-file.osm"

Alternatively in lib/options.js set the {filename: "your_file.osm"} and run the app. You will also want to set {upsert: true/false} to your needs.

note: if upsert = false, documents which already exist in the database will not be modified and will not be printed out in verbose mode.

node mongosm

All Mongoose options are passed to mongoose connection, from the options.mongoose object. Uploading to an external database can be achieved by adding any settings to the mongoose: {} object in options.js

##Command-line Flags

  -v verbose
  -f file path
  -l to lowercase
  -upsert upcert all entries : defaults to save
  -s suppress errors
  -host host name
  -port port
  -u set db username
  -p set db password
  -tb use time bucketing.
  -sc place all nodes, ways and relations in the same collection.
  -k document filter: removes all attributes except ones supplied in comma separated list EX: -k way:user,timestamp
  -i document filter: includes all attributes except ones supplied in comma separated list EX: -i way:user,timestamp
  -db database
  -tb use time bucketing.
  -h help

Options

Command line options are generally preferred, but option defaults may be manually set in the options.js file.

Document Filter Options:

  ignoreAttributes: []  // items to excluded
  keepAttributes: [] // strict list of items to include

only one document filter type should be needed

Way Specific Options:

  geometry: true // include the generated LineString or Polygon
  nodes: false // include the array of node references that make up the way

Database Options:

All Mongoose options are supported from options.mongoose in options.js.

##Document Filtering

By setting the options ignoreAttributes, keepAttributes per node, way or relation you can filter the document pre save. The options should be provided an array of the key names which are to be effected. This can also be achieved by using the -k or -i command line flag in the following format :,.

Via Command Line:

./mongosm -v -k way:loc,user

Via Options:

way {
  keepAttributes: ['loc','user']
}

##Time Stamp Bucketing

When run with the timeBucket option to true or the -tb flag. You can search and index via day month or year much more efficiently with an $exists operator.

Searches for all entries in january of 2009 would look like.

db.geo.find({'osmTimeBucket.2009.01':{$exists:true}});

##Wish-list

  • Testing vs sample .osm files
  • Support for multiple files

Readme

Keywords

none

Package Sidebar

Install

npm i node-mongosm

Weekly Downloads

1

Version

0.0.5

License

MIT

Last publish

Collaborators

  • sammerry