Spaces:
Sleeping
Sleeping
cassiebuhler
commited on
Commit
·
50badfe
1
Parent(s):
688bb65
extending presigned url
Browse files- app/variables.py +4 -4
app/variables.py
CHANGED
|
@@ -25,7 +25,7 @@ tpl_z8_url = client.get_presigned_url(
|
|
| 25 |
"GET",
|
| 26 |
"shared-tpl",
|
| 27 |
"conservation_almanac/z8/tpl_h3_z8.parquet",
|
| 28 |
-
expires=timedelta(hours=
|
| 29 |
)
|
| 30 |
|
| 31 |
|
|
@@ -33,20 +33,20 @@ landvote_z8_url = client.get_presigned_url(
|
|
| 33 |
"GET",
|
| 34 |
"shared-tpl",
|
| 35 |
"landvote/z8/landvote_h3_z8.parquet",
|
| 36 |
-
expires=timedelta(hours=
|
| 37 |
)
|
| 38 |
landvote_table_url = client.get_presigned_url(
|
| 39 |
"GET",
|
| 40 |
"shared-tpl",
|
| 41 |
"landvote/landvote_geom.parquet",
|
| 42 |
-
expires=timedelta(hours=
|
| 43 |
)
|
| 44 |
|
| 45 |
tpl_table_url = client.get_presigned_url(
|
| 46 |
"GET",
|
| 47 |
"shared-tpl",
|
| 48 |
"conservation_almanac/tpl.parquet",
|
| 49 |
-
expires=timedelta(hours=
|
| 50 |
)
|
| 51 |
|
| 52 |
tpl_z8 = con.read_parquet(tpl_z8_url, table_name = 'conservation_almanac')
|
|
|
|
| 25 |
"GET",
|
| 26 |
"shared-tpl",
|
| 27 |
"conservation_almanac/z8/tpl_h3_z8.parquet",
|
| 28 |
+
expires=timedelta(hours=48),
|
| 29 |
)
|
| 30 |
|
| 31 |
|
|
|
|
| 33 |
"GET",
|
| 34 |
"shared-tpl",
|
| 35 |
"landvote/z8/landvote_h3_z8.parquet",
|
| 36 |
+
expires=timedelta(hours=48),
|
| 37 |
)
|
| 38 |
landvote_table_url = client.get_presigned_url(
|
| 39 |
"GET",
|
| 40 |
"shared-tpl",
|
| 41 |
"landvote/landvote_geom.parquet",
|
| 42 |
+
expires=timedelta(hours=48),
|
| 43 |
)
|
| 44 |
|
| 45 |
tpl_table_url = client.get_presigned_url(
|
| 46 |
"GET",
|
| 47 |
"shared-tpl",
|
| 48 |
"conservation_almanac/tpl.parquet",
|
| 49 |
+
expires=timedelta(hours=48),
|
| 50 |
)
|
| 51 |
|
| 52 |
tpl_z8 = con.read_parquet(tpl_z8_url, table_name = 'conservation_almanac')
|