-
Notifications
You must be signed in to change notification settings - Fork 990
Open
Labels
Description
I am currently experimenting with scaling a grid on a map, applying different sized grids in the same bounding box.
However the grids don't neatly align. This means that it isn't possible to 'sub-divide' the larger grid cells.
A simple example of this is here - the smaller grid isn't aligned with the larger one, and looking at the coordinates neither aligns neatly with any bounding box edge - for example the 1st cell polygon has coordinates:
[
[ -13.997847567809494, 48.49298963050195 ],
[ -13.997847567809494, 49.494158025418294 ],
[ -12.498206306507912, 49.494158025418294 ],
[ -12.498206306507912, 48.49298963050195 ],
[ -13.997847567809494, 48.49298963050195 ]
]
Is there a way to fix this?
let map = L.map('map', {
center: [55, -4],
zoomSnap: 0,
zoom: 6,
})
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', { maxZoom: 12, minZoom: 5 }).addTo(map)
const bbox = [-14, 48, 4, 61]
const options = {units: 'degrees'}
let grid1 = turf.squareGrid(bbox, 1, options)
let grid2 = turf.squareGrid(bbox, 0.5, options)
L.geoJson(grid1).addTo(map)
L.geoJson(grid2).addTo(map)
