We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 292801e commit c35f14aCopy full SHA for c35f14a
clipping-service/app/app.py
@@ -23,8 +23,8 @@
23
from flask_cors import CORS
24
from google.cloud import storage
25
from osgeo import gdal
26
-from osgeo import osr
27
from osgeo import ogr
+from osgeo import osr
28
29
app = flask.Flask(__name__, template_folder='templates')
30
@@ -55,7 +55,7 @@
55
SOURCE_LOGGER.setLevel(logging.DEBUG)
56
GOOGLE_STORAGE_URL = 'https://storage.googleapis.com'
57
TRUSTED_BUCKET = f'{GOOGLE_STORAGE_URL}/natcap-data-cache'
58
-TARGET_FILE_BUCKET = 'gs://jupyter-app-temp-storage'
+TARGET_FILE_BUCKET = 'gs://jupyter-app-temp-storage/clipped'
59
TARGET_BUCKET_URL = f'{GOOGLE_STORAGE_URL}/jupyter-app-temp-storage'
60
WORKSPACE_DIR = os.environ.get('WORKSPACE_DIR', os.getcwd())
61
app.logger.info("WORKSPACE_DIR: %s", WORKSPACE_DIR)
0 commit comments