npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

geobatch

v1.4.3

Published

Batch geocode addresses from multiple sources.

Downloads

12

Readme

node-geobatch

Build Status npm version

forthebadge

Batch geocode addresses from multiple sources. It limits the calls to not run in OVER_QUERY_LIMIT by the Google Maps API. Results are cached locally to prevent duplicate geocoding requests.

Usage

Install GeoBatch:

npm install geobatch --save

Then include and use it in your project:

var GeoBatch = require('geobatch'),
  geoBatch = new GeoBatch();

geoBatch.geocode(['Hamburg', 'Berlin'])
  .on('data', function(data) {
    console.log('Geocode result', data);
  })
  .on('end', function() {
    console.log('Finished!');
  });

geoBatch.geocode also accepts a stream as input.

Result

The data in the example above is an object like this:

{
  error: null,
  address: 'Hamburg',
  input: 'Hamburg',
  location: { lat: 53.5510846, lng: 9.9936818 },
  result: {
    address_components: [ … ],
    formatted_address: 'Hamburg, Germany',
    geometry: {
      bounds: { northeast: [Object], southwest: [Object] },
      location: { lat: 53.5510846, lng: 9.9936818 },
      location_type: 'APPROXIMATE',
      viewport: { northeast: [Object], southwest: [Object] } },
      place_id: 'ChIJuRMYfoNhsUcRoDrWe_I9JgQ',
      types: [ 'locality', 'political' ]
    }
  },
  results: [{
    address_components: [ … ],
    formatted_address: 'Hamburg, Germany',
    geometry: {
      bounds: { northeast: [Object], southwest: [Object] },
      location: { lat: 53.5510846, lng: 9.9936818 },
      location_type: 'APPROXIMATE',
      viewport: { northeast: [Object], southwest: [Object] } },
      place_id: 'ChIJuRMYfoNhsUcRoDrWe_I9JgQ',
      types: [ 'locality', 'political' ]
    }]
  },
  total: 2,
  current: 1,
  pending: 1,
  percent: 50,
  estimatedDuration: 189
}

error

Type string. Contains the error message. Default null.

address

Type string. Contains the address that was put into the geocoder. Default ''.

input

Contains the original input. This was the input to the accessor function to get the address.

location

Type Object. The coordinates returned from the Google Maps Geocoding API. Default {}.

result

Type Object. The complete first result item from the Google Maps Geocoding API. Default {}.

results

Type Array. The complete result from the Google Maps Geocoding API.

total

Type Number. The total number of addresses to geocode. (Not included if stream was provided.)

current

Type Number. The index of the current geocoded address.

pending

Type Number. The number of addresses to still geocode. (Not included if stream was provided.)

percent

Type Number. The percentage that got geocoded already. (Not included if stream was provided.)

estimatedDuration

Type Number. The estimated duration based on past progress. In milliseconds. (Not included if stream was provided.)

Options

You can pass in options on initalization of the GeoBatch:

new GeoBatch({
  clientId: 'myClientId',
  privateKey: 'myPrivateKey',
  apiKey: 'myApiKey',
  cacheFile: 'myGeocache.db',
  accessor: myAccessorFunction,
  maxRetries: 1,
  queriesPerSecond: 50
});

clientId

Type String. The Google Maps Client ID, if you are using Google for Work. If this is passed in, the privateKey is also required. You must provide either a clientId and privateKey, or an apiKey. Default is null.

privateKey

Type String. The Google Maps private key, if you are using Google for Work. If this is passed in, the clientId is also required. Default is null.

apiKey

Type String. The Google Maps API key. If this is passed, neither clientId nor privateKey may be set. You must provide either a clientId and privateKey, or an apiKey. Default is null.

cacheFile

Type String. The path of the cache file, in which the geocoding responses are cached. Default is geocache.db.

accessor

Type Function. An accessor function that extracts the address data from the provided input. Defaults to:

function(address) {
  return address;
}

maxRetries

Type Number. This option defines how often Geobatch will retry geocoding if the query limit was exceeded. Default is 0.

queriesPerSecond

Type Number. The maximum number of requests per second. This number must be between 1 and 50 (inclusive). Please note that due to varying network latency the maximum value of 50 QPS will result in occasional OVER_QUERY_LIMIT errors. Use a moderate value (the default is safe), or the maxRetries option. Default is 35.

Contribution

Make sure to follow the Git Commit Conventions! Test and lint the code and adapt to the code style used in the project.

Clone the repository and run:

npm install

To run the tests, run:

npm test

To make a release, run:

npm run release patch|minor|major

License (MIT)

Copyright © 2015 Ubilabs GmbH

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.