Spaces:
Sleeping
Sleeping
no cache
Browse files
app.py
CHANGED
@@ -44,12 +44,12 @@ us_lower_48_area_m2 = 7.8e+12
|
|
44 |
|
45 |
## Helper functions
|
46 |
|
47 |
-
|
48 |
def ibis_connection(parquet):
|
49 |
return ibis.read_parquet(parquet)
|
50 |
pad_data = ibis_connection(parquet)
|
51 |
|
52 |
-
|
53 |
def summary_table(column, colors):
|
54 |
df = (pad_data
|
55 |
.rename(area = "area_square_meters")
|
|
|
44 |
|
45 |
## Helper functions
|
46 |
|
47 |
+
#@st.cache_resource
|
48 |
def ibis_connection(parquet):
|
49 |
return ibis.read_parquet(parquet)
|
50 |
pad_data = ibis_connection(parquet)
|
51 |
|
52 |
+
#@st.cache_data()
|
53 |
def summary_table(column, colors):
|
54 |
df = (pad_data
|
55 |
.rename(area = "area_square_meters")
|