annikwag commited on
Commit
48484fb
·
verified ·
1 Parent(s): 0d83a6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -36,6 +36,9 @@ collection_name = "giz_worldwide"
36
  client = get_client()
37
  print(client.get_collections())
38
 
 
 
 
39
  # Get all unique sub-regions
40
  _, unique_sub_regions = get_regions(region_df)
41
 
 
36
  client = get_client()
37
  print(client.get_collections())
38
 
39
+ # Get the maximum end_year across the entire collection
40
+ max_end_year = get_max_end_year(client, collection_name)
41
+
42
  # Get all unique sub-regions
43
  _, unique_sub_regions = get_regions(region_df)
44