Created
August 12, 2016 09:13
-
-
Save kekscom/ac499df64c8d861776a61031d577d8bf to your computer and use it in GitHub Desktop.
Split huge GeoJSON files into tiles
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
var tileSize = 256; | |
var zoom = 15; | |
var srcFile = 'huge.geojson'; | |
var dstPath = 'tiles/'; | |
var minX = Number.MAX_VALUE; | |
var maxX = 0; | |
var minY = Number.MAX_VALUE; | |
var maxY = 0; | |
//***************************************************************************** | |
var worldSize = tileSize <<zoom; | |
var tiles = {}; | |
var properties = {}; | |
//***************************************************************************** | |
function getTileBBox(polygon) { | |
var | |
minLon = Infinity, | |
maxLon = -Infinity, | |
minLat = Infinity, | |
maxLat = -Infinity; | |
for (var i = 0, il = polygon.length; i < il; i++) { | |
minLon = Math.min(minLon, polygon[i][0]); | |
maxLon = Math.max(maxLon, polygon[i][0]); | |
minLat = Math.min(minLat, polygon[i][1]); | |
maxLat = Math.max(maxLat, polygon[i][1]); | |
} | |
var minXY = project(minLat, minLon, worldSize); | |
var maxXY = project(maxLat, maxLon, worldSize); | |
var | |
newMinX = Math.min(minXY.x,maxXY.x), | |
newMinY = Math.min(minXY.y,maxXY.y), | |
newMaxX = Math.max(minXY.x,maxXY.x), | |
newMaxY = Math.max(minXY.y,maxXY.y); | |
return { | |
minX: newMinX/tileSize <<0, | |
minY: newMinY/tileSize <<0, | |
maxX: newMaxX/tileSize <<0, | |
maxY: newMaxY/tileSize <<0 | |
}; | |
} | |
function addToTiles(feature, tileBBox) { | |
var x, y, key; | |
for (y = tileBBox.minY; y <= tileBBox.maxY; y++) { | |
for (x = tileBBox.minX; x <= tileBBox.maxX; x++) { | |
key = [x, y, zoom].join(','); | |
if (!tiles[key]) { | |
maxX = x > maxX ? x : maxX; | |
maxY = y > maxY ? y : maxY; | |
minX = x < minX ? x : minX; | |
minY = y < minY ? y : minY; | |
tiles[key] = { | |
type: 'FeatureCollection', | |
features: [] | |
}; | |
} | |
tiles[key].features.push(feature); | |
} | |
} | |
} | |
function project(latitude, longitude, worldSize) { | |
var | |
x = longitude/360 + 0.5, | |
y = Math.min(1, Math.max(0, 0.5 - (Math.log(Math.tan((Math.PI/4) + (Math.PI/2)*latitude/180)) / Math.PI) / 2)); | |
return { x: x*worldSize, y: y*worldSize }; | |
} | |
//***************************************************************************** | |
var colors = []; | |
var fs = require('fs'); | |
var str = fs.readFileSync(srcFile, 'utf8'); | |
var geojson = JSON.parse(str); | |
console.log('processing '+ geojson.features.length +' features...'); | |
var feature, tileBBox; | |
for (var i = 0, il = geojson.features.length; i < il; i++) { | |
feature = geojson.features[i]; | |
tileBBox = getTileBBox(feature.geometry.coordinates[0]); | |
addToTiles(feature, tileBBox); | |
} | |
for (var key in tiles) { | |
console.log('writing tile '+ key + '.json, '+ tiles[key].features.length +' features'); | |
fs.writeFileSync(dstPath + key + '.json', JSON.stringify(tiles[key])); | |
} | |
console.log('Done.'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment