mapcomplete/Logic/Osm/Overpass.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

151 lines
5.1 KiB
TypeScript
Raw Normal View History

2021-04-18 14:24:30 +02:00
import { TagsFilter } from "../Tags/TagsFilter"
import RelationsTracker from "./RelationsTracker"
2021-07-03 22:24:12 +02:00
import { Utils } from "../../Utils"
import { ImmutableStore, Store } from "../UIEventSource"
2021-09-29 16:55:05 +02:00
import { BBox } from "../BBox"
import * as osmtogeojson from "osmtogeojson"
2022-05-21 01:02:03 +02:00
import { FeatureCollection } from "@turf/turf"
2022-04-28 00:37:30 +02:00
/**
* Interfaces overpass to get all the latest data
*/
2020-06-24 00:35:19 +02:00
export class Overpass {
private _filter: TagsFilter
2021-09-29 16:55:05 +02:00
private readonly _interpreterUrl: string
private readonly _timeout: Store<number>
private readonly _extraScripts: string[]
private _includeMeta: boolean
private _relationTracker: RelationsTracker
2021-10-03 01:38:57 +02:00
constructor(
filter: TagsFilter,
extraScripts: string[],
2021-09-29 16:55:05 +02:00
interpreterUrl: string,
timeout?: Store<number>,
relationTracker?: RelationsTracker,
includeMeta = true
) {
this._timeout = timeout ?? new ImmutableStore<number>(90)
this._interpreterUrl = interpreterUrl
2022-03-13 01:27:19 +01:00
const optimized = filter.optimize()
if (optimized === true || optimized === false) {
throw "Invalid filter: optimizes to true of false"
}
this._filter = optimized
this._extraScripts = extraScripts
this._includeMeta = includeMeta
this._relationTracker = relationTracker
2020-06-24 00:35:19 +02:00
}
2022-07-08 03:14:55 +02:00
public async queryGeoJson(bounds: BBox): Promise<[FeatureCollection, Date]> {
2022-05-21 01:02:03 +02:00
const bbox =
"[bbox:" +
bounds.getSouth() +
"," +
bounds.getWest() +
"," +
bounds.getNorth() +
"," +
bounds.getEast() +
"]"
const query = this.buildScript(bbox)
return this.ExecuteQuery(query)
}
2022-09-08 21:40:48 +02:00
2022-05-21 01:02:03 +02:00
public buildUrl(query: string) {
return `${this._interpreterUrl}?data=${encodeURIComponent(query)}`
}
2022-09-08 21:40:48 +02:00
2022-05-21 01:02:03 +02:00
public async ExecuteQuery(query: string): Promise<[FeatureCollection, Date]> {
const self = this
2022-05-21 01:02:03 +02:00
const json = await Utils.downloadJson(this.buildUrl(query))
2021-11-07 16:34:51 +01:00
if (json.elements.length === 0 && json.remark !== undefined) {
console.warn("Timeout or other runtime error while querying overpass", json.remark)
throw `Runtime error (timeout or similar)${json.remark}`
}
2021-11-07 16:34:51 +01:00
if (json.elements.length === 0) {
console.warn("No features for", json)
}
self._relationTracker?.RegisterRelations(json)
const geojson = osmtogeojson.default(json)
const osmTime = new Date(json.osm3s.timestamp_osm_base)
2022-05-21 01:02:03 +02:00
return [<any>geojson, osmTime]
2020-06-24 00:35:19 +02:00
}
/**
2022-05-21 01:02:03 +02:00
* Constructs the actual script to execute on Overpass
* 'PostCall' can be used to set an extra range, see 'AsOverpassTurboLink'
2022-04-26 10:31:43 +02:00
*
2022-04-28 00:37:30 +02:00
* import {Tag} from "../Tags/Tag";
*
* new Overpass(new Tag("key","value"), [], "").buildScript("{{bbox}}") // => `[out:json][timeout:90]{{bbox}};(nwr["key"="value"];);out body;out meta;>;out skel qt;`
*/
public buildScript(bbox: string, postCall: string = "", pretty = false): string {
const filters = this._filter.asOverpass()
let filter = ""
for (const filterOr of filters) {
if (pretty) {
filter += " "
}
filter += "nwr" + filterOr + postCall + ";"
if (pretty) {
filter += "\n"
}
}
for (const extraScript of this._extraScripts) {
filter += "(" + extraScript + ");"
}
return `[out:json][timeout:${this._timeout.data}]${bbox};(${filter});out body;${
this._includeMeta ? "out meta;" : ""
}>;out skel qt;`
}
2022-05-21 01:02:03 +02:00
/**
* Constructs the actual script to execute on Overpass with geocoding
* 'PostCall' can be used to set an extra range, see 'AsOverpassTurboLink'
*
*/
public buildScriptInArea(
area: { osm_type: "way" | "relation"; osm_id: number },
pretty = false
): string {
const filters = this._filter.asOverpass()
let filter = ""
for (const filterOr of filters) {
if (pretty) {
filter += " "
}
filter += "nwr" + filterOr + "(area.searchArea);"
if (pretty) {
filter += "\n"
}
}
for (const extraScript of this._extraScripts) {
filter += "(" + extraScript + ");"
}
let id = area.osm_id
if (area.osm_type === "relation") {
id += 3600000000
}
return `[out:json][timeout:${this._timeout.data}];
area(id:${id})->.searchArea;
(${filter});
out body;${this._includeMeta ? "out meta;" : ""}>;out skel qt;`
}
2022-09-08 21:40:48 +02:00
2022-05-21 01:02:03 +02:00
public buildQuery(bbox: string) {
return this.buildUrl(this.buildScript(bbox))
}
2022-09-08 21:40:48 +02:00
/**
* Little helper method to quickly open overpass-turbo in the browser
*/
public static AsOverpassTurboLink(tags: TagsFilter) {
const overpass = new Overpass(tags, [], "", undefined, undefined, false)
const script = overpass.buildScript("", "({{bbox}})", true)
const url = "http://overpass-turbo.eu/?Q="
return url + encodeURIComponent(script)
}
}