Created
April 27, 2016 20:30
-
-
Save jonahadkins/5f7cb5c1ca6a1bd3732820f9dca53866 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = function(data, tile, writeData, done) { | |
var count = 0; | |
if (data.osm.roads) count += data.osm.roads.length; | |
if (data.osm.buildings) count += data.osm.buildings.length; | |
console.log(data.osm.roads); | |
console.log(data.osm.buildings); | |
done(null, count); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment