Adding timeout to geocoding script to deal with API rate limiting
This commit is contained in:
parent
08ea6d9dc2
commit
0be8b78e6a
@ -5,13 +5,14 @@ var jf = require('jsonfile');
|
||||
var _ = require('underscore');
|
||||
|
||||
|
||||
function queryPosition(gc, address, cache, callback) {
|
||||
function queryPosition(gc, address, cache, sequence, callback) {
|
||||
if (_.has(cache, address)) {
|
||||
console.log('Cache lookup success for:\n\t%s', address);
|
||||
callback(cache[address]);
|
||||
return;
|
||||
return sequence;
|
||||
}
|
||||
|
||||
setTimeout(function() {
|
||||
gc.geocode(address, function(err, res) {
|
||||
if (err) {
|
||||
console.log('Geocode lookup fail for: \n\t%s', address);
|
||||
@ -22,6 +23,9 @@ function queryPosition(gc, address, cache, callback) {
|
||||
callback(cache[address] = res[0]);
|
||||
}
|
||||
});
|
||||
}, sequence * 200);
|
||||
|
||||
return sequence + 1;
|
||||
}
|
||||
|
||||
|
||||
@ -31,9 +35,10 @@ function main() {
|
||||
var srcCount = srcData.length;
|
||||
var cacheData = jf.readFileSync('cache/geo.json', {throws: false}) || {};
|
||||
var destData = [];
|
||||
var sequence = 0;
|
||||
|
||||
_.each(srcData, function(srcItem) {
|
||||
queryPosition(gc, srcItem.address, cacheData, function(geo) {
|
||||
sequence = queryPosition(gc, srcItem.address, cacheData, sequence, function(geo) {
|
||||
if (geo) {
|
||||
var destItem = _.clone(srcItem);
|
||||
destItem.geo = geo;
|
||||
|
Loading…
Reference in New Issue
Block a user