geohash.test.ts 276 B

12345678
  1. import { decodeGeohash } from './geohash';
  2. describe('Read GeoHASH', () => {
  3. it('simple decode', () => {
  4. expect(decodeGeohash('9q94r')).toEqual([-122.01416015625, 36.97998046875]);
  5. expect(decodeGeohash('dr5rs')).toEqual([-73.98193359375, 40.71533203125]);
  6. });
  7. });