Fix GRB theme

This commit is contained in:
Pieter Vander Vennet 2022-02-24 03:09:30 +01:00
parent c94d9d838e
commit 7b837d7435
2 changed files with 13 additions and 4 deletions

View file

@ -209,9 +209,9 @@ export class BBox {
}
private check() {
private check() {
if (isNaN(this.maxLon) || isNaN(this.maxLat) || isNaN(this.minLon) || isNaN(this.minLat)) {
console.log(this);
console.trace("BBox with NaN detected:", this);
throw "BBOX has NAN";
}
}