Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

msewage-importer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

msewage-importer

  • 0.0.3
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Msewage::Importer

Command line tool to import a CSV file into mSewage (msewage.org). It is able to import one kind of source at a time.

Installation

$ gem install msewage-importer

Usage

$ msewage-importer --type [source_type] --source [source.json]

Currently, the following source types are supported:

  • animal_manure
  • combined_sewer_outflow
  • industrial_waste_outflow
  • latrine
  • open_defecation_site
  • open_sewage_canal_or_puddle
  • raw_sewage_outflow
  • septic_tank_cesspool
  • toilet
  • treatment_plant_outflow

Help

$ msewage-importer --help

Type of data supported

At this moment, only JSON and CSV data sources are supported. These sources should conform to the following format mSewage API

The entries might already be geocoded. If they aren't, we will attempt to do so.

The data might come from a script like this one.

JSON

{
  "sources": [
    {
      // Type with a location string that will be geocoded
      "name": "optional",
      "desc": "optional",
      "location": "location string. "
    },
    {
      // Type that will not be geocoded
      "name": "optional",
      "desc": "optional",
      "latitude": 0.00000,
      "longitude": 0.00000
    }
    ...
  ]
}

CSV

name,desc,location
Optional name,Optional description,"Some place, some town, some country"

or

name,desc,latitude,longitude
Optional name,Optional description,0.0000,0.0000

The heading row is required.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 07 Dec 2012

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc