I'm trying to use Mapbox Terrain RGB to get elevation for specific points in space. I used mercantile.tile
to get the coordinates of the tile containing my point at zoom level 15, which for -43º, -22º
(for simplicity sake) is 12454, 18527
, then mercantile.xy
to get the corresponding world coordinates: -4806237.7150042495, -2621281.2257876047
.
Shouldn't the integer part of -4806237.7150042495 / 256
(tile size) equal the x coordinate of the tile containing the point, that is, 12454
? If this calculation checked out I'd figure that I'm looking for the pixel column (x axis) corresponding to the decimal part of the result, like column 127(256 * 0,5) for 12454,5. However, the division results in -18774.366, (which is curiously close to the tile y coordinate, but it looks like a coincidence). What am I missing here?
As an alternative, I thought of using mercantile.bounds
, assigning the first and last pixel columns to the westmost and eastmost longitudes, and finding my position with interpolation, but I wanted to check if I'm doing this the right/recommended way. I'm interested in point elevations, so everything said here goes for the Y axis as well.
Here's what I got so far: