| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Generates a collection of geojson files based on an overpass query for a given theme | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | import {TileRange, Utils} from "../Utils"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Utils.runningFromConsole = true | 
					
						
							|  |  |  | import {Overpass} from "../Logic/Osm/Overpass"; | 
					
						
							|  |  |  | import {writeFileSync, existsSync, readFileSync} from "fs"; | 
					
						
							|  |  |  | import {TagsFilter} from "../Logic/Tags/TagsFilter"; | 
					
						
							|  |  |  | import {Or} from "../Logic/Tags/Or"; | 
					
						
							|  |  |  | import LayoutConfig from "../Customizations/JSON/LayoutConfig"; | 
					
						
							|  |  |  | import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; | 
					
						
							|  |  |  | import ScriptUtils from "./ScriptUtils"; | 
					
						
							|  |  |  | import ExtractRelations from "../Logic/Osm/ExtractRelations"; | 
					
						
							|  |  |  | import * as OsmToGeoJson from "osmtogeojson"; | 
					
						
							|  |  |  | import {Script} from "vm"; | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  | import MetaTagging from "../Logic/MetaTagging"; | 
					
						
							|  |  |  | import State from "../State"; | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  | import {createEvalAwarePartialHost} from "ts-node/dist/repl"; | 
					
						
							|  |  |  | import {fail} from "assert"; | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | function createOverpassObject(theme: LayoutConfig) { | 
					
						
							|  |  |  |     let filters: TagsFilter[] = []; | 
					
						
							|  |  |  |     let extraScripts: string[] = []; | 
					
						
							|  |  |  |     for (const layer of theme.layers) { | 
					
						
							|  |  |  |         if (typeof (layer) === "string") { | 
					
						
							|  |  |  |             throw "A layer was not expanded!" | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (layer.doNotDownload) { | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (layer.source.geojsonSource !== undefined) { | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |             // We download these anyway - we are building the cache after all!
 | 
					
						
							|  |  |  |             //continue;
 | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Check if data for this layer has already been loaded
 | 
					
						
							|  |  |  |         if (layer.source.overpassScript !== undefined) { | 
					
						
							|  |  |  |             extraScripts.push(layer.source.overpassScript) | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             filters.push(layer.source.osmTags); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     filters = Utils.NoNull(filters) | 
					
						
							|  |  |  |     extraScripts = Utils.NoNull(extraScripts) | 
					
						
							|  |  |  |     if (filters.length + extraScripts.length === 0) { | 
					
						
							|  |  |  |         throw "Nothing to download! The theme doesn't declare anything to download" | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return new Overpass(new Or(filters), extraScripts); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  | function saveResponse(chunks: string[], targetDir: string): boolean { | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |     const contents = chunks.join("") | 
					
						
							|  |  |  |     if (contents.startsWith("<?xml")) { | 
					
						
							|  |  |  |         // THis is an error message
 | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |         console.error("Failed to create ", targetDir, "probably over quota: ", contents) | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     writeFileSync(targetDir, contents) | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |     return true | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function rawJsonName(targetDir: string, x: number, y: number, z: number): string { | 
					
						
							|  |  |  |     return targetDir + "_" + z + "_" + x + "_" + y + ".json" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function geoJsonName(targetDir: string, x: number, y: number, z: number): string { | 
					
						
							|  |  |  |     return targetDir + "_" + z + "_" + x + "_" + y + ".geojson" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function metaJsonName(targetDir: string, x: number, y: number, z: number): string { | 
					
						
							|  |  |  |     return targetDir + "_" + z + "_" + x + "_" + y + ".meta.json" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  | async function downloadRaw(targetdir: string, r: TileRange, overpass: Overpass)/* : {failed: number, skipped :number} */ { | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |     let downloaded = 0 | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |     let failed = 0 | 
					
						
							|  |  |  |     let skipped = 0 | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |     for (let x = r.xstart; x <= r.xend; x++) { | 
					
						
							|  |  |  |         for (let y = r.ystart; y <= r.yend; y++) { | 
					
						
							|  |  |  |             downloaded++; | 
					
						
							|  |  |  |             const filename = rawJsonName(targetdir, x, y, r.zoomlevel) | 
					
						
							|  |  |  |             if (existsSync(filename)) { | 
					
						
							|  |  |  |                 console.log("Already exists: ", filename) | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |                 skipped++ | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |             console.log("x:", (x - r.xstart), "/", (r.xend - r.xstart), "; y:", (y - r.ystart), "/", (r.yend - r.ystart), "; total: ", downloaded, "/", r.total, "failed: ", failed, "skipped: ", skipped) | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             const boundsArr = Utils.tile_bounds(r.zoomlevel, x, y) | 
					
						
							|  |  |  |             const bounds = { | 
					
						
							|  |  |  |                 north: Math.max(boundsArr[0][0], boundsArr[1][0]), | 
					
						
							|  |  |  |                 south: Math.min(boundsArr[0][0], boundsArr[1][0]), | 
					
						
							|  |  |  |                 east: Math.max(boundsArr[0][1], boundsArr[1][1]), | 
					
						
							|  |  |  |                 west: Math.min(boundsArr[0][1], boundsArr[1][1]) | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             const url = overpass.buildQuery("[bbox:" + bounds.south + "," + bounds.west + "," + bounds.north + "," + bounds.east + "]") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |             let gotResponse = false | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |             let success = false; | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |             ScriptUtils.DownloadJSON(url, | 
					
						
							|  |  |  |                 chunks => { | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |                     gotResponse = true; | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |                     success = saveResponse(chunks, filename) | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |                 }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |             while (!gotResponse) { | 
					
						
							|  |  |  |                 await ScriptUtils.sleep(10000) | 
					
						
							|  |  |  |                 console.debug("Waking up") | 
					
						
							|  |  |  |                 if (!gotResponse) { | 
					
						
							|  |  |  |                     console.log("Didn't get an answer yet - waiting more") | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |              | 
					
						
							|  |  |  |             if(!success){ | 
					
						
							|  |  |  |                 failed++; | 
					
						
							|  |  |  |                 console.log("Hit the rate limit - waiting 90s") | 
					
						
							|  |  |  |                 for (let i = 0; i < 90; i++) { | 
					
						
							|  |  |  |                     console.log(90 - i) | 
					
						
							|  |  |  |                     await ScriptUtils.sleep(1000) | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return {failed: failed, skipped: skipped} | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  | async function postProcess(targetdir: string, r: TileRange, theme: LayoutConfig) { | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |     let processed = 0; | 
					
						
							|  |  |  |     for (let x = r.xstart; x <= r.xend; x++) { | 
					
						
							|  |  |  |         for (let y = r.ystart; y <= r.yend; y++) { | 
					
						
							|  |  |  |             processed++; | 
					
						
							|  |  |  |             const filename = rawJsonName(targetdir, x, y, r.zoomlevel) | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |             console.log(" Post processing", processed, "/", r.total, filename) | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |             if (!existsSync(filename)) { | 
					
						
							|  |  |  |                 throw "Not found - and not downloaded. Run this script again!: " + filename | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // We read the raw OSM-file and convert it to a geojson
 | 
					
						
							|  |  |  |             const rawOsm = JSON.parse(readFileSync(filename, "UTF8")) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // Create and save the geojson file - which is the main chunk of the data
 | 
					
						
							|  |  |  |             const geojson = OsmToGeoJson.default(rawOsm); | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |             const osmTime = new Date(rawOsm.osm3s.timestamp_osm_base); | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |             for (const feature of geojson.features) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 for (const layer of theme.layers) { | 
					
						
							|  |  |  |                     if (layer.source.osmTags.matchesProperties(feature.properties)) { | 
					
						
							|  |  |  |                         feature["_matching_layer_id"] = layer.id; | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-04-22 20:08:03 +02:00
										 |  |  |             const featuresFreshness = geojson.features.map(feature => { | 
					
						
							|  |  |  |                 feature["_timestamp"] = rawOsm.osm3s.timestamp_osm_base; | 
					
						
							|  |  |  |                 return ({ | 
					
						
							|  |  |  |                     freshness: osmTime, | 
					
						
							|  |  |  |                     feature: feature | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  |             }); | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |             // Extract the relationship information
 | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |             const relations = ExtractRelations.BuildMembershipTable(ExtractRelations.GetRelationElements(rawOsm)) | 
					
						
							|  |  |  |             MetaTagging.addMetatags(featuresFreshness, relations, theme.layers); | 
					
						
							|  |  |  |             writeFileSync(geoJsonName(targetdir, x, y, r.zoomlevel), JSON.stringify(geojson)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             const meta = { | 
					
						
							|  |  |  |                 freshness: osmTime, | 
					
						
							|  |  |  |                 relations: relations | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             writeFileSync( | 
					
						
							|  |  |  |                 metaJsonName(targetdir, x, y, r.zoomlevel), | 
					
						
							|  |  |  |                 JSON.stringify(meta) | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function main(args: string[]) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (args.length == 0) { | 
					
						
							|  |  |  |         console.error("Expected arguments are: theme zoomlevel targetdirectory lat0 lon0 lat1 lon1") | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     const themeName = args[0] | 
					
						
							|  |  |  |     const zoomlevel = Number(args[1]) | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |     const targetdir = args[2] + "/" + themeName | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |     const lat0 = Number(args[3]) | 
					
						
							|  |  |  |     const lon0 = Number(args[4]) | 
					
						
							|  |  |  |     const lat1 = Number(args[5]) | 
					
						
							|  |  |  |     const lon1 = Number(args[6]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const tileRange = Utils.TileRangeBetween(zoomlevel, lat0, lon0, lat1, lon1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const theme = AllKnownLayouts.allKnownLayouts.get(themeName) | 
					
						
							|  |  |  |     if (theme === undefined) { | 
					
						
							|  |  |  |         const keys = [] | 
					
						
							|  |  |  |         AllKnownLayouts.allKnownLayouts.forEach((_, key) => { | 
					
						
							|  |  |  |             keys.push(key) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         console.error("The theme " + theme + " was not found; try one of ", keys); | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const overpass = createOverpassObject(theme) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 16:01:43 +02:00
										 |  |  |     let failed = 0; | 
					
						
							|  |  |  |     do { | 
					
						
							|  |  |  |         const cachingResult = await downloadRaw(targetdir, tileRange, overpass) | 
					
						
							|  |  |  |         failed = cachingResult.failed | 
					
						
							|  |  |  |         if (failed > 0) { | 
					
						
							|  |  |  |             ScriptUtils.sleep(30000) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } while (failed > 0) | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-22 13:30:00 +02:00
										 |  |  |     await postProcess(targetdir, tileRange, theme) | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let args = [...process.argv] | 
					
						
							|  |  |  | args.splice(0, 2) | 
					
						
							|  |  |  | main(args); |