mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import { decodeGeohash } from './geohash';
|
|
|
|
describe('Read GeoHASH', () => {
|
|
it('simple decode', () => {
|
|
expect(decodeGeohash('9q94r')).toEqual([-122.01416015625, 36.97998046875]);
|
|
expect(decodeGeohash('dr5rs')).toEqual([-73.98193359375, 40.71533203125]);
|
|
});
|
|
});
|