You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi kyle! first off, great work and thank you for sharing your code!
running the example in the README.md I am seeing this error:
Traceback (most recent call last):
File "main.py", line 7, in <module>
tile, mask = tile(url, x, y, z, tilesize=512)
File "/home/flynn/.local/lib/python3.8/site-packages/usgs_topo_tiler/usgs_topo.py", line 72, in tile
return reader.tile(
AttributeError: module 'rio_tiler.reader' has no attribute 'tile'
Looks like maybe rio_tiler API was changed/updated?
The text was updated successfully, but these errors were encountered:
Ah, yeah when I originally was working on this, rio-tiler 2.0 hadn't been released yet, so I had to pin >=2.0a6 to force the new version. Now that 3.0 alphas exist pip finds the wrong version.
hi kyle! first off, great work and thank you for sharing your code!
running the example in the
README.md
I am seeing this error:Looks like maybe rio_tiler API was changed/updated?
The text was updated successfully, but these errors were encountered: