Problem to run the RasterioSource on Google Colab #1596
Unanswered
marcosdavi1415
asked this question in
Q&A
Replies: 1 comment 7 replies
-
Note: Edited the answer. Hadn't seen this was about Colab before. This is how you're supposed to do it in Colab. Let me know if this works. import os
from subprocess import check_output
os.environ['GDAL_DATA'] = check_output('pip show rasterio | grep Location | awk \'{print $NF"/rasterio/gdal_data/"}\'', shell=True).decode().strip() |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I am facing a problem to run the first cell about RasterSource. This mensage is shown: "Unable to open EPSG support file gcs.csv. Try setting the GDAL_DATA environment variable to point to the directory containing EPSG csv files". Could someone tell me how i can solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions