Commit
·
5c923b0
1
Parent(s):
2fb66fc
Update Climate_site/python_scripts/paper_functions_own_details.py
Browse files
Climate_site/python_scripts/paper_functions_own_details.py
CHANGED
|
@@ -33,10 +33,12 @@ import re
|
|
| 33 |
import geopandas as gpd
|
| 34 |
from geopandas import GeoDataFrame
|
| 35 |
|
|
|
|
|
|
|
| 36 |
|
| 37 |
@st.cache_data # 👈 Add the caching decorator
|
| 38 |
def load_data():
|
| 39 |
-
url = "
|
| 40 |
dic = pd.read_csv(url, delimiter = "\t" , index_col = 1).to_dict('index')
|
| 41 |
return dic
|
| 42 |
|
|
|
|
| 33 |
import geopandas as gpd
|
| 34 |
from geopandas import GeoDataFrame
|
| 35 |
|
| 36 |
+
path = "Climate_site/python_scripts/"
|
| 37 |
+
|
| 38 |
|
| 39 |
@st.cache_data # 👈 Add the caching decorator
|
| 40 |
def load_data():
|
| 41 |
+
url = "institutions.tsv"
|
| 42 |
dic = pd.read_csv(url, delimiter = "\t" , index_col = 1).to_dict('index')
|
| 43 |
return dic
|
| 44 |
|