Compare commits
2 Commits
v3.0.0-dev
...
v3.0.0-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| d10dabf604 | |||
| 26886f8a7d |
@@ -1,7 +1,7 @@
|
|||||||
import { BaseClient } from "./base.js";
|
import { BaseClient } from "./base.js";
|
||||||
import { PisModule } from "../modules/pis.js";
|
import { PisModule } from "../modules/pis.js";
|
||||||
import { LocationFilterModule } from "../modules/locationFilter.js";
|
import { LocationFilterModule } from "../modules/locationFilter.js";
|
||||||
import { StationDataModule } from "src/modules/stationData.js";
|
import { StationDataModule } from "../modules/stationData.js";
|
||||||
|
|
||||||
export class OwlBoardClient extends BaseClient {
|
export class OwlBoardClient extends BaseClient {
|
||||||
public readonly pis: PisModule;
|
public readonly pis: PisModule;
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export class StationDataModule {
|
|||||||
* @param ln Longitude
|
* @param ln Longitude
|
||||||
* @returns Geohash as string
|
* @returns Geohash as string
|
||||||
*/
|
*/
|
||||||
static generateGeohash(lt: number, ln: number): string {
|
generateGeohash(lt: number, ln: number): string {
|
||||||
return Geohash.encode(lt, ln, 6);
|
return Geohash.encode(lt, ln, 6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user