annikwag commited on
Commit
a04f491
·
verified ·
1 Parent(s): 63ddd8d

Create region_utils.py

Browse files
Files changed (1) hide show
  1. appStore/region_utils.py +17 -0
appStore/region_utils.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ # Load the region.csv once when the app starts
4
+ @st.cache_data
5
+ def load_region_data(file_path):
6
+ return pd.read_csv(file_path)
7
+
8
+ def get_country_name(alpha2_code, region_df):
9
+ """Map ISO country code to country name."""
10
+ row = region_df[region_df['alpha-2'] == alpha2_code]
11
+ return row['country'].values[0] if not row.empty else alpha2_code
12
+
13
+ def get_regions(region_df):
14
+ """Get unique regions and sub-regions."""
15
+ regions = region_df['region'].dropna().unique().tolist()
16
+ sub_regions = region_df['sub-region'].dropna().unique().tolist()
17
+ return regions, sub_regions