Add centerpoint of summary

This commit is contained in:
Pieter Vander Vennet 2024-02-19 15:06:54 +01:00
parent 1c946e19dc
commit 995f48b97a

View file

@ -40,24 +40,42 @@ class OsmPoiDatabase {
async getCount( async getCount(
layer: string, layer: string,
bbox: [[number, number], [number, number]] = undefined bbox: [[number, number], [number, number]] = undefined
): Promise<number> { ): Promise<{ count: number; lat: number; lon: number }> {
if (!this.isConnected) { if (!this.isConnected) {
await this._client.connect() await this._client.connect()
this.isConnected = true this.isConnected = true
} }
let total = 0 let total: number = 0
let latSum = 0
let lonSum = 0
for (const prefix of OsmPoiDatabase.prefixes) { for (const prefix of OsmPoiDatabase.prefixes) {
let query = "SELECT COUNT(*) FROM " + prefix + "_" + layer let query =
"SELECT COUNT(*), ST_AsText(ST_Centroid(ST_Collect(geom))) FROM " +
prefix +
"_" +
layer
if (bbox) { if (bbox) {
query += ` WHERE ST_MakeEnvelope (${bbox[0][0]}, ${bbox[0][1]}, ${bbox[1][0]}, ${bbox[1][1]}, 4326) ~ geom` query += ` WHERE ST_MakeEnvelope (${bbox[0][0]}, ${bbox[0][1]}, ${bbox[1][0]}, ${bbox[1][1]}, 4326) ~ geom`
} }
const result = await this._client.query(query) const result = await this._client.query(query)
total += Number(result.rows[0].count) const count = Number(result.rows[0].count)
let point = result.rows[0].st_astext
if (count === 0) {
continue
}
total += count
if (!point) {
continue
}
point = point.substring(6, point.length - 1)
const [lon, lat] = point.split(" ")
latSum += lat * count
lonSum += lon * count
} }
return total
return { count: total, lat: latSum / total, lon: lonSum / total }
} }
disconnect() { disconnect() {
@ -108,24 +126,28 @@ class CachedSqlCount {
number, number,
{ {
date: Date date: Date
count: number entry: { count: number; lat: number; lon: number }
} }
> >
> = {} > = {}
private readonly _poiDatabase: OsmPoiDatabase private readonly _poiDatabase: OsmPoiDatabase
private readonly _maxAge: number private readonly _maxAge: number
constructor(poiDatabase: OsmPoiDatabase, maxAge: number) { constructor(poiDatabase: OsmPoiDatabase, maxAge: number) {
this._poiDatabase = poiDatabase this._poiDatabase = poiDatabase
this._maxAge = maxAge this._maxAge = maxAge
} }
public async getCount(layer: string, tileId: number): Promise<number> { public async getCount(
layer: string,
tileId: number
): Promise<{ count: number; lat: number; lon: number }> {
const cachedEntry = this._cache[layer]?.[tileId] const cachedEntry = this._cache[layer]?.[tileId]
if (cachedEntry) { if (cachedEntry) {
const age = (new Date().getTime() - cachedEntry.date.getTime()) / 1000 const age = (new Date().getTime() - cachedEntry.date.getTime()) / 1000
if (age < this._maxAge) { if (age < this._maxAge) {
return cachedEntry.count return cachedEntry.entry
} }
} }
const bbox = Tiles.tile_bounds_lon_lat(...Tiles.tile_from_index(tileId)) const bbox = Tiles.tile_bounds_lon_lat(...Tiles.tile_from_index(tileId))
@ -133,7 +155,7 @@ class CachedSqlCount {
if (!this._cache[layer]) { if (!this._cache[layer]) {
this._cache[layer] = {} this._cache[layer] = {}
} }
this._cache[layer][tileId] = { count, date: new Date() } this._cache[layer][tileId] = { entry: count, date: new Date() }
return count return count
} }
} }
@ -188,7 +210,6 @@ class Server {
} }
} }
} }
console.log("Handling ", path)
const handler = handle.find((h) => { const handler = handle.find((h) => {
if (typeof h.mustMatch === "string") { if (typeof h.mustMatch === "string") {
return h.mustMatch === path return h.mustMatch === path
@ -267,12 +288,13 @@ new Server(2345, { ignorePathPrefix: ["summary"] }, [
mustMatch: /[a-zA-Z0-9+_-]+\/[0-9]+\/[0-9]+\/[0-9]+\.json/, mustMatch: /[a-zA-Z0-9+_-]+\/[0-9]+\/[0-9]+\/[0-9]+\.json/,
mimetype: "application/json", // "application/vnd.geo+json", mimetype: "application/json", // "application/vnd.geo+json",
async handle(path) { async handle(path) {
console.log("Path is:", path, path.split(".")[0])
const [layers, z, x, y] = path.split(".")[0].split("/") const [layers, z, x, y] = path.split(".")[0].split("/")
let sum = 0 let sum = 0
let properties: Record<string, number> = {} let properties: Record<string, number> = {}
const availableLayers = await tcs.getLayers() const availableLayers = await tcs.getLayers()
let latSum = 0
let lonSum = 0
for (const layer of layers.split("+")) { for (const layer of layers.split("+")) {
if (!availableLayers.has(layer)) { if (!availableLayers.has(layer)) {
continue continue
@ -281,10 +303,16 @@ new Server(2345, { ignorePathPrefix: ["summary"] }, [
layer, layer,
Tiles.tile_index(Number(z), Number(x), Number(y)) Tiles.tile_index(Number(z), Number(x), Number(y))
) )
properties[layer] = count
sum += count latSum += count.lat * count.count
lonSum += count.lon * count.count
properties[layer] = count.count
sum += count.count
} }
properties["lon"] = lonSum / sum
properties["lat"] = latSum / sum
return JSON.stringify({ ...properties, total: sum }) return JSON.stringify({ ...properties, total: sum })
}, },
}, },