NokiaWebGL
NokiaWebGL copied to clipboard
Height Map LUT Fix
I found that the Heights from the LUTs are correct, they are just offset by one column.
If you replace this line in the code: off += int(col - 1) * 2**zoom
with this: off += int(col) * 2**zoom
things seem to work.