find territories for a point

This commit is contained in:
sbriat
2023-02-06 16:12:40 +01:00
parent a743fefe94
commit 1da111bba9
10 changed files with 37 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
export class Point {
lon: number;
lat: number;
constructor(lon: number, lat: number) {
this.lon = lon;
this.lat = lat;
}
}