when copying data from a GDAL dataset
- #2198, Fix incorrect dimensions used when generating bands of out-db
rasters in ST_Tile()
+ - #2201, ST_GeoHash wrong on boundaries
- #2203, Changed how rasters with unknown SRID and default geotransform
are handled when passing to GDAL Warp API
- #2215, Fixed raster exclusion constraint for conflicting name of
geohash = geohash_point(0, 0, 16);
//printf("\ngeohash %s\n",geohash);
- CU_ASSERT_STRING_EQUAL(geohash, "7zzzzzzzzzzzzzzz");
+ CU_ASSERT_STRING_EQUAL(geohash, "s000000000000000");
lwfree(geohash);
geohash = geohash_point(90, 0, 16);
//printf("\ngeohash %s\n",geohash);
- CU_ASSERT_STRING_EQUAL(geohash, "mzzzzzzzzzzzzzzz");
+ CU_ASSERT_STRING_EQUAL(geohash, "w000000000000000");
lwfree(geohash);
geohash = geohash_point(20.012345, -20.012345, 15);