diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..1a07c06c0500ebfdb6c47baa927d00978672bc1d
Binary files /dev/null and b/.DS_Store differ
diff --git a/GTN Report.xlsx b/GTN Report.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..9d2ab56483bc81579f4f973b4e174dcdc760ccda
Binary files /dev/null and b/GTN Report.xlsx differ
diff --git a/Glacier.zip b/Glacier.zip
new file mode 100644
index 0000000000000000000000000000000000000000..97abb44ec469d744caccd7ae1c6ca911b797028f
Binary files /dev/null and b/Glacier.zip differ
diff --git a/README.md b/README.md
index 54f5cd21d48b3c9cd63eaf1ec9f955ada2198fa2..e6e5ac07e6f960ef536f0fe48c671a9909296a45 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,4 @@
+<<<<<<< HEAD
 # GlacierH2O
 
 
@@ -91,3 +92,6 @@ For open source projects, say how it is licensed.
 
 ## Project status
 If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
+=======
+# GLACIERH2O
+>>>>>>> new-main
diff --git a/analyze_glacier_data.py b/analyze_glacier_data.py
new file mode 100644
index 0000000000000000000000000000000000000000..827c8a214988cf7602287e8f39559f7c001b49f9
--- /dev/null
+++ b/analyze_glacier_data.py
@@ -0,0 +1,88 @@
+import pandas as pd
+import json
+# Generate visualizations and display them directly to the user using ace_tools
+import ace_tools as tools
+import matplotlib.pyplot as plt
+
+
+# Load the glacier data
+with open('/Users/hamza/glacier/data/glacier_data.json', 'r') as file:
+    glacier_data = json.load(file)
+
+# Load the GTN report data
+with open('/Users/hamza/glacier/data/gtn_report.json', 'r') as file:
+    gtn_report = json.load(file)
+
+# Convert to DataFrames for easier manipulation
+glacier_df = pd.DataFrame(glacier_data)
+gtn_df = pd.DataFrame(gtn_report)
+
+# Extract unique regions from glacier data
+unique_regions = glacier_df['region'].unique()
+
+# Mapping countries from GTN report to corresponding glacier regions manually
+region_country_mapping = {
+    "1_alaska": ["US - UNITED STATES"],
+    "2_western_canada_us": ["CA - CANADA", "US - UNITED STATES"],
+    "3_arctic_canada": ["CA - CANADA"],
+    "4_greenland": ["GL - GREENLAND"],
+    "5_iceland": ["IS - ICELAND"],
+    "6_svalbard_jan_mayen": ["SJ - SVALBARD AND JAN MAYEN"],
+    "7_scandinavia": ["NO - NORWAY", "SE - SWEDEN", "FI - FINLAND"],
+    "8_russian_arctic": ["RU - RUSSIAN FEDERATION"],
+    "9_siberia": ["RU - RUSSIAN FEDERATION"],
+    "10_central_asia": ["KZ - KAZAKHSTAN", "TJ - TAJIKISTAN", "UZ - UZBEKISTAN", "KG - KYRGYZSTAN"],
+    "11_himalaya": ["NP - NEPAL", "IN - INDIA", "CN - CHINA", "BT - BHUTAN", "PK - PAKISTAN"],
+    "12_caucasus_middle_east": ["GE - GEORGIA", "TR - TURKEY", "IR - IRAN"],
+    "13_southern_andes": ["CL - CHILE", "AR - ARGENTINA"],
+    "14_new_zealand": ["NZ - NEW ZEALAND"],
+    "15_africa": ["MA - MOROCCO"],
+    "16_antarctic": ["AQ - ANTARCTICA"],
+}
+
+# Assign regions to the GTN report based on country mapping
+def assign_region(country_code):
+    for region, countries in region_country_mapping.items():
+        if country_code in countries:
+            return region
+    return "Unknown"
+
+gtn_df['region'] = gtn_df['GRDCCOUNTRY'].apply(assign_region)
+
+# Merge glacier data with GTN report based on 'region'
+merged_df = pd.merge(glacier_df, gtn_df, on='region', how='inner')
+
+import ace_tools as tools; tools.display_dataframe_to_user(name="Merged Glacier and GTN Data", dataframe=merged_df)
+
+# Display the first few rows of the merged dataframe
+merged_df.head()
+
+
+
+# Plot 1: Glacier Mass Change vs Station Elevation
+fig1, ax1 = plt.subplots(figsize=(12, 8))
+ax1.scatter(merged_df['glacier_mass_change'], merged_df['station_elevation'], alpha=0.7, edgecolors='k', s=80)
+ax1.set_title('Glacier Mass Change vs Station Elevation', fontsize=14)
+ax1.set_xlabel('Glacier Mass Change (Gt)', fontsize=12)
+ax1.set_ylabel('Station Elevation (m)', fontsize=12)
+ax1.grid(True)
+
+# Plot 2: Average Glacier Mass Change by Region
+fig2, ax2 = plt.subplots(figsize=(14, 8))
+region_mass_change = merged_df.groupby('region')['glacier_mass_change'].mean().sort_values()
+region_mass_change.plot(kind='barh', ax=ax2, color='skyblue', edgecolor='black')
+ax2.set_title('Average Glacier Mass Change by Region', fontsize=14)
+ax2.set_xlabel('Average Mass Change (Gt)', fontsize=12)
+ax2.set_ylabel('Region', fontsize=12)
+ax2.grid(axis='x', linestyle='--', alpha=0.7)
+
+# Plot 3: Station Elevation vs Glacier Area
+fig3, ax3 = plt.subplots(figsize=(12, 8))
+ax3.scatter(merged_df['glacier_area'], merged_df['station_elevation'], alpha=0.7, color='green', edgecolors='k', s=80)
+ax3.set_title('Station Elevation vs Glacier Area', fontsize=14)
+ax3.set_xlabel('Glacier Area (km²)', fontsize=12)
+ax3.set_ylabel('Station Elevation (m)', fontsize=12)
+ax3.grid(True)
+
+# Display the plots to the user
+tools.display_dataframe_to_user(name="Merged Glacier and GTN Data", dataframe=merged_df)
diff --git a/app.py b/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..62c4b4679b4fead9753132bb822b701d3ad59220
--- /dev/null
+++ b/app.py
@@ -0,0 +1,200 @@
+import dash
+from dash import dcc, html, Input, Output
+def trigger_event(event):
+    pass
+import plotly.express as px
+import plotly.graph_objects as go
+import pandas as pd
+import os
+import zipfile
+import numpy as np
+
+
+
+
+# Load and prepare data
+zip_path = "Glacier.zip"
+gtn_report_path = "GTN Report.xlsx"
+extract_dir = "glacier_data"
+
+# Extract glacier zip contents
+with zipfile.ZipFile(zip_path, 'r') as zip_ref:
+    zip_ref.extractall(extract_dir)
+
+# Load regional glacier CSV files and assign approximate coordinates for visualization
+region_coordinates = {
+    '1_alaska': (64.2008, -149.4937),
+    '2_western_canada_us': (52.9399, -106.4509),
+    '3_arctic_canada_north': (75.0000, -100.0000),
+    '4_arctic_canada_south': (65.0000, -100.0000),
+    '5_greenland_periphery': (72.0000, -40.0000),
+    '6_iceland': (64.9631, -19.0208),
+    '7_svalbard': (78.0000, 16.0000),
+    '8_scandinavia': (60.0000, 15.0000),
+    '9_russian_arctic': (70.0000, 100.0000),
+    '10_north_asia': (60.0000, 90.0000),
+    '11_central_europe': (47.0000, 10.0000),
+    '12_caucasus_middle_east': (42.0000, 45.0000),
+    '13_central_asia': (43.0000, 75.0000),
+    '14_south_asia_west': (35.0000, 70.0000),
+    '15_south_asia_east': (27.0000, 85.0000),
+    '16_low_latitudes': (0.0000, -60.0000),
+    '17_southern_andes': (-40.0000, -70.0000),
+    '18_new_zealand': (-41.2865, 174.7762),
+    '19_antarctic_and_subantarctic': (-75.0000, 0.0000)
+}
+
+# Load glacier data into a combined DataFrame
+glacier_data = []
+region_files = [file for file in os.listdir(extract_dir) if file.endswith('.csv') and file != '0_global.csv']
+for file in region_files:
+    region_name = file.replace('.csv', '')
+    df_region = pd.read_csv(os.path.join(extract_dir, file))
+    df_region['region'] = region_name
+    df_region['latitude'], df_region['longitude'] = region_coordinates.get(region_name, (0, 0))
+    glacier_data.append(df_region)
+
+df_glacier_regions = pd.concat(glacier_data, ignore_index=True)
+
+# Simulate river discharge based on glacier melt trends
+def simulate_discharge(glacier_mass_loss):
+    max_discharge = 500  # Max discharge in cubic meters per second
+    normalized_loss = (glacier_mass_loss - glacier_mass_loss.min()) / (glacier_mass_loss.max() - glacier_mass_loss.min())
+    simulated_discharge = max_discharge * (1 - normalized_loss) + np.random.normal(0, 10, size=len(glacier_mass_loss))
+    return np.clip(simulated_discharge, 50, max_discharge)
+
+# Enhance DataFrame with simulated discharge
+df_glacier_regions['simulated_discharge'] = simulate_discharge(df_glacier_regions['combined_gt'])
+
+# Initialize Dash app
+app = dash.Dash(__name__)
+app.title = "Glacier Melt Impact on Water Resources - Interactive Visualization"
+
+# Layout with 3D globe map and a side chart for selected region details
+app.layout = html.Div([
+    html.H1("🌍 Glacier Melt and Water Resources Visualization",
+            style={'textAlign': 'center', 'fontSize': '28px', 'marginBottom': '20px', 'color': '#2C3E50'}),
+
+    html.Div([
+        dcc.Graph(id='world-map-visualization', style={'height': '75vh', 'width': '65%', 'display': 'inline-block'}),
+        dcc.Graph(id='region-detail-chart', style={'height': '75vh', 'width': '33%', 'display': 'inline-block', 'paddingLeft': '1%'})
+    ], style={'display': 'flex', 'justifyContent': 'center'}),
+
+    html.Div([
+        html.Label("⏩ Animation Speed:", style={'fontWeight': 'bold', 'fontSize': '16px'}),
+        dcc.Slider(
+            id='animation-speed',
+            min=50,
+            max=1000,
+            step=50,
+            value=300,
+            marks={50: 'Fast', 500: 'Medium', 1000: 'Slow'},
+            tooltip={"placement": "bottom", "always_visible": True}
+        )
+    ], style={'width': '60%', 'margin': 'auto', 'paddingTop': '20px'})
+])
+
+# Callback to update the 3D world map for smoother panning and zooming
+@app.callback(
+    Output('world-map-visualization', 'figure'),
+    [Input('animation-speed', 'value')]
+)
+def update_world_map(animation_speed):
+    min_size, max_size = 4, 15
+    normalized_sizes = (
+        (df_glacier_regions['glacier_area'] - df_glacier_regions['glacier_area'].min()) /
+        (df_glacier_regions['glacier_area'].max() - df_glacier_regions['glacier_area'].min())
+    )
+    bubble_sizes = normalized_sizes * (max_size - min_size) + min_size
+
+    fig = go.Figure()
+    fig.add_trace(go.Scattergeo(
+        lat=df_glacier_regions['latitude'],
+        lon=df_glacier_regions['longitude'],
+        mode='markers',
+        marker=dict(
+            size=bubble_sizes,
+            color=df_glacier_regions['simulated_discharge'],
+            colorscale='Viridis',
+            cmin=df_glacier_regions['simulated_discharge'].min(),
+            cmax=df_glacier_regions['simulated_discharge'].max(),
+            showscale=True,
+            colorbar=dict(title="Discharge (m³/s)", thickness=15, len=0.5),
+            line=dict(width=0.4, color='DarkSlateGrey')
+        ),
+        text=df_glacier_regions.apply(lambda row: (
+            f"Region: {row['region']}<br>Year: {row['end_dates']}<br>Glacier Area: {row['glacier_area']:.2f} km²<Br>Discharge: {row['simulated_discharge']:.2f} m³/s"
+        ), axis=1),
+        hoverinfo='text',
+        customdata=df_glacier_regions[['region']]
+    ))
+
+    fig.update_geos(
+        projection_type="orthographic",
+        showland=True,
+        landcolor="rgb(230, 230, 230)",
+        showocean=True,
+        oceancolor="rgb(180, 210, 255)",
+        showcountries=True,
+        countrycolor="rgb(150, 150, 150)",
+        center=dict(lat=20, lon=0),
+        resolution=50,
+    )
+
+    fig.update_layout(
+        title="🌍 3D Globe - Glacier Melt and Water Resources",
+        margin=dict(l=0, r=0, t=40, b=0),
+        dragmode='pan',
+        geo=dict(
+            projection_rotation=dict(lon=0, lat=0),
+            projection_scale=0.9,
+            lataxis=dict(range=[-90, 90]),
+            lonaxis=dict(range=[-180, 180]),
+        ),
+        font=dict(family="Arial", size=13, color="#2C3E50"),
+    )
+
+    return fig
+
+# Callback to update the region detail chart when a bubble is clicked
+@app.callback(
+    Output('region-detail-chart', 'figure'),
+    [Input('world-map-visualization', 'clickData')]
+)
+def update_region_chart(clickData):
+    if not clickData:
+        return go.Figure(layout=dict(title="Select a region to see details", font=dict(size=14)))
+
+    selected_region = clickData['points'][0]['customdata'][0]
+    region_data = df_glacier_regions[df_glacier_regions['region'] == selected_region].sort_values(by='end_dates')
+
+    fig = go.Figure()
+    fig.add_trace(go.Scatter(
+        x=region_data['end_dates'],
+        y=region_data['combined_gt'],
+        mode='lines+markers',
+        name='Glacier Mass Change (Gt)',
+        line=dict(color='blue')
+    ))
+    fig.add_trace(go.Scatter(
+        x=region_data['end_dates'],
+        y=region_data['simulated_discharge'],
+        mode='lines+markers',
+        name='Simulated River Discharge (m³/s)',
+        line=dict(color='green')
+    ))
+
+    fig.update_layout(
+        title=f"Glacier Mass vs Water Discharge - {selected_region.replace('_', ' ').title()}",
+        xaxis_title="Year",
+        yaxis_title="Value",
+        legend=dict(x=0.02, y=0.98),
+        margin=dict(l=30, r=20, t=40, b=40),
+        font=dict(family="Arial", size=12)
+    )
+
+    return fig
+
+if __name__ == '__main__':
+    app.run_server(debug=True, port=8060)
+
diff --git a/css/styles.css b/css/styles.css
new file mode 100644
index 0000000000000000000000000000000000000000..b0daeb6e7cac794979fc62bf07b66df5b72e2ba7
--- /dev/null
+++ b/css/styles.css
@@ -0,0 +1,164 @@
+:root {
+  --background-color: #f4f4f9;
+  --text-color: #34495e;
+  --button-bg: #34495e;
+  --button-text: #fff;
+  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
+  --border-radius: 12px;
+}
+
+.dark-mode {
+  --background-color: #2c3e50;
+  --text-color: #ecf0f1;
+  --button-bg: #e74c3c;
+  --button-text: #fff;
+  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
+}
+
+body {
+  font-family: Arial, sans-serif;
+  background-color: var(--background-color);
+  color: var(--text-color);
+  margin: 0;
+  padding: 10px;
+  height: 100vh;
+  display: flex;
+  flex-direction: column;
+}
+
+h1 {
+  font-size: 30px;
+  font-weight: bold;
+  margin-bottom: 20px;
+  text-align: center;
+}
+
+#controls {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  gap: 15px;
+  padding: 10px;
+  margin-bottom: 15px;
+  background-color: var(--background-color);
+  border-radius: var(--border-radius);
+  box-shadow: var(--box-shadow);
+}
+
+.dark-mode #controls {
+  background-color: #34495e !important;
+  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
+}
+
+.dark-mode #controls button, 
+.dark-mode #controls select, 
+.dark-mode #controls input,
+.dark-mode #controls label {
+  color: #ecf0f1 !important;
+  background-color: rgba(255, 255, 255, 0.1) !important;
+  border: 1px solid rgba(255, 255, 255, 0.2) !important;
+}
+
+.year-control {
+  display: flex;
+  align-items: center;
+  gap: 8px;
+}
+
+#year-input {
+  width: 70px;
+  padding: 5px;
+  border-radius: 6px;
+  text-align: center;
+  border: 1px solid #ccc;
+}
+
+#year-slider {
+  width: 200px;
+}
+
+button, select, input[type="number"], input[type="range"] {
+  padding: 6px 12px;
+  border-radius: 8px;
+  border: 1px solid #ccc;
+  cursor: pointer;
+  transition: all 0.2s ease;
+}
+
+button:hover, select:hover, input:hover {
+  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
+}
+
+#container {
+  display: flex;
+  justify-content: space-between;
+  gap: 20px;
+  flex-grow: 1;
+}
+
+#map-container {
+  flex: 1;
+  max-width: 70%;
+  height: 80vh;
+  position: relative; 
+  border-radius: var(--border-radius);
+  box-shadow: var(--box-shadow);
+}
+
+#map {
+  width: 100%;
+  height: 100%;
+  border-radius: var(--border-radius);
+  position: relative;
+  z-index: 1; 
+}
+
+#chart-container {
+  flex: 1;
+  max-width: 28%;
+  height: 80vh;
+  display: flex;
+  flex-direction: column;
+  gap: 20px;
+}
+
+#region-chart {
+  width: 100%;
+  height: 100%;
+  border-radius: var(--border-radius);
+  box-shadow: var(--box-shadow);
+}
+
+/* Legend Styles */
+#legend {
+  position: absolute;
+  top: 10px;
+  right: 10px;
+  background-color: rgba(255, 255, 255, 0.9);
+  padding: 10px;
+  border-radius: 8px;
+  box-shadow: var(--box-shadow);
+  font-weight: bold;
+  width: 200px;
+  z-index: 1002; 
+}
+
+#legend .legend-title {
+  text-align: center;
+  font-size: 14px;
+  margin-bottom: 8px;
+}
+
+#legend .legend-item {
+  display: flex;
+  align-items: center;
+  margin-bottom: 5px;
+}
+
+#legend .color-box {
+  width: 20px;
+  height: 20px;
+  margin-right: 8px;
+  border-radius: 4px;
+  border: 1px solid #ccc;
+}
\ No newline at end of file
diff --git a/data/glacier_data.json b/data/glacier_data.json
new file mode 100644
index 0000000000000000000000000000000000000000..a03af068f873d98636019de77403e573aeedbcc8
--- /dev/null
+++ b/data/glacier_data.json
@@ -0,0 +1,4562 @@
+[
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 1282.75515,
+        "glacier_mass_change": -1.5256898932375544,
+        "simulated_discharge": 441.54079982858934,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 1275.82805,
+        "glacier_mass_change": -0.7523721686565512,
+        "simulated_discharge": 283.5918221724801,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 1268.90095,
+        "glacier_mass_change": 0.3736522375370595,
+        "simulated_discharge": 53.60303732926075,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 1261.97385,
+        "glacier_mass_change": 0.3913096299000091,
+        "simulated_discharge": 49.996541599046154,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 1255.04675,
+        "glacier_mass_change": 0.6360925487896292,
+        "simulated_discharge": 0.0,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 1248.11965,
+        "glacier_mass_change": 0.2166234935187321,
+        "simulated_discharge": 85.67592120600898,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 1241.19255,
+        "glacier_mass_change": -1.0808310207835916,
+        "simulated_discharge": 350.6790467976166,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 1234.26545,
+        "glacier_mass_change": -1.5967452192637428,
+        "simulated_discharge": 456.05374288694077,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 1227.33835,
+        "glacier_mass_change": -0.5404262217384886,
+        "simulated_discharge": 240.3021825199011,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 1220.41125,
+        "glacier_mass_change": -0.4336528707431656,
+        "simulated_discharge": 218.49388679026964,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 1213.48415,
+        "glacier_mass_change": -0.8591613718604939,
+        "simulated_discharge": 305.40335569178774,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 1206.55705,
+        "glacier_mass_change": -0.7173569958488278,
+        "simulated_discharge": 276.4400259939708,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 1199.62995,
+        "glacier_mass_change": -1.8119059633143595,
+        "simulated_discharge": 500.0,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 1192.70285,
+        "glacier_mass_change": -0.2524468555698191,
+        "simulated_discharge": 181.48283178403014,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 1185.77575,
+        "glacier_mass_change": -1.3141644056080215,
+        "simulated_discharge": 398.3370383508643,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 1178.84865,
+        "glacier_mass_change": -1.5419156322181675,
+        "simulated_discharge": 444.85488251703583,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 1171.92155,
+        "glacier_mass_change": -0.7850001980956869,
+        "simulated_discharge": 290.25604792217075,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 1164.99445,
+        "glacier_mass_change": -0.835159306231931,
+        "simulated_discharge": 300.50097002654195,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 1158.06735,
+        "glacier_mass_change": -0.7279796066933246,
+        "simulated_discharge": 278.6096782204681,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 1151.14025,
+        "glacier_mass_change": -0.9227565189113288,
+        "simulated_discharge": 318.39256845813384,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 1144.21315,
+        "glacier_mass_change": -1.5198827979446523,
+        "simulated_discharge": 440.3547093828253,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 1137.28605,
+        "glacier_mass_change": -0.4267280863623179,
+        "simulated_discharge": 217.07951003582954,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 1130.35895,
+        "glacier_mass_change": -0.9122480213138148,
+        "simulated_discharge": 316.2462236900395,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "12_caucasus_middle_east",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 1123.43185,
+        "glacier_mass_change": -0.7397455813287596,
+        "simulated_discharge": 281.0128607749629,
+        "latitude": 42.0,
+        "longitude": 45.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 29402.5139,
+        "glacier_mass_change": 1.6621530202778638,
+        "simulated_discharge": 39.78721260233215,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 29349.5417,
+        "glacier_mass_change": -13.891168790717536,
+        "simulated_discharge": 143.82855042238168,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 29296.5695,
+        "glacier_mass_change": -4.276535598304034,
+        "simulated_discharge": 79.51307414383008,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 29243.5973,
+        "glacier_mass_change": -27.16845138254913,
+        "simulated_discharge": 232.64470559847038,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 29190.6251,
+        "glacier_mass_change": 2.950386466804427,
+        "simulated_discharge": 31.16979101034756,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 29137.6529,
+        "glacier_mass_change": -49.94872117965508,
+        "simulated_discharge": 385.0294999461986,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 29084.6807,
+        "glacier_mass_change": -25.498355751885686,
+        "simulated_discharge": 221.4728809674899,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 29031.7085,
+        "glacier_mass_change": -34.04845631063346,
+        "simulated_discharge": 278.6673447250131,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 28978.7363,
+        "glacier_mass_change": -24.53194697778392,
+        "simulated_discharge": 215.00825154874408,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 28925.7641,
+        "glacier_mass_change": 6.37479807413442,
+        "simulated_discharge": 8.262763868322809,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 28872.7919,
+        "glacier_mass_change": -48.57203133766705,
+        "simulated_discharge": 375.82036413172267,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 28819.8197,
+        "glacier_mass_change": -60.086977800912216,
+        "simulated_discharge": 452.847667335552,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 28766.8475,
+        "glacier_mass_change": -26.839376086207103,
+        "simulated_discharge": 230.44341159253335,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 28713.8753,
+        "glacier_mass_change": 7.61001311639548,
+        "simulated_discharge": 0.0,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 28660.9031,
+        "glacier_mass_change": 4.985710861841842,
+        "simulated_discharge": 17.55482981229839,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 28607.9309,
+        "glacier_mass_change": -37.60738322194243,
+        "simulated_discharge": 302.47418943355603,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 28554.9587,
+        "glacier_mass_change": -67.135862594548,
+        "simulated_discharge": 500.0,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 28501.9865,
+        "glacier_mass_change": -22.636310348294185,
+        "simulated_discharge": 202.32770823140766,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 28449.0143,
+        "glacier_mass_change": -40.53808128665813,
+        "simulated_discharge": 322.0786026325482,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 28396.0421,
+        "glacier_mass_change": -28.156311429256267,
+        "simulated_discharge": 239.2528297077348,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 28343.0699,
+        "glacier_mass_change": -27.999018663858664,
+        "simulated_discharge": 238.2006461330458,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 28290.0977,
+        "glacier_mass_change": -24.094368057838505,
+        "simulated_discharge": 212.0811407497643,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 28237.1255,
+        "glacier_mass_change": -41.30439245425599,
+        "simulated_discharge": 327.2047126707885,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "17_southern_andes",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 28184.1533,
+        "glacier_mass_change": -50.03848428365572,
+        "simulated_discharge": 385.6299551763157,
+        "latitude": -40.0,
+        "longitude": -70.0
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 89847.1,
+        "glacier_mass_change": 45.88379869548132,
+        "simulated_discharge": 23.805723155657432,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 89430.82,
+        "glacier_mass_change": -27.10431231414758,
+        "simulated_discharge": 205.9190572788309,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 89014.54,
+        "glacier_mass_change": -49.090521732004326,
+        "simulated_discharge": 260.77705875920884,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 88598.26,
+        "glacier_mass_change": -60.38343349383753,
+        "simulated_discharge": 288.95411094562496,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 88181.98,
+        "glacier_mass_change": -139.61243654977957,
+        "simulated_discharge": 486.6391545257941,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 87765.7,
+        "glacier_mass_change": -75.9364588983793,
+        "simulated_discharge": 327.76061344231044,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 87349.42,
+        "glacier_mass_change": -33.62467247388402,
+        "simulated_discharge": 222.18807029955235,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 86933.14,
+        "glacier_mass_change": -49.64964952566811,
+        "simulated_discharge": 262.17214386685896,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 86516.86,
+        "glacier_mass_change": 36.92273833725146,
+        "simulated_discharge": 46.16455059401853,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 86100.58,
+        "glacier_mass_change": -91.88170145027088,
+        "simulated_discharge": 367.5457406960435,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 85684.3,
+        "glacier_mass_change": -73.86920837996944,
+        "simulated_discharge": 322.60259689457695,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 85268.02,
+        "glacier_mass_change": -45.5027751725263,
+        "simulated_discharge": 251.82523799144997,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 84851.74,
+        "glacier_mass_change": 55.42475171089546,
+        "simulated_discharge": 0.0,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 84435.46,
+        "glacier_mass_change": -119.81656842938212,
+        "simulated_discharge": 437.2462945736764,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 84019.18,
+        "glacier_mass_change": -96.90050239940116,
+        "simulated_discharge": 380.068198963611,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 83602.9,
+        "glacier_mass_change": -73.32394274102282,
+        "simulated_discharge": 321.24209938179337,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 83186.62,
+        "glacier_mass_change": -92.27650551738216,
+        "simulated_discharge": 368.5308201013392,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 82770.34,
+        "glacier_mass_change": -83.06911803362412,
+        "simulated_discharge": 345.557379495239,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 82354.06,
+        "glacier_mass_change": -108.99297703385028,
+        "simulated_discharge": 410.2402481236298,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 81937.78,
+        "glacier_mass_change": -144.96724967946653,
+        "simulated_discharge": 500.0,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 81521.5,
+        "glacier_mass_change": -49.20877235678205,
+        "simulated_discharge": 261.0721070245021,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 81105.22,
+        "glacier_mass_change": -31.22685347401838,
+        "simulated_discharge": 216.20524917089185,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 80688.94,
+        "glacier_mass_change": -64.91355586052026,
+        "simulated_discharge": 300.2572626064991,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "1_alaska",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 80272.66,
+        "glacier_mass_change": -100.73996979950844,
+        "simulated_discharge": 389.6480908092641,
+        "latitude": 64.2008,
+        "longitude": -149.4937
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 127665.25695,
+        "glacier_mass_change": -18.995791012237024,
+        "simulated_discharge": 268.3598393611416,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 127306.51605,
+        "glacier_mass_change": -31.129658086054757,
+        "simulated_discharge": 312.8403226394306,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 126947.77515,
+        "glacier_mass_change": -16.125234566354507,
+        "simulated_discharge": 257.83691726106554,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 126589.03425,
+        "glacier_mass_change": -29.725715486761946,
+        "simulated_discharge": 307.6937321146118,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 126230.29335,
+        "glacier_mass_change": 10.490007275767162,
+        "simulated_discharge": 160.2704273280563,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 125871.55245,
+        "glacier_mass_change": -0.2061686008879221,
+        "simulated_discharge": 199.48060404490903,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 125512.81155,
+        "glacier_mass_change": -82.18509811946437,
+        "simulated_discharge": 500.0,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 125154.07065,
+        "glacier_mass_change": -11.470246634669804,
+        "simulated_discharge": 240.77260366703246,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 124795.32975,
+        "glacier_mass_change": -9.881790656837852,
+        "simulated_discharge": 234.94962166711332,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 124436.58885,
+        "glacier_mass_change": -20.936619711003868,
+        "simulated_discharge": 275.4745537350778,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 124077.84795,
+        "glacier_mass_change": 54.21030700577958,
+        "simulated_discharge": 0.0,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 123719.10705,
+        "glacier_mass_change": -23.802465555915493,
+        "simulated_discharge": 285.98020765457784,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 123360.36615,
+        "glacier_mass_change": -7.772400110473913,
+        "simulated_discharge": 227.21699114181442,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 123001.62525,
+        "glacier_mass_change": -50.85851340701423,
+        "simulated_discharge": 385.16260982661123,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 122642.88435,
+        "glacier_mass_change": 20.7809251461336,
+        "simulated_discharge": 122.54585053268369,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 122284.14345,
+        "glacier_mass_change": 3.1301780762685625,
+        "simulated_discharge": 187.2501822279391,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 121925.40255,
+        "glacier_mass_change": 32.89845255203744,
+        "simulated_discharge": 78.12526541554938,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 121566.66165,
+        "glacier_mass_change": -47.9765486112687,
+        "simulated_discharge": 374.597866853418,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 121207.92075,
+        "glacier_mass_change": -26.68093690435365,
+        "simulated_discharge": 296.53214430447827,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 120849.17985,
+        "glacier_mass_change": 45.08614127117214,
+        "simulated_discharge": 33.44748206960946,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 120490.43895,
+        "glacier_mass_change": -77.34985364357878,
+        "simulated_discharge": 482.27489968798557,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 120131.69805,
+        "glacier_mass_change": -31.329553932028546,
+        "simulated_discharge": 313.57310335807074,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 119772.95715,
+        "glacier_mass_change": -47.739787569614585,
+        "simulated_discharge": 373.7299452345163,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "19_antarctic_and_subantarctic",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 119414.21625,
+        "glacier_mass_change": -60.08931641518733,
+        "simulated_discharge": 419.00100416143863,
+        "latitude": -75.0,
+        "longitude": 0.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 51612.6368,
+        "glacier_mass_change": 8.519843072055021,
+        "simulated_discharge": 0.0,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 51571.3632,
+        "glacier_mass_change": -10.13503584712864,
+        "simulated_discharge": 135.17132164984503,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 51530.0896,
+        "glacier_mass_change": -7.559339588150589,
+        "simulated_discharge": 116.50809317203404,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 51488.816,
+        "glacier_mass_change": -8.908960921205653,
+        "simulated_discharge": 126.28730964972861,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 51447.5424,
+        "glacier_mass_change": -25.41459065221258,
+        "simulated_discharge": 245.88539415452016,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 51406.2688,
+        "glacier_mass_change": -14.261778926584304,
+        "simulated_discharge": 165.0732748373162,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 51364.9952,
+        "glacier_mass_change": -5.90635950470559,
+        "simulated_discharge": 104.53077059019927,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 51323.7216,
+        "glacier_mass_change": -16.05897200870474,
+        "simulated_discharge": 178.09554987981795,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 51282.448,
+        "glacier_mass_change": 2.617551605043185,
+        "simulated_discharge": 42.767393013639854,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 51241.1744,
+        "glacier_mass_change": 3.355955051219893,
+        "simulated_discharge": 37.41699807605248,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 51199.9008,
+        "glacier_mass_change": 1.8542126867048536,
+        "simulated_discharge": 48.2984678013968,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 51158.6272,
+        "glacier_mass_change": -28.4607306217242,
+        "simulated_discharge": 267.95740906242077,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 51117.3536,
+        "glacier_mass_change": -8.370259542081753,
+        "simulated_discharge": 122.38393521850188,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 51076.08,
+        "glacier_mass_change": -24.013597848216985,
+        "simulated_discharge": 235.73394531593965,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 51034.8064,
+        "glacier_mass_change": 1.6598696379314568,
+        "simulated_discharge": 49.70665741602603,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 50993.5328,
+        "glacier_mass_change": -19.01366050987852,
+        "simulated_discharge": 199.50491691444122,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 50952.2592,
+        "glacier_mass_change": -38.72567230076549,
+        "simulated_discharge": 342.336113927009,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 50910.9856,
+        "glacier_mass_change": -9.23312758170906,
+        "simulated_discharge": 128.63618771668845,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 50869.712,
+        "glacier_mass_change": -19.85869850503244,
+        "simulated_discharge": 205.62797475599214,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 50828.4384,
+        "glacier_mass_change": -27.58499190115624,
+        "simulated_discharge": 261.6118969424046,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 50787.1648,
+        "glacier_mass_change": -60.4847308697026,
+        "simulated_discharge": 500.0,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 50745.8912,
+        "glacier_mass_change": -4.299174110625859,
+        "simulated_discharge": 92.88527158721827,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 50704.6176,
+        "glacier_mass_change": -40.067190725521854,
+        "simulated_discharge": 352.05661756991725,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "9_russian_arctic",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 50663.344,
+        "glacier_mass_change": -34.07823465673737,
+        "simulated_discharge": 308.6612618226346,
+        "latitude": 70.0,
+        "longitude": 100.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 2140.639,
+        "glacier_mass_change": -0.5934003711822097,
+        "simulated_discharge": 74.95908378577337,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 2121.1834,
+        "glacier_mass_change": 0.4019665729881813,
+        "simulated_discharge": 0.0,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 2101.7278,
+        "glacier_mass_change": -0.7554326466468112,
+        "simulated_discharge": 87.16140875113959,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 2082.2722,
+        "glacier_mass_change": -4.0975870621061805,
+        "simulated_discharge": 338.8523397396269,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 2062.8166,
+        "glacier_mass_change": -1.4388937785429576,
+        "simulated_discharge": 138.63149277409536,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 2043.361,
+        "glacier_mass_change": -1.8171159119364328,
+        "simulated_discharge": 167.11464137845795,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 2023.9054,
+        "glacier_mass_change": -2.3588428656706264,
+        "simulated_discharge": 207.91100934285544,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 2004.4498,
+        "glacier_mass_change": -1.5790536047853114,
+        "simulated_discharge": 149.18664755418172,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 1984.9942,
+        "glacier_mass_change": -1.5093602965005972,
+        "simulated_discharge": 143.93818459726106,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 1965.5386,
+        "glacier_mass_change": -1.5827261116565263,
+        "simulated_discharge": 149.4632166645742,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 1946.083,
+        "glacier_mass_change": -1.034331703816414,
+        "simulated_discharge": 108.16473613365979,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 1926.6274,
+        "glacier_mass_change": -2.494022407325491,
+        "simulated_discharge": 218.09110890149103,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 1907.1718,
+        "glacier_mass_change": -2.7965827240695345,
+        "simulated_discharge": 240.87631818124032,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 1887.7162,
+        "glacier_mass_change": -0.5687006031528772,
+        "simulated_discharge": 73.09899390430452,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 1868.2606,
+        "glacier_mass_change": -0.3477905848183993,
+        "simulated_discharge": 56.46270447312152,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 1848.805,
+        "glacier_mass_change": -2.9636622375676023,
+        "simulated_discharge": 253.45874049749116,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 1829.3494,
+        "glacier_mass_change": -1.3798379610635585,
+        "simulated_discharge": 134.18411786738176,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 1809.8938,
+        "glacier_mass_change": -2.5871083005234867,
+        "simulated_discharge": 225.1012204069698,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 1790.4382,
+        "glacier_mass_change": -2.4371975090104008,
+        "simulated_discharge": 213.81174003268742,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 1770.9826,
+        "glacier_mass_change": -1.919024957544504,
+        "simulated_discharge": 174.78920675658637,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 1751.527,
+        "glacier_mass_change": -1.275594599025034,
+        "simulated_discharge": 126.33375981106792,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 1732.0714,
+        "glacier_mass_change": -1.582979860184506,
+        "simulated_discharge": 149.48232595615823,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 1712.6158,
+        "glacier_mass_change": -6.237435177272426,
+        "simulated_discharge": 500.0,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "11_central_europe",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 1693.1602,
+        "glacier_mass_change": -4.375191438019658,
+        "simulated_discharge": 359.75816727917754,
+        "latitude": 47.0,
+        "longitude": 10.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 2960.94345,
+        "glacier_mass_change": 0.8445266836084478,
+        "simulated_discharge": 66.56091177100242,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 2952.98115,
+        "glacier_mass_change": -2.1991190686074744,
+        "simulated_discharge": 283.62279509592236,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 2945.01885,
+        "glacier_mass_change": -4.026071661226791,
+        "simulated_discharge": 413.9144922195372,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 2937.05655,
+        "glacier_mass_change": -4.215089346015239,
+        "simulated_discharge": 427.39455461248355,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 2929.09425,
+        "glacier_mass_change": -0.6708575916169709,
+        "simulated_discharge": 174.63267554374755,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 2921.13195,
+        "glacier_mass_change": -1.028301421986082,
+        "simulated_discharge": 200.1242857110297,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 2913.16965,
+        "glacier_mass_change": -5.233164247312704,
+        "simulated_discharge": 500.0,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 2905.20735,
+        "glacier_mass_change": 0.2174491141998074,
+        "simulated_discharge": 111.28183177542633,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 2897.24505,
+        "glacier_mass_change": 0.2234919590341321,
+        "simulated_discharge": 110.85087778565145,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 2889.28275,
+        "glacier_mass_change": -1.850892814863128,
+        "simulated_discharge": 258.78854938717046,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 2881.32045,
+        "glacier_mass_change": -2.7932180431987925,
+        "simulated_discharge": 325.9918001656841,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 2873.35815,
+        "glacier_mass_change": -3.1497490108565325,
+        "simulated_discharge": 351.4183082430784,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 2865.39585,
+        "glacier_mass_change": 1.616198486336387,
+        "simulated_discharge": 11.528050378735,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 2857.43355,
+        "glacier_mass_change": -3.2996106704306336,
+        "simulated_discharge": 362.1059035526408,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 2849.47125,
+        "glacier_mass_change": -2.818199598557766,
+        "simulated_discharge": 327.77339496877727,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 2841.50895,
+        "glacier_mass_change": 1.7778450224721014,
+        "simulated_discharge": 0.0,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 2833.54665,
+        "glacier_mass_change": -1.1893070315883585,
+        "simulated_discharge": 211.6066275113863,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 2825.58435,
+        "glacier_mass_change": -0.0301437619599587,
+        "simulated_discharge": 128.93926643514152,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 2817.62205,
+        "glacier_mass_change": -4.212927232509297,
+        "simulated_discharge": 427.2403604428038,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 2809.65975,
+        "glacier_mass_change": -1.4351922971850946,
+        "simulated_discharge": 229.14228151889293,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 2801.69745,
+        "glacier_mass_change": 0.4944919959301292,
+        "simulated_discharge": 91.5241284926559,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 2793.73515,
+        "glacier_mass_change": -2.4255083424878463,
+        "simulated_discharge": 299.76806499707885,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 2785.77285,
+        "glacier_mass_change": -1.4723308948231677,
+        "simulated_discharge": 231.7908729134393,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "8_scandinavia",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 2777.81055,
+        "glacier_mass_change": -3.1568268459350413,
+        "simulated_discharge": 351.9230740197414,
+        "latitude": 60.0,
+        "longitude": 15.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 34444.6137,
+        "glacier_mass_change": 5.85973224228223,
+        "simulated_discharge": 29.789339313617436,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 34356.3203,
+        "glacier_mass_change": -11.143703096330642,
+        "simulated_discharge": 196.45325208581932,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 34268.0269,
+        "glacier_mass_change": -10.250925533265024,
+        "simulated_discharge": 187.70244385603456,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 34179.7335,
+        "glacier_mass_change": -16.59267211556013,
+        "simulated_discharge": 249.86284133846854,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 34091.4401,
+        "glacier_mass_change": -13.80339462074514,
+        "simulated_discharge": 222.5229602005881,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 34003.1467,
+        "glacier_mass_change": -9.303333767132411,
+        "simulated_discharge": 178.41435893029356,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 33914.8533,
+        "glacier_mass_change": -4.636312178454609,
+        "simulated_discharge": 132.6692454593098,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 33826.5599,
+        "glacier_mass_change": -4.167827196014192,
+        "simulated_discharge": 128.0772592698351,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 33738.2665,
+        "glacier_mass_change": 8.898909088510552,
+        "simulated_discharge": 0.0,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 33649.9731,
+        "glacier_mass_change": -7.622036302257484,
+        "simulated_discharge": 161.93465300911942,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 33561.6797,
+        "glacier_mass_change": -0.3143960034536954,
+        "simulated_discharge": 90.30677893094979,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 33473.3863,
+        "glacier_mass_change": -16.06662024252455,
+        "simulated_discharge": 244.70659721866073,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 33385.0929,
+        "glacier_mass_change": -3.3211945074716787,
+        "simulated_discharge": 119.77875289489597,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 33296.7995,
+        "glacier_mass_change": -28.17079520779257,
+        "simulated_discharge": 363.3490433136433,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 33208.5061,
+        "glacier_mass_change": -11.484639850071742,
+        "simulated_discharge": 199.79503874567794,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 33120.212700000004,
+        "glacier_mass_change": -12.732022496611268,
+        "simulated_discharge": 212.02160758052503,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 33031.9193,
+        "glacier_mass_change": -26.151076923306224,
+        "simulated_discharge": 343.5522113625351,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 32943.6259,
+        "glacier_mass_change": -17.7612648718528,
+        "simulated_discharge": 261.31712909399675,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 32855.3325,
+        "glacier_mass_change": -18.7418685432444,
+        "simulated_discharge": 270.9287894142954,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 32767.0391,
+        "glacier_mass_change": -19.3136979603446,
+        "simulated_discharge": 276.5337348970324,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 32678.7457,
+        "glacier_mass_change": -39.71242876629833,
+        "simulated_discharge": 476.47758294911944,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 32590.4523,
+        "glacier_mass_change": -7.953819778136595,
+        "simulated_discharge": 165.18672126367989,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 32502.1589,
+        "glacier_mass_change": -42.11223980325151,
+        "simulated_discharge": 500.0,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "7_svalbard",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 32413.8655,
+        "glacier_mass_change": -24.48600796123645,
+        "simulated_discharge": 327.23157363682145,
+        "latitude": 78.0,
+        "longitude": 16.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 33507.5776,
+        "glacier_mass_change": 6.851964677244642,
+        "simulated_discharge": 32.61989073606614,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 33386.7328,
+        "glacier_mass_change": -4.64241326904263,
+        "simulated_discharge": 163.04434147994888,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 33265.888,
+        "glacier_mass_change": -2.352745468347903,
+        "simulated_discharge": 137.06393030093227,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 33145.0432,
+        "glacier_mass_change": -13.091190343162353,
+        "simulated_discharge": 258.9109568373723,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 33024.1984,
+        "glacier_mass_change": -11.446097131719313,
+        "simulated_discharge": 240.24440702253415,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 32903.3536,
+        "glacier_mass_change": 4.807317498760151,
+        "simulated_discharge": 55.82010100103363,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 32782.5088,
+        "glacier_mass_change": -23.39682475507553,
+        "simulated_discharge": 375.8469679918676,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 32661.664,
+        "glacier_mass_change": -20.770993357775385,
+        "simulated_discharge": 346.0521744554732,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 32540.8192,
+        "glacier_mass_change": -15.082436168591911,
+        "simulated_discharge": 281.50523242943126,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 32419.9744,
+        "glacier_mass_change": 9.726773430882623,
+        "simulated_discharge": 0.0,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 32299.1296,
+        "glacier_mass_change": 8.545261399182058,
+        "simulated_discharge": 13.406385147759048,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 32178.2848,
+        "glacier_mass_change": 7.573331993465979,
+        "simulated_discharge": 24.43467736980953,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 32057.44,
+        "glacier_mass_change": -7.838206686315059,
+        "simulated_discharge": 199.30638219989083,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 31936.5952,
+        "glacier_mass_change": -12.28292520262717,
+        "simulated_discharge": 249.73973091263412,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 31815.7504,
+        "glacier_mass_change": -0.6933992166120448,
+        "simulated_discharge": 118.23565403510145,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 31694.9056,
+        "glacier_mass_change": -0.9024996256509292,
+        "simulated_discharge": 120.6082753397652,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 31574.0608,
+        "glacier_mass_change": -10.96446277745992,
+        "simulated_discharge": 234.77939652721147,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 31453.216,
+        "glacier_mass_change": -2.3260157023337524,
+        "simulated_discharge": 136.7606328917816,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 31332.3712,
+        "glacier_mass_change": -3.924469396591872,
+        "simulated_discharge": 154.89797325829392,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 31211.5264,
+        "glacier_mass_change": 4.378411912846257,
+        "simulated_discharge": 60.68680851014862,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 31090.6816,
+        "glacier_mass_change": 5.577242329699477,
+        "simulated_discharge": 47.083915044857264,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 30969.8368,
+        "glacier_mass_change": -9.815571924051932,
+        "simulated_discharge": 221.74315748751573,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 30848.992,
+        "glacier_mass_change": -34.3384991492528,
+        "simulated_discharge": 500.0,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "14_south_asia_west",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 30728.1472,
+        "glacier_mass_change": -8.254232398376997,
+        "simulated_discharge": 204.02694430812895,
+        "latitude": 35.0,
+        "longitude": 70.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 40871.6448,
+        "glacier_mass_change": -31.828658494953373,
+        "simulated_discharge": 320.387750857452,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 40838.9344,
+        "glacier_mass_change": -22.03994632267151,
+        "simulated_discharge": 226.46059026992992,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 40806.224,
+        "glacier_mass_change": -5.5967058673044985,
+        "simulated_discharge": 68.6801938656027,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 40773.5136,
+        "glacier_mass_change": -8.486024053557571,
+        "simulated_discharge": 96.40452046671643,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 40740.8032,
+        "glacier_mass_change": -1.4671494901073976,
+        "simulated_discharge": 29.055215812355982,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 40708.0928,
+        "glacier_mass_change": -24.2248536106406,
+        "simulated_discharge": 247.42577282857496,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 40675.3824,
+        "glacier_mass_change": -17.097984159188556,
+        "simulated_discharge": 179.04020793798992,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 40642.672,
+        "glacier_mass_change": -33.1540408077942,
+        "simulated_discharge": 333.10539901658075,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 40609.9616,
+        "glacier_mass_change": -37.1628977737753,
+        "simulated_discharge": 371.5722111353741,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 40577.2512,
+        "glacier_mass_change": -36.847830118826685,
+        "simulated_discharge": 368.5489931980759,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 40544.5408,
+        "glacier_mass_change": -29.970014139117,
+        "simulated_discharge": 302.5532100298981,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 40511.8304,
+        "glacier_mass_change": -41.75154929339208,
+        "simulated_discharge": 415.6024165983213,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 40479.12,
+        "glacier_mass_change": -38.5652621599766,
+        "simulated_discharge": 385.02853742086194,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 40446.4096,
+        "glacier_mass_change": -9.379093521828558,
+        "simulated_discharge": 104.97392958670571,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 40413.6992,
+        "glacier_mass_change": -14.425387850746011,
+        "simulated_discharge": 153.39542666027222,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 40380.9888,
+        "glacier_mass_change": -27.71112564848519,
+        "simulated_discharge": 280.8781440687523,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 40348.2784,
+        "glacier_mass_change": -29.15938862497677,
+        "simulated_discharge": 294.77488827490845,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 40315.568,
+        "glacier_mass_change": -6.698300058839619,
+        "simulated_discharge": 79.25049287016323,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 40282.8576,
+        "glacier_mass_change": -1.1632489212322985,
+        "simulated_discharge": 26.13915116227883,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 40250.1472,
+        "glacier_mass_change": -50.54712713038396,
+        "simulated_discharge": 500.0,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 40217.4368,
+        "glacier_mass_change": -35.23772265203272,
+        "simulated_discharge": 353.0992772461694,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 40184.7264,
+        "glacier_mass_change": 1.5608686349126528,
+        "simulated_discharge": 0.0,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 40152.016,
+        "glacier_mass_change": -26.803353366935987,
+        "simulated_discharge": 272.16765474540586,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "4_arctic_canada_south",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 40119.3056,
+        "glacier_mass_change": -24.485635912166988,
+        "simulated_discharge": 249.92809802546984,
+        "latitude": 65.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 105000.63345,
+        "glacier_mass_change": -48.492413102801386,
+        "simulated_discharge": 322.58550649648464,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 104927.05575,
+        "glacier_mass_change": -27.438732411778343,
+        "simulated_discharge": 215.28658930845955,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 104853.47805,
+        "glacier_mass_change": 2.272794777893257,
+        "simulated_discharge": 63.863437117610225,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 104779.90035,
+        "glacier_mass_change": -10.868112073559915,
+        "simulated_discharge": 130.8353408299539,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 104706.32265,
+        "glacier_mass_change": 9.330261455013746,
+        "simulated_discharge": 27.895449208090895,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 104632.74495,
+        "glacier_mass_change": -27.634643373576697,
+        "simulated_discharge": 216.28503867105442,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 104559.16725,
+        "glacier_mass_change": -14.49033741307888,
+        "simulated_discharge": 149.2958115877882,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 104485.58955,
+        "glacier_mass_change": -59.606055889383214,
+        "simulated_discharge": 379.22557122033083,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 104412.01185,
+        "glacier_mass_change": -59.05425797773865,
+        "simulated_discharge": 376.41336373533176,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 104338.43415,
+        "glacier_mass_change": -44.75125504827651,
+        "simulated_discharge": 303.5189017459463,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 104264.85645,
+        "glacier_mass_change": -30.430679211817186,
+        "simulated_discharge": 230.53488040965536,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 104191.27875,
+        "glacier_mass_change": -83.30383705815383,
+        "simulated_discharge": 500.0,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 104117.70105,
+        "glacier_mass_change": -72.92247186119154,
+        "simulated_discharge": 447.0919474406935,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 104044.12335,
+        "glacier_mass_change": 7.95057993093942,
+        "simulated_discharge": 34.926919655945575,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 103970.54565,
+        "glacier_mass_change": -18.520099173347603,
+        "simulated_discharge": 169.83326913491004,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 103896.96795,
+        "glacier_mass_change": -52.64644712831746,
+        "simulated_discharge": 343.75631075828466,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 103823.39025,
+        "glacier_mass_change": -24.18813350213283,
+        "simulated_discharge": 198.72009206096135,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 103749.81255,
+        "glacier_mass_change": 6.945037312449323,
+        "simulated_discharge": 40.05161190020495,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 103676.23485,
+        "glacier_mass_change": 14.803773171172445,
+        "simulated_discharge": 0.0,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 103602.65715,
+        "glacier_mass_change": -58.8923231836455,
+        "simulated_discharge": 375.5880720290379,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 103529.07945,
+        "glacier_mass_change": -54.56558148027142,
+        "simulated_discharge": 353.537072655695,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 103455.50175,
+        "glacier_mass_change": -2.239494795578432,
+        "simulated_discharge": 86.86007093084974,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 103381.92405,
+        "glacier_mass_change": -37.476242418283874,
+        "simulated_discharge": 266.44220294048506,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "3_arctic_canada_north",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 103308.34635,
+        "glacier_mass_change": -44.019049041281086,
+        "simulated_discharge": 299.78725439828435,
+        "latitude": 75.0,
+        "longitude": -100.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 2487.7225,
+        "glacier_mass_change": -0.9197019532932548,
+        "simulated_discharge": 243.7116710164547,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 2477.3595,
+        "glacier_mass_change": -1.5411560324271425,
+        "simulated_discharge": 352.52371553350207,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 2466.9965,
+        "glacier_mass_change": -2.008519104670919,
+        "simulated_discharge": 434.3555565819822,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 2456.6335,
+        "glacier_mass_change": -1.3367036448471714,
+        "simulated_discharge": 316.72560422337335,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 2446.2705,
+        "glacier_mass_change": -0.6073020718796399,
+        "simulated_discharge": 189.0127464380304,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 2435.9075,
+        "glacier_mass_change": -0.4421699496148141,
+        "simulated_discharge": 160.09932476716938,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 2425.5445,
+        "glacier_mass_change": -1.4369095884292484,
+        "simulated_discharge": 334.2709289062879,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 2415.1815,
+        "glacier_mass_change": -1.5576011706781698,
+        "simulated_discharge": 355.40313844750676,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 2404.8185,
+        "glacier_mass_change": -1.7288465569663265,
+        "simulated_discharge": 385.38694774536384,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 2394.4555,
+        "glacier_mass_change": 0.4721992168201645,
+        "simulated_discharge": 0.0,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 2384.0925,
+        "glacier_mass_change": -1.278298719425217,
+        "simulated_discharge": 306.49933078111735,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 2373.7295,
+        "glacier_mass_change": -2.1266620946428576,
+        "simulated_discharge": 455.0415263355641,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 2363.3665,
+        "glacier_mass_change": -2.082237426114749,
+        "simulated_discharge": 447.26309318685475,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 2353.0035,
+        "glacier_mass_change": -0.9064403927766193,
+        "simulated_discharge": 241.38966917954858,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 2342.6405,
+        "glacier_mass_change": -0.7676348462089759,
+        "simulated_discharge": 217.0858375378264,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 2332.2775,
+        "glacier_mass_change": -1.9092539350345972,
+        "simulated_discharge": 416.9749545067439,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 2321.9145,
+        "glacier_mass_change": -1.0968359067228153,
+        "simulated_discharge": 274.72652516773854,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 2311.5515,
+        "glacier_mass_change": -2.229459832807573,
+        "simulated_discharge": 473.04065521250385,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 2301.1885,
+        "glacier_mass_change": -1.4296283286683342,
+        "simulated_discharge": 332.99603380486866,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 2290.8255,
+        "glacier_mass_change": -0.8149763258916679,
+        "simulated_discharge": 225.37498289497864,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 2280.4625,
+        "glacier_mass_change": -1.0545339240245566,
+        "simulated_discharge": 267.31975871616515,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 2270.0995,
+        "glacier_mass_change": -1.2541491015757211,
+        "simulated_discharge": 302.2709100807958,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 2259.7365,
+        "glacier_mass_change": -2.084194149188092,
+        "simulated_discharge": 447.6057010243653,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "10_north_asia",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 2249.3735,
+        "glacier_mass_change": -2.383431710308152,
+        "simulated_discharge": 500.0,
+        "latitude": 60.0,
+        "longitude": 90.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 14907.1245,
+        "glacier_mass_change": -2.327916651477616,
+        "simulated_discharge": 85.63721081537473,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 14837.8747,
+        "glacier_mass_change": -8.137158352811356,
+        "simulated_discharge": 243.35933848634934,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 14768.6249,
+        "glacier_mass_change": -6.998749077267797,
+        "simulated_discharge": 212.45128846359341,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 14699.3751,
+        "glacier_mass_change": -8.198889903697747,
+        "simulated_discharge": 245.03536300913603,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 14630.1253,
+        "glacier_mass_change": -8.98001140526133,
+        "simulated_discharge": 266.2429752122691,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 14560.8755,
+        "glacier_mass_change": -5.8649778560322,
+        "simulated_discharge": 181.66916258572846,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 14491.6257,
+        "glacier_mass_change": -10.705225792838034,
+        "simulated_discharge": 313.08290680518303,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 14422.3759,
+        "glacier_mass_change": -5.000839525910631,
+        "simulated_discharge": 158.2076261174618,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 14353.1261,
+        "glacier_mass_change": -5.511233648377613,
+        "simulated_discharge": 172.06493333326767,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 14283.8763,
+        "glacier_mass_change": -6.207572947749696,
+        "simulated_discharge": 190.97069100774445,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 14214.6265,
+        "glacier_mass_change": -4.663836245068104,
+        "simulated_discharge": 149.0579165306875,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 14145.3767,
+        "glacier_mass_change": 0.8262841166758295,
+        "simulated_discharge": 0.0,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 14076.1269,
+        "glacier_mass_change": -9.263476118598678,
+        "simulated_discharge": 273.93910148929155,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 14006.8771,
+        "glacier_mass_change": -4.762808642776319,
+        "simulated_discharge": 151.74503783666688,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 13937.6273,
+        "glacier_mass_change": -7.233284672588605,
+        "simulated_discharge": 218.81897894892538,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 13868.3775,
+        "glacier_mass_change": -6.492342790490154,
+        "simulated_discharge": 198.70225182113626,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 13799.1277,
+        "glacier_mass_change": -3.767927807121404,
+        "simulated_discharge": 124.73381498764263,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 13729.8779,
+        "glacier_mass_change": -17.122102144399964,
+        "simulated_discharge": 487.3024423665188,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 13660.6281,
+        "glacier_mass_change": -4.530994315133016,
+        "simulated_discharge": 145.45123033815565,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 13591.3783,
+        "glacier_mass_change": -8.507998145090227,
+        "simulated_discharge": 253.42771643830426,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 13522.1285,
+        "glacier_mass_change": -5.707608395472385,
+        "simulated_discharge": 177.39654880478884,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 13452.8787,
+        "glacier_mass_change": -4.153046594747883,
+        "simulated_discharge": 135.18987065090909,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 13383.6289,
+        "glacier_mass_change": -15.619011518634077,
+        "simulated_discharge": 446.49321738218674,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "15_south_asia_east",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 13314.3791,
+        "glacier_mass_change": -17.589780221019534,
+        "simulated_discharge": 500.0,
+        "latitude": 27.0,
+        "longitude": 85.0
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 981.5995,
+        "glacier_mass_change": 0.0879743435703125,
+        "simulated_discharge": 124.52267787019267,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 973.5817,
+        "glacier_mass_change": -0.94077364134553,
+        "simulated_discharge": 294.7192901352639,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 965.5639,
+        "glacier_mass_change": -1.020883713895824,
+        "simulated_discharge": 307.97274302779573,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 957.5461,
+        "glacier_mass_change": -1.4815955888514936,
+        "simulated_discharge": 384.19315997875435,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 949.5283,
+        "glacier_mass_change": -0.534730129084154,
+        "simulated_discharge": 227.54323610415884,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 941.5105,
+        "glacier_mass_change": 0.1857570750016101,
+        "simulated_discharge": 108.3454509189355,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 933.4927,
+        "glacier_mass_change": 0.8406476913557156,
+        "simulated_discharge": 0.0,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 925.4749,
+        "glacier_mass_change": -0.5992142058732299,
+        "simulated_discharge": 238.21151597003802,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 917.4571,
+        "glacier_mass_change": -2.1815863332370538,
+        "simulated_discharge": 500.0,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 909.4393,
+        "glacier_mass_change": -0.1010482490554054,
+        "simulated_discharge": 155.7946758504265,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 901.4215,
+        "glacier_mass_change": -1.489786079497439,
+        "simulated_discharge": 385.54819909539736,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 893.4037000000001,
+        "glacier_mass_change": -1.8505679072267331,
+        "simulated_discharge": 445.2361360310402,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 885.3859,
+        "glacier_mass_change": -0.2441112063576637,
+        "simulated_discharge": 179.46308738608434,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 877.3681,
+        "glacier_mass_change": 0.0497800113362103,
+        "simulated_discharge": 130.841568453004,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 869.3503000000001,
+        "glacier_mass_change": -0.2056041796257262,
+        "simulated_discharge": 173.09246445970027,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 861.3325,
+        "glacier_mass_change": -0.1545894695964328,
+        "simulated_discharge": 164.65256377461563,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 853.3147,
+        "glacier_mass_change": -1.3500601973377886,
+        "simulated_discharge": 362.4318750412935,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 845.2969,
+        "glacier_mass_change": -0.5357355420070528,
+        "simulated_discharge": 227.7095721513871,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 837.2791,
+        "glacier_mass_change": -2.020976853697841,
+        "simulated_discharge": 473.42868251891014,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 829.2613,
+        "glacier_mass_change": -1.8455830286413584,
+        "simulated_discharge": 444.4114350739318,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 821.2435,
+        "glacier_mass_change": -1.3979458572570234,
+        "simulated_discharge": 370.3541040165442,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 813.2257,
+        "glacier_mass_change": -0.0666513400570155,
+        "simulated_discharge": 150.1040329818577,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 805.2079,
+        "glacier_mass_change": -1.8364658742589812,
+        "simulated_discharge": 442.9030882172376,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "18_new_zealand",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 797.1901,
+        "glacier_mass_change": -1.2971385849938588,
+        "simulated_discharge": 353.676495425868,
+        "latitude": -41.2865,
+        "longitude": 174.7762
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 2354.92895,
+        "glacier_mass_change": 0.3705258618555614,
+        "simulated_discharge": 91.53671089239934,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 2327.07105,
+        "glacier_mass_change": -0.3070070498935514,
+        "simulated_discharge": 179.67193729350862,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 2299.21315,
+        "glacier_mass_change": -1.2859863528499784,
+        "simulated_discharge": 307.0200867513977,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 2271.35525,
+        "glacier_mass_change": -1.5816633780124076,
+        "simulated_discharge": 345.4825158118872,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 2243.49735,
+        "glacier_mass_change": -2.4619022051780592,
+        "simulated_discharge": 459.98624983568783,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 2215.63945,
+        "glacier_mass_change": -2.769504894430206,
+        "simulated_discharge": 500.0,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 2187.78155,
+        "glacier_mass_change": -0.6472329547886849,
+        "simulated_discharge": 223.92939938201962,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 2159.92365,
+        "glacier_mass_change": 0.2943631715954311,
+        "simulated_discharge": 101.44414982708511,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 2132.06575,
+        "glacier_mass_change": 1.0742074293211157,
+        "simulated_discharge": 0.0,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 2104.20785,
+        "glacier_mass_change": -1.8409386137271275,
+        "simulated_discharge": 379.20970633452197,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 2076.34995,
+        "glacier_mass_change": -1.8410246444614369,
+        "simulated_discharge": 379.2208974340454,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 2048.49205,
+        "glacier_mass_change": -0.1241596044782535,
+        "simulated_discharge": 155.88667060153543,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 2020.63415,
+        "glacier_mass_change": -0.0184015312558621,
+        "simulated_discharge": 142.12938801708137,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 1992.77625,
+        "glacier_mass_change": -0.5516197398382917,
+        "simulated_discharge": 211.49178609348422,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 1964.91835,
+        "glacier_mass_change": -0.239795478092252,
+        "simulated_discharge": 170.92888290491902,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 1937.06045,
+        "glacier_mass_change": -1.6897583338338864,
+        "simulated_discharge": 359.54378610435043,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 1909.20255,
+        "glacier_mass_change": -2.36942463411635,
+        "simulated_discharge": 447.9565291812224,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 1881.34465,
+        "glacier_mass_change": -0.6457522446867621,
+        "simulated_discharge": 223.73678479783587,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 1853.48675,
+        "glacier_mass_change": -0.1008118792306184,
+        "simulated_discharge": 152.8495383604773,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 1825.62885,
+        "glacier_mass_change": -0.900957994194518,
+        "simulated_discharge": 256.9346060721768,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 1797.77095,
+        "glacier_mass_change": -0.562694930155122,
+        "simulated_discharge": 212.93247537821475,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 1769.91305,
+        "glacier_mass_change": 0.0949249570660994,
+        "simulated_discharge": 127.38758650117616,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 1742.05515,
+        "glacier_mass_change": 0.0057083128047794,
+        "simulated_discharge": 138.99311739770383,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "16_low_latitudes",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 1714.1972500000002,
+        "glacier_mass_change": -2.3020962323277,
+        "simulated_discharge": 439.1982772469387,
+        "latitude": 0.0,
+        "longitude": -60.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 89349.1603,
+        "glacier_mass_change": -41.2912682002374,
+        "simulated_discharge": 290.71738160290073,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 88613.4809,
+        "glacier_mass_change": -30.259115172023737,
+        "simulated_discharge": 239.38948930445224,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 87877.8015,
+        "glacier_mass_change": -4.633022444104562,
+        "simulated_discharge": 120.16223382631924,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 87142.12210000001,
+        "glacier_mass_change": 21.19402971840975,
+        "simulated_discharge": 0.0,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 86406.4427,
+        "glacier_mass_change": -21.61789893283536,
+        "simulated_discharge": 199.1856038690013,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 85670.7633,
+        "glacier_mass_change": -73.56189179697199,
+        "simulated_discharge": 440.8587989799915,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 84935.0839,
+        "glacier_mass_change": -11.901237733591891,
+        "simulated_discharge": 153.97813273804312,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 84199.4045,
+        "glacier_mass_change": -54.51899453837374,
+        "simulated_discharge": 352.2603380050518,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 83463.7251,
+        "glacier_mass_change": -31.569572236755583,
+        "simulated_discharge": 245.48648586607342,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 82728.0457,
+        "glacier_mass_change": -44.34081127000205,
+        "simulated_discharge": 304.9056019660572,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 81992.3663,
+        "glacier_mass_change": -63.50411891699192,
+        "simulated_discharge": 394.06428100823854,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 81256.6869,
+        "glacier_mass_change": -73.61889642826725,
+        "simulated_discharge": 441.1240171625306,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 80521.0075,
+        "glacier_mass_change": -45.04805361014524,
+        "simulated_discharge": 308.19609826092693,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 79785.3281,
+        "glacier_mass_change": -37.84487762507106,
+        "simulated_discharge": 274.6827994313036,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 79049.6487,
+        "glacier_mass_change": 2.5817383158773253,
+        "simulated_discharge": 86.59503599101276,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 78313.9693,
+        "glacier_mass_change": -9.433257622014974,
+        "simulated_discharge": 142.49567622771642,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 77578.2899,
+        "glacier_mass_change": -53.45383656825312,
+        "simulated_discharge": 347.30461327649095,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 76842.6105,
+        "glacier_mass_change": 7.709968424686927,
+        "simulated_discharge": 62.73557337900254,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 76106.9311,
+        "glacier_mass_change": 12.001662332086804,
+        "simulated_discharge": 42.76815613111129,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 75371.2517,
+        "glacier_mass_change": -73.00240051873962,
+        "simulated_discharge": 438.25572521935834,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 74635.5723,
+        "glacier_mass_change": -39.04193946889865,
+        "simulated_discharge": 280.252216501338,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 73899.8929,
+        "glacier_mass_change": -52.79326670883994,
+        "simulated_discharge": 344.23126408410303,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 73164.2135,
+        "glacier_mass_change": -46.25762631952477,
+        "simulated_discharge": 313.82372304055053,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "5_greenland_periphery",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 72428.5341,
+        "glacier_mass_change": -86.27339719312873,
+        "simulated_discharge": 500.0,
+        "latitude": 72.0,
+        "longitude": -40.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 49702.3543,
+        "glacier_mass_change": 2.9975381821101768,
+        "simulated_discharge": 157.5972468293047,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 49613.6089,
+        "glacier_mass_change": -14.36815509049936,
+        "simulated_discharge": 293.9398853633619,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 49524.8635,
+        "glacier_mass_change": -10.731484657993787,
+        "simulated_discharge": 265.3874265318642,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 49436.1181,
+        "glacier_mass_change": 12.160601523846324,
+        "simulated_discharge": 85.65561953835649,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 49347.3727,
+        "glacier_mass_change": 8.206079680365974,
+        "simulated_discharge": 116.70361363894871,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 49258.6273,
+        "glacier_mass_change": 3.2325794931738434,
+        "simulated_discharge": 155.75187549791823,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 49169.8819,
+        "glacier_mass_change": -25.270664773678984,
+        "simulated_discharge": 379.53836470494974,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 49081.1365,
+        "glacier_mass_change": -21.34492309243656,
+        "simulated_discharge": 348.71633124959965,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 48992.3911,
+        "glacier_mass_change": -31.48646052430057,
+        "simulated_discharge": 428.34021671999324,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 48903.6457,
+        "glacier_mass_change": 23.07038904132115,
+        "simulated_discharge": 0.0,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 48814.9003,
+        "glacier_mass_change": -10.75649385006233,
+        "simulated_discharge": 265.5837802956156,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 48726.1549,
+        "glacier_mass_change": 4.677905826930605,
+        "simulated_discharge": 144.40423720938705,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 48637.4095,
+        "glacier_mass_change": -12.448555179098824,
+        "simulated_discharge": 278.86860011482526,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 48548.6641,
+        "glacier_mass_change": -9.558388235951202,
+        "simulated_discharge": 256.17713708788204,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 48459.9187,
+        "glacier_mass_change": -2.956071807406667,
+        "simulated_discharge": 204.3406092756384,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 48371.1733,
+        "glacier_mass_change": -19.779397061203017,
+        "simulated_discharge": 336.4249734303989,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 48282.4279,
+        "glacier_mass_change": -1.7738837045089502,
+        "simulated_discharge": 195.05893864709662,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 48193.6825,
+        "glacier_mass_change": -11.729947005651477,
+        "simulated_discharge": 273.2266177935961,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 48104.9371,
+        "glacier_mass_change": -25.09731281921282,
+        "simulated_discharge": 378.1773327843738,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 48016.1917,
+        "glacier_mass_change": -20.872552300354226,
+        "simulated_discharge": 345.00762356094606,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 47927.4463,
+        "glacier_mass_change": 4.568755389673656,
+        "simulated_discharge": 145.2612060835426,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 47838.7009,
+        "glacier_mass_change": -11.633133913436737,
+        "simulated_discharge": 272.4665126696609,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 47749.9555,
+        "glacier_mass_change": -40.61362594960092,
+        "simulated_discharge": 500.0,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "13_central_asia",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 47661.2101,
+        "glacier_mass_change": -40.1200731250466,
+        "simulated_discharge": 496.1249865870998,
+        "latitude": 43.0,
+        "longitude": 75.0
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 14563.2148,
+        "glacier_mass_change": 6.971917908706984,
+        "simulated_discharge": 57.67578022028508,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 14484.7852,
+        "glacier_mass_change": -1.6612808463881623,
+        "simulated_discharge": 152.54014557031948,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 14406.3556,
+        "glacier_mass_change": 2.0771861792514,
+        "simulated_discharge": 111.46066717188441,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 14327.926,
+        "glacier_mass_change": -17.056030773498726,
+        "simulated_discharge": 321.70261049051186,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 14249.4964,
+        "glacier_mass_change": -16.80729443592748,
+        "simulated_discharge": 318.9694155910823,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 14171.0668,
+        "glacier_mass_change": -21.028659163977256,
+        "simulated_discharge": 365.3551292990078,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 14092.6372,
+        "glacier_mass_change": -8.342113934146381,
+        "simulated_discharge": 225.95128886244552,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 14014.2076,
+        "glacier_mass_change": 1.7805033372420636,
+        "simulated_discharge": 114.72071368718667,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 13935.778,
+        "glacier_mass_change": 3.3868051381654745,
+        "simulated_discharge": 97.07015272734726,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 13857.3484,
+        "glacier_mass_change": -12.903706819800696,
+        "simulated_discharge": 276.0755390226122,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 13778.9188,
+        "glacier_mass_change": 6.207456521254985,
+        "simulated_discharge": 66.0759278842597,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 13700.4892,
+        "glacier_mass_change": 12.22074313575233,
+        "simulated_discharge": 0.0,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 13622.0596,
+        "glacier_mass_change": 1.0773388501318926,
+        "simulated_discharge": 122.44731129007641,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 13543.63,
+        "glacier_mass_change": -16.240657004636397,
+        "simulated_discharge": 312.7430212003267,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 13465.2004,
+        "glacier_mass_change": -18.67077997041907,
+        "simulated_discharge": 339.44599415521907,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 13386.7708,
+        "glacier_mass_change": -28.95006204561516,
+        "simulated_discharge": 452.3980525961247,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 13308.3412,
+        "glacier_mass_change": -8.864805714406188,
+        "simulated_discharge": 231.69479430169676,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 13229.9116,
+        "glacier_mass_change": -4.836844783972129,
+        "simulated_discharge": 187.43426374286454,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 13151.482,
+        "glacier_mass_change": -8.838275285155387,
+        "simulated_discharge": 231.4032694098534,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 13073.0524,
+        "glacier_mass_change": -12.641308163481227,
+        "simulated_discharge": 273.19221816940495,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 12994.6228,
+        "glacier_mass_change": -11.421484744557484,
+        "simulated_discharge": 259.7884060068487,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 12916.1932,
+        "glacier_mass_change": -21.53130021966725,
+        "simulated_discharge": 370.8783109260682,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 12837.7636,
+        "glacier_mass_change": -12.492387413580618,
+        "simulated_discharge": 271.5558290594664,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "2_western_canada_us",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 12759.334,
+        "glacier_mass_change": -33.28211098254605,
+        "simulated_discharge": 500.0,
+        "latitude": 52.9399,
+        "longitude": -106.4509
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2000.0,
+        "end_date": 2001.0,
+        "glacier_area": 11000.276,
+        "glacier_mass_change": -12.119282301800888,
+        "simulated_discharge": 253.7913469476465,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2001.0,
+        "end_date": 2002.0,
+        "glacier_area": 10960.46,
+        "glacier_mass_change": -7.880169982482089,
+        "simulated_discharge": 197.42972695826484,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2002.0,
+        "end_date": 2003.0,
+        "glacier_area": 10920.644,
+        "glacier_mass_change": -6.477842569043585,
+        "simulated_discharge": 178.78491671893286,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2003.0,
+        "end_date": 2004.0,
+        "glacier_area": 10880.828,
+        "glacier_mass_change": -13.226291076562983,
+        "simulated_discharge": 268.5097132442202,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2004.0,
+        "end_date": 2005.0,
+        "glacier_area": 10841.012,
+        "glacier_mass_change": -15.987179419707129,
+        "simulated_discharge": 305.2174312540156,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2005.0,
+        "end_date": 2006.0,
+        "glacier_area": 10801.196,
+        "glacier_mass_change": -15.450873871967536,
+        "simulated_discharge": 298.0869173154858,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2006.0,
+        "end_date": 2007.0,
+        "glacier_area": 10761.38,
+        "glacier_mass_change": -6.918354403676182,
+        "simulated_discharge": 184.64179399751785,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2007.0,
+        "end_date": 2008.0,
+        "glacier_area": 10721.564,
+        "glacier_mass_change": -10.334411364747451,
+        "simulated_discharge": 230.0603839755536,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2008.0,
+        "end_date": 2009.0,
+        "glacier_area": 10681.748,
+        "glacier_mass_change": -11.515369917058456,
+        "simulated_discharge": 245.76195829931657,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2009.0,
+        "end_date": 2010.0,
+        "glacier_area": 10641.932,
+        "glacier_mass_change": -2.9374468586318327,
+        "simulated_discharge": 131.71316617038187,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2010.0,
+        "end_date": 2011.0,
+        "glacier_area": 10602.116,
+        "glacier_mass_change": -30.63731167132132,
+        "simulated_discharge": 500.0,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2011.0,
+        "end_date": 2012.0,
+        "glacier_area": 10562.3,
+        "glacier_mass_change": -8.189141762992667,
+        "simulated_discharge": 201.53769786557461,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2012.0,
+        "end_date": 2013.0,
+        "glacier_area": 10522.484,
+        "glacier_mass_change": -6.796645559090764,
+        "simulated_discharge": 183.02359963720127,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2013.0,
+        "end_date": 2014.0,
+        "glacier_area": 10482.668,
+        "glacier_mass_change": -1.841311036856554,
+        "simulated_discharge": 117.13936250820983,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2014.0,
+        "end_date": 2015.0,
+        "glacier_area": 10442.852,
+        "glacier_mass_change": -3.320306207595209,
+        "simulated_discharge": 136.80351799647445,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2015.0,
+        "end_date": 2016.0,
+        "glacier_area": 10403.036,
+        "glacier_mass_change": 6.969062312583269,
+        "simulated_discharge": 0.0,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2016.0,
+        "end_date": 2017.0,
+        "glacier_area": 10363.22,
+        "glacier_mass_change": -8.874125262517493,
+        "simulated_discharge": 210.64497712384605,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2017.0,
+        "end_date": 2018.0,
+        "glacier_area": 10323.404,
+        "glacier_mass_change": -2.088827327397081,
+        "simulated_discharge": 120.43024466885716,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2018.0,
+        "end_date": 2019.0,
+        "glacier_area": 10283.588,
+        "glacier_mass_change": -1.3218772112160089,
+        "simulated_discharge": 110.23316854940302,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2019.0,
+        "end_date": 2020.0,
+        "glacier_area": 10243.772,
+        "glacier_mass_change": -10.104679798740069,
+        "simulated_discharge": 227.00596072664231,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2020.0,
+        "end_date": 2021.0,
+        "glacier_area": 10203.956,
+        "glacier_mass_change": -9.140112202280346,
+        "simulated_discharge": 214.1814379891862,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2021.0,
+        "end_date": 2022.0,
+        "glacier_area": 10164.14,
+        "glacier_mass_change": -12.546547907083468,
+        "simulated_discharge": 259.4721074148143,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2022.0,
+        "end_date": 2023.0,
+        "glacier_area": 10124.324,
+        "glacier_mass_change": 1.975963970068084,
+        "simulated_discharge": 66.38633047488457,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    },
+    {
+        "region": "6_iceland",
+        "start_date": 2023.0,
+        "end_date": 2024.0,
+        "glacier_area": 10084.508,
+        "glacier_mass_change": -10.314387865321638,
+        "simulated_discharge": 229.79415916703599,
+        "latitude": 64.9631,
+        "longitude": -19.0208
+    }
+]
\ No newline at end of file
diff --git a/data/gtn_report.json b/data/gtn_report.json
new file mode 100644
index 0000000000000000000000000000000000000000..e24b1d8fa7420b4db55e1c9428b0f4b925bd9787
--- /dev/null
+++ b/data/gtn_report.json
@@ -0,0 +1,4214 @@
+[
+    {
+        "station_name":"12 DEG 43 MIN SOUTH",
+        "station_no":5708220,
+        "station_id":1073758,
+        "station_latitude":-12.7152,
+        "station_longitude":133.335,
+        "station_status":"Active",
+        "river_name":"EAST ALLIGATOR RIVER",
+        "station_elevation":34.183,
+        "CATCHMENT_SIZE":"2384,00 km\u00b2",
+        "NAT_STA_ID":"G8210010",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"7.5KM D\/S OF MOUTH OF RIVER PUR",
+        "station_no":2999910,
+        "station_id":1073411,
+        "station_latitude":71.85,
+        "station_longitude":123.65,
+        "station_status":"Active",
+        "river_name":"OLENEK",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"198000,00 km\u00b2",
+        "NAT_STA_ID":"03811",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"A LA CHUTE ROUGE",
+        "station_no":4214655,
+        "station_id":1072015,
+        "station_latitude":49.8575,
+        "station_longitude":-77.1872,
+        "station_status":"Closed",
+        "river_name":"RIVIERE WASWANIPI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"31900,00 km\u00b2",
+        "NAT_STA_ID":"03AB002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"A LA SORTIE DU LAC QUENONISCA",
+        "station_no":4214670,
+        "station_id":1072016,
+        "station_latitude":50.7458,
+        "station_longitude":-76.3878,
+        "station_status":"Closed",
+        "river_name":"RIVIERE BROADBACK",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"9820,00 km\u00b2",
+        "NAT_STA_ID":"03BD002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"A.J. AMARILLO",
+        "station_no":3846510,
+        "station_id":1073687,
+        "station_latitude":-3.761944,
+        "station_longitude":-79.635,
+        "station_status":"Active",
+        "river_name":"RIO PINDO",
+        "station_elevation":563.0,
+        "CATCHMENT_SIZE":"543,00 km\u00b2",
+        "NAT_STA_ID":"H587",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"A.J.AMARILLO",
+        "station_no":3846500,
+        "station_id":1068376,
+        "station_latitude":-3.677778,
+        "station_longitude":-79.643611,
+        "station_status":"Closed",
+        "river_name":"RIO CALERA",
+        "station_elevation":680.0,
+        "CATCHMENT_SIZE":"252,00 km\u00b2",
+        "NAT_STA_ID":"H586",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"A.J.GUACHALA",
+        "station_no":3844150,
+        "station_id":1068368,
+        "station_latitude":0.025833,
+        "station_longitude":-78.166667,
+        "station_status":"Active",
+        "river_name":"RIO GRANOBLES",
+        "station_elevation":2750.0,
+        "CATCHMENT_SIZE":"416,00 km\u00b2",
+        "NAT_STA_ID":"H143",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"A.J.PILATON",
+        "station_no":3844200,
+        "station_id":1068369,
+        "station_latitude":-0.315556,
+        "station_longitude":-78.951389,
+        "station_status":"Active",
+        "river_name":"RIO TOACHI",
+        "station_elevation":820.0,
+        "CATCHMENT_SIZE":"1435,00 km\u00b2",
+        "NAT_STA_ID":"H161",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"ABOVE COPPER CREEK",
+        "station_no":4209401,
+        "station_id":1069112,
+        "station_latitude":67.228889,
+        "station_longitude":-115.88695,
+        "station_status":"Active",
+        "river_name":"COPPERMINE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"46800,00 km\u00b2",
+        "NAT_STA_ID":"10PC004",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE FISHING CREEK ISLAND",
+        "station_no":4214590,
+        "station_id":1475890,
+        "station_latitude":51.85,
+        "station_longitude":-82.97,
+        "station_status":"Active",
+        "river_name":"ALBANY RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"-999,00 km\u00b2",
+        "NAT_STA_ID":"04HA002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE FORT MCPHERSON",
+        "station_no":4208040,
+        "station_id":1068040,
+        "station_latitude":67.248886,
+        "station_longitude":-134.88306,
+        "station_status":"Active",
+        "river_name":"PEEL RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"70600,00 km\u00b2",
+        "NAT_STA_ID":"10MC002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE HERMANN RIVER",
+        "station_no":4209805,
+        "station_id":1069127,
+        "station_latitude":66.086113,
+        "station_longitude":-96.511108,
+        "station_status":"Active",
+        "river_name":"BACK RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"93900,00 km\u00b2",
+        "NAT_STA_ID":"10RC001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE KAZAN FALLS",
+        "station_no":4214090,
+        "station_id":1069164,
+        "station_latitude":63.6525,
+        "station_longitude":-95.851944,
+        "station_status":"Active",
+        "river_name":"KAZAN RIVER",
+        "station_elevation":80.0,
+        "CATCHMENT_SIZE":"72300,00 km\u00b2",
+        "NAT_STA_ID":"06LC001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE MOOSE RIVER",
+        "station_no":4214551,
+        "station_id":1069187,
+        "station_latitude":50.743332,
+        "station_longitude":-81.458336,
+        "station_status":"Active",
+        "river_name":"MOOSE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"60100,00 km\u00b2",
+        "NAT_STA_ID":"04LG004",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE OUTLET SEALHOLE LAKE",
+        "station_no":4214070,
+        "station_id":1070587,
+        "station_latitude":60.785831,
+        "station_longitude":-98.776947,
+        "station_status":"Active",
+        "river_name":"THLEWIAZA RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"27000,00 km\u00b2",
+        "NAT_STA_ID":"06HB002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE QNSLR BRIDGE",
+        "station_no":4244890,
+        "station_id":1069421,
+        "station_latitude":50.350277,
+        "station_longitude":-66.190277,
+        "station_status":"Closed",
+        "river_name":"RIVIERE MOISIE",
+        "station_elevation":17.0,
+        "CATCHMENT_SIZE":"19000,00 km\u00b2",
+        "NAT_STA_ID":"02UC002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE RED HEAD RAPIDS",
+        "station_no":4214270,
+        "station_id":1071485,
+        "station_latitude":58.120834,
+        "station_longitude":-94.625,
+        "station_status":"Active",
+        "river_name":"CHURCHILL RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"287000,00 km\u00b2",
+        "NAT_STA_ID":"06FD001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE SHUMAL CREEK",
+        "station_no":4245100,
+        "station_id":1068070,
+        "station_latitude":55.263889,
+        "station_longitude":-129.08611,
+        "station_status":"Active",
+        "river_name":"NASS RIVER",
+        "station_elevation":65.0,
+        "CATCHMENT_SIZE":"19200,00 km\u00b2",
+        "NAT_STA_ID":"08DB001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ABOVE UPPER MUSKRAT FALLS",
+        "station_no":4244500,
+        "station_id":1068006,
+        "station_latitude":53.247776,
+        "station_longitude":-60.789165,
+        "station_status":"Active",
+        "river_name":"CHURCHILL RIVER",
+        "station_elevation":16.0,
+        "CATCHMENT_SIZE":"92500,00 km\u00b2",
+        "NAT_STA_ID":"03OE001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ACHUPALLAS",
+        "station_no":3258200,
+        "station_id":1071608,
+        "station_latitude":-35.08,
+        "station_longitude":-60.12,
+        "station_status":"Active",
+        "river_name":"RIO SALADO",
+        "station_elevation":41.0,
+        "CATCHMENT_SIZE":"29000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"AR - ARGENTINA"
+    },
+    {
+        "station_name":"AHLERGAARDE",
+        "station_no":6934100,
+        "station_id":1067810,
+        "station_latitude":55.95689,
+        "station_longitude":8.70724,
+        "station_status":"Active",
+        "river_name":"SKJERN A",
+        "station_elevation":7.5,
+        "CATCHMENT_SIZE":"1055,00 km\u00b2",
+        "NAT_STA_ID":"25000082",
+        "GRDCCOUNTRY":"DK - DENMARK"
+    },
+    {
+        "station_name":"AI-AIS (64812014)",
+        "station_no":1259100,
+        "station_id":1072623,
+        "station_latitude":-27.91666667,
+        "station_longitude":17.5,
+        "station_status":"Active",
+        "river_name":"FISH",
+        "station_elevation":243.6,
+        "CATCHMENT_SIZE":"63300,00 km\u00b2",
+        "NAT_STA_ID":"0499M02",
+        "GRDCCOUNTRY":"NA - NAMIBIA"
+    },
+    {
+        "station_name":"ALDEYJARFOSS",
+        "station_no":6401610,
+        "station_id":1075508,
+        "station_latitude":65.37076,
+        "station_longitude":-17.34691,
+        "station_status":"Active",
+        "river_name":"SKJALFANDAFLJOT",
+        "station_elevation":261.0,
+        "CATCHMENT_SIZE":"2163,00 km\u00b2",
+        "NAT_STA_ID":"VHM238",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"ALGODONES",
+        "station_no":3179900,
+        "station_id":1072157,
+        "station_latitude":-28.72,
+        "station_longitude":-70.52,
+        "station_status":"Active",
+        "river_name":"RIO HUASCO",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"7187,00 km\u00b2",
+        "NAT_STA_ID":"3820001",
+        "GRDCCOUNTRY":"CL - CHILE"
+    },
+    {
+        "station_name":"ALTAMIRA",
+        "station_no":3638050,
+        "station_id":1071408,
+        "station_latitude":-3.2147,
+        "station_longitude":-52.2122,
+        "station_status":"Active",
+        "river_name":"RIO XINGU",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"446203,00 km\u00b2",
+        "NAT_STA_ID":"18850000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"ALTO BONITO",
+        "station_no":3650202,
+        "station_id":1068680,
+        "station_latitude":-1.8006,
+        "station_longitude":-46.3161,
+        "station_status":"Active",
+        "river_name":"RIO GURUPI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"31850,00 km\u00b2",
+        "NAT_STA_ID":"32620000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"AMBUNTI",
+        "station_no":5550500,
+        "station_id":1066770,
+        "station_latitude":-4.21875,
+        "station_longitude":142.82708,
+        "station_status":"Active",
+        "river_name":"SEPIK RIVER",
+        "station_elevation":40.0,
+        "CATCHMENT_SIZE":"40922,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"PG - PAPUA NEW GUINEA"
+    },
+    {
+        "station_name":"AMOS",
+        "station_no":4214610,
+        "station_id":1069189,
+        "station_latitude":48.600555,
+        "station_longitude":-78.109444,
+        "station_status":"Closed",
+        "river_name":"HARRICANAW RIVER",
+        "station_elevation":305.0,
+        "CATCHMENT_SIZE":"3680,00 km\u00b2",
+        "NAT_STA_ID":"04NA001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ANJALA",
+        "station_no":6854203,
+        "station_id":1066259,
+        "station_latitude":60.69837868,
+        "station_longitude":26.8174654,
+        "station_status":"Active",
+        "river_name":"KYMIJOKI",
+        "station_elevation":24.0,
+        "CATCHMENT_SIZE":"36275,00 km\u00b2",
+        "NAT_STA_ID":"1410050",
+        "GRDCCOUNTRY":"FI - FINLAND"
+    },
+    {
+        "station_name":"ARAPARI",
+        "station_no":3630300,
+        "station_id":1068639,
+        "station_latitude":-1.7789,
+        "station_longitude":-54.3972,
+        "station_status":"Active",
+        "river_name":"RIO MAICURU",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"17072,00 km\u00b2",
+        "NAT_STA_ID":"18200000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"ARBAEJARFOSS",
+        "station_no":6401150,
+        "station_id":1075502,
+        "station_latitude":63.86324,
+        "station_longitude":-20.34065,
+        "station_status":"Closed",
+        "river_name":"YTRI-RANGA",
+        "station_elevation":35.0,
+        "CATCHMENT_SIZE":"621,00 km\u00b2",
+        "NAT_STA_ID":"VHM59",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"ARCTIC RED RIVER",
+        "station_no":4208025,
+        "station_id":1068038,
+        "station_latitude":67.458336,
+        "station_longitude":-133.74472,
+        "station_status":"Active",
+        "river_name":"MACKENZIE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"1660000,00 km\u00b2",
+        "NAT_STA_ID":"10LC014",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"AREA 8 SPRINGS B",
+        "station_no":1160684,
+        "station_id":1074726,
+        "station_latitude":-32.51638889,
+        "station_longitude":28.01805556,
+        "station_status":"Active",
+        "river_name":"GREAT KEI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"18795,00 km\u00b2",
+        "NAT_STA_ID":"S7H004",
+        "GRDCCOUNTRY":"ZA - SOUTH AFRICA"
+    },
+    {
+        "station_name":"ARGAKHTAKH",
+        "station_no":2998451,
+        "station_id":1071105,
+        "station_latitude":68.5,
+        "station_longitude":153.42,
+        "station_status":"Active",
+        "river_name":"ALAZEYA",
+        "station_elevation":11.0,
+        "CATCHMENT_SIZE":"17700,00 km\u00b2",
+        "NAT_STA_ID":"03881",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"AT KELSEY GENERATING STATION",
+        "station_no":4213720,
+        "station_id":1071127,
+        "station_latitude":56.038887,
+        "station_longitude":-96.525002,
+        "station_status":"Active",
+        "river_name":"NELSON RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"1010000,00 km\u00b2",
+        "NAT_STA_ID":"05UE005",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"ATHIEME",
+        "station_no":1732100,
+        "station_id":1071185,
+        "station_latitude":6.90208,
+        "station_longitude":1.60625,
+        "station_status":"Active",
+        "river_name":"MONO",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"21575,00 km\u00b2",
+        "NAT_STA_ID":"1114000107",
+        "GRDCCOUNTRY":"BJ - BENIN"
+    },
+    {
+        "station_name":"AU LAC DE LA HUTTE SAUVAGE",
+        "station_no":4214905,
+        "station_id":1072089,
+        "station_latitude":56.7931,
+        "station_longitude":-65.7583,
+        "station_status":"Closed",
+        "river_name":"RIVIERE GEORGE",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"24200,00 km\u00b2",
+        "NAT_STA_ID":"03MD001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BACABAL",
+        "station_no":3650335,
+        "station_id":1068692,
+        "station_latitude":-4.21944,
+        "station_longitude":-44.76528,
+        "station_status":"Active",
+        "river_name":"RIO MEARIM",
+        "station_elevation":9.0,
+        "CATCHMENT_SIZE":"27650,00 km\u00b2",
+        "NAT_STA_ID":"33290000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"BADAJOS",
+        "station_no":3650150,
+        "station_id":1068679,
+        "station_latitude":-2.51278,
+        "station_longitude":-47.76806,
+        "station_status":"Active",
+        "river_name":"RIO CAPIM",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"38178,00 km\u00b2",
+        "NAT_STA_ID":"31700000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"BAGHLIA",
+        "station_no":1104530,
+        "station_id":1067484,
+        "station_latitude":36.8,
+        "station_longitude":3.87,
+        "station_status":"Active",
+        "river_name":"OUED SEBAOU",
+        "station_elevation":20.0,
+        "CATCHMENT_SIZE":"2501,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"DZ - ALGERIA"
+    },
+    {
+        "station_name":"BALLATHIE",
+        "station_no":6605615,
+        "station_id":1066270,
+        "station_latitude":56.51441409,
+        "station_longitude":-3.386963997,
+        "station_status":"Active",
+        "river_name":"RIVER TAY",
+        "station_elevation":26.2,
+        "CATCHMENT_SIZE":"4587,10 km\u00b2",
+        "NAT_STA_ID":"g015006",
+        "GRDCCOUNTRY":"GB - UNITED KINGDOM"
+    },
+    {
+        "station_name":"BEAVER ARMY TERMINAL NEAR QUINCY, OR",
+        "station_no":4115201,
+        "station_id":1073172,
+        "station_latitude":46.1815,
+        "station_longitude":-123.184,
+        "station_status":"Active",
+        "river_name":"COLUMBIA RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"665371,00 km\u00b2",
+        "NAT_STA_ID":"14246900",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"BELOW ASHEWEIG RIVER TRIBUTARY",
+        "station_no":4214450,
+        "station_id":1069180,
+        "station_latitude":54.516666,
+        "station_longitude":-87.23333,
+        "station_status":"Active",
+        "river_name":"WINISK RIVER",
+        "station_elevation":100.0,
+        "CATCHMENT_SIZE":"50000,00 km\u00b2",
+        "NAT_STA_ID":"04DC001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BELOW CARNWATH RIVER",
+        "station_no":4209150,
+        "station_id":1069090,
+        "station_latitude":68.632225,
+        "station_longitude":-128.41333,
+        "station_status":"Active",
+        "river_name":"ANDERSON RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"56300,00 km\u00b2",
+        "NAT_STA_ID":"10NC001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BELOW CONCORD RIVER AT LOWELL, MA",
+        "station_no":4147380,
+        "station_id":1069149,
+        "station_latitude":42.6459,
+        "station_longitude":-71.2984,
+        "station_status":"Active",
+        "river_name":"MERRIMACK RIVER",
+        "station_elevation":1.58,
+        "CATCHMENT_SIZE":"12004,70 km\u00b2",
+        "NAT_STA_ID":"01100000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"BELOW GODS RIVER",
+        "station_no":4214025,
+        "station_id":1071743,
+        "station_latitude":56.431946,
+        "station_longitude":-92.788612,
+        "station_status":"Active",
+        "river_name":"HAYES RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"103000,00 km\u00b2",
+        "NAT_STA_ID":"04AB001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BELOW GREAT ISLAND",
+        "station_no":4214105,
+        "station_id":1070941,
+        "station_latitude":58.891666,
+        "station_longitude":-96.275276,
+        "station_status":"Active",
+        "river_name":"SEAL RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"48100,00 km\u00b2",
+        "NAT_STA_ID":"06GD001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BELOW MUKETEI RIVER",
+        "station_no":4214080,
+        "station_id":1072962,
+        "station_latitude":53.091667,
+        "station_longitude":-85.008331,
+        "station_status":"Active",
+        "river_name":"ATTAWAPISKAT RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"36000,00 km\u00b2",
+        "NAT_STA_ID":"04FC001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BELOW NORTH WASHAGAMI RIVER",
+        "station_no":4214460,
+        "station_id":1475881,
+        "station_latitude":53.8,
+        "station_longitude":-84.92,
+        "station_status":"Active",
+        "river_name":"EKWAN RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"10400,00 km\u00b2",
+        "NAT_STA_ID":"04EA001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BELOW OUTLET OF SCHULTZ LAKE",
+        "station_no":4214051,
+        "station_id":1069163,
+        "station_latitude":64.77861,
+        "station_longitude":-97.053612,
+        "station_status":"Active",
+        "river_name":"THELON RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"152000,00 km\u00b2",
+        "NAT_STA_ID":"06MA006",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"BELOW SKILAK LAKE OUTLET, AK",
+        "station_no":4105852,
+        "station_id":1073726,
+        "station_latitude":60.4661,
+        "station_longitude":-150.6011,
+        "station_status":"Active",
+        "river_name":"KENAI RIVER",
+        "station_elevation":73.15,
+        "CATCHMENT_SIZE":"3123,54 km\u00b2",
+        "NAT_STA_ID":"15266110",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"BELOW TUTAK CREEK NEAR KIVALINA, AK",
+        "station_no":4101200,
+        "station_id":1073722,
+        "station_latitude":67.8754,
+        "station_longitude":-163.6774,
+        "station_status":"Active",
+        "river_name":"WULIK RIVER",
+        "station_elevation":53.34,
+        "CATCHMENT_SIZE":"1825,95 km\u00b2",
+        "NAT_STA_ID":"15747000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"BELOW YUMA MAIN CANAL WW AT YUMA,AZ",
+        "station_no":4152050,
+        "station_id":1071993,
+        "station_latitude":32.7317,
+        "station_longitude":-114.6319,
+        "station_status":"Active",
+        "river_name":"COLORADO RIVER",
+        "station_elevation":31.09,
+        "CATCHMENT_SIZE":"618715,00 km\u00b2",
+        "NAT_STA_ID":"09521100",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"BENGBU",
+        "station_no":2178950,
+        "station_id":1073304,
+        "station_latitude":32.93,
+        "station_longitude":117.38,
+        "station_status":"Active",
+        "river_name":"HUAI HE",
+        "station_elevation":25.0,
+        "CATCHMENT_SIZE":"121330,00 km\u00b2",
+        "NAT_STA_ID":"51080",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"BERTNEM",
+        "station_no":6731555,
+        "station_id":1072565,
+        "station_latitude":64.468071,
+        "station_longitude":12.05868,
+        "station_status":"Active",
+        "river_name":"NAMSEN",
+        "station_elevation":3.9,
+        "CATCHMENT_SIZE":"5163,00 km\u00b2",
+        "NAT_STA_ID":"139.17.0.1001.0",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"BLAIRSTON",
+        "station_no":6604201,
+        "station_id":1072613,
+        "station_latitude":55.79734305,
+        "station_longitude":-4.068305586,
+        "station_status":"Active",
+        "river_name":"RIVER CLYDE",
+        "station_elevation":17.6,
+        "CATCHMENT_SIZE":"1704,20 km\u00b2",
+        "NAT_STA_ID":"g084005",
+        "GRDCCOUNTRY":"GB - UNITED KINGDOM"
+    },
+    {
+        "station_name":"BODENS KRV (+ VATTENVERK, TRANGFORS)",
+        "station_no":6233750,
+        "station_id":1066650,
+        "station_latitude":65.8076,
+        "station_longitude":21.6705,
+        "station_status":"Active",
+        "river_name":"LULEALVEN",
+        "station_elevation":11.0,
+        "CATCHMENT_SIZE":"24923,50 km\u00b2",
+        "NAT_STA_ID":"2131",
+        "GRDCCOUNTRY":"SE - SWEDEN"
+    },
+    {
+        "station_name":"BOLUO",
+        "station_no":2186950,
+        "station_id":1073309,
+        "station_latitude":23.17,
+        "station_longitude":114.3,
+        "station_status":"Active",
+        "river_name":"DONG JIANG",
+        "station_elevation":7.0,
+        "CATCHMENT_SIZE":"25325,00 km\u00b2",
+        "NAT_STA_ID":"87141",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"BONOU",
+        "station_no":1733600,
+        "station_id":1070835,
+        "station_latitude":6.9,
+        "station_longitude":2.45,
+        "station_status":"Active",
+        "river_name":"OUEME",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"46990,00 km\u00b2",
+        "NAT_STA_ID":"1114500107",
+        "GRDCCOUNTRY":"BJ - BENIN"
+    },
+    {
+        "station_name":"BORGHAREN",
+        "station_no":6421500,
+        "station_id":1066287,
+        "station_latitude":50.87,
+        "station_longitude":5.72,
+        "station_status":"Active",
+        "river_name":"MEUSE",
+        "station_elevation":40.0,
+        "CATCHMENT_SIZE":"21301,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"NL - NETHERLANDS"
+    },
+    {
+        "station_name":"BORROLOOLA CROSSING",
+        "station_no":5709112,
+        "station_id":1073759,
+        "station_latitude":-16.0818,
+        "station_longitude":136.317,
+        "station_status":"Active",
+        "river_name":"MCARTHUR RIVER",
+        "station_elevation":31.435,
+        "CATCHMENT_SIZE":"15700,00 km\u00b2",
+        "NAT_STA_ID":"G9070121",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"BUNDALAGUAH",
+        "station_no":5302251,
+        "station_id":1074350,
+        "station_latitude":-38.0453,
+        "station_longitude":146.992,
+        "station_status":"Active",
+        "river_name":"THOMSON RIVER",
+        "station_elevation":12.01,
+        "CATCHMENT_SIZE":"3538,00 km\u00b2",
+        "NAT_STA_ID":"225232",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"CALALLEN, TX",
+        "station_no":4150283,
+        "station_id":1071801,
+        "station_latitude":27.8831,
+        "station_longitude":-97.6253,
+        "station_status":"Active",
+        "river_name":"NUECES RIVER",
+        "station_elevation":0.26,
+        "CATCHMENT_SIZE":"43822,80 km\u00b2",
+        "NAT_STA_ID":"08211500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"CAMPOS - PONTE MUNICIPAL",
+        "station_no":3652890,
+        "station_id":1068442,
+        "station_latitude":-21.7533,
+        "station_longitude":-41.3003,
+        "station_status":"Active",
+        "river_name":"RIO PARAIBA DO SUL",
+        "station_elevation":14.0,
+        "CATCHMENT_SIZE":"55500,00 km\u00b2",
+        "NAT_STA_ID":"58974000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"CANTANHEDE",
+        "station_no":3650359,
+        "station_id":1068635,
+        "station_latitude":-3.62778,
+        "station_longitude":-44.37917,
+        "station_status":"Active",
+        "river_name":"RIO ITAPECURU",
+        "station_elevation":15.0,
+        "CATCHMENT_SIZE":"49500,00 km\u00b2",
+        "NAT_STA_ID":"33680000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"CASINO",
+        "station_no":5202030,
+        "station_id":1068942,
+        "station_latitude":-28.864,
+        "station_longitude":153.055,
+        "station_status":"Active",
+        "river_name":"RICHMOND RIVER",
+        "station_elevation":5.02,
+        "CATCHMENT_SIZE":"1790,00 km\u00b2",
+        "NAT_STA_ID":"203004",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"CATARAMA",
+        "station_no":3844460,
+        "station_id":1068373,
+        "station_latitude":-1.570833,
+        "station_longitude":-79.482222,
+        "station_status":"Active",
+        "river_name":"RIO ZAPOTAL",
+        "station_elevation":40.0,
+        "CATCHMENT_SIZE":"3720,00 km\u00b2",
+        "NAT_STA_ID":"H345",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"CEATAL IZMAIL",
+        "station_no":6742900,
+        "station_id":1066144,
+        "station_latitude":45.216667,
+        "station_longitude":28.716657,
+        "station_status":"Active",
+        "river_name":"DANUBE RIVER",
+        "station_elevation":0.6,
+        "CATCHMENT_SIZE":"807000,00 km\u00b2",
+        "NAT_STA_ID":"42057",
+        "GRDCCOUNTRY":"RO - ROMANIA"
+    },
+    {
+        "station_name":"CHARLES FUHR",
+        "station_no":3276800,
+        "station_id":1071529,
+        "station_latitude":-50.27,
+        "station_longitude":-71.9,
+        "station_status":"Active",
+        "river_name":"RIO SANTA CRUZ",
+        "station_elevation":206.0,
+        "CATCHMENT_SIZE":"15550,00 km\u00b2",
+        "NAT_STA_ID":"L70R12802",
+        "GRDCCOUNTRY":"AR - ARGENTINA"
+    },
+    {
+        "station_name":"CHILING",
+        "station_no":2179100,
+        "station_id":1073719,
+        "station_latitude":42.2,
+        "station_longitude":123.5,
+        "station_status":"Active",
+        "river_name":"LIAO HE",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"120764,00 km\u00b2",
+        "NAT_STA_ID":"23004",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"CHUTE DE LA PYRITE",
+        "station_no":4214040,
+        "station_id":1068002,
+        "station_latitude":57.43,
+        "station_longitude":-69.25,
+        "station_status":"Closed",
+        "river_name":"RIVIERE CANIAPISCAU",
+        "station_elevation":67.0,
+        "CATCHMENT_SIZE":"86800,00 km\u00b2",
+        "NAT_STA_ID":"03LF002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"CLAIRBORNE L+D NEAR MONROEVILLE",
+        "station_no":4149401,
+        "station_id":1073641,
+        "station_latitude":31.6115,
+        "station_longitude":-87.553,
+        "station_status":"Active",
+        "river_name":"ALABAMA RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"55615,10 km\u00b2",
+        "NAT_STA_ID":"02428400",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"CLARE",
+        "station_no":5101200,
+        "station_id":1067070,
+        "station_latitude":-19.7586,
+        "station_longitude":147.244,
+        "station_status":"Active",
+        "river_name":"BURDEKIN RIVER",
+        "station_elevation":9.4,
+        "CATCHMENT_SIZE":"129900,00 km\u00b2",
+        "NAT_STA_ID":"120006B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"COFFEEVILLE L+D NEAR COFFEEVILLE, AL",
+        "station_no":4149413,
+        "station_id":1071795,
+        "station_latitude":31.7585,
+        "station_longitude":-88.1292,
+        "station_status":"Active",
+        "river_name":"TOMBIGBEE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"47700,00 km\u00b2",
+        "NAT_STA_ID":"02469761",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"COLONIA",
+        "station_no":3186500,
+        "station_id":1068832,
+        "station_latitude":-47.35,
+        "station_longitude":-72.85,
+        "station_status":"Active",
+        "river_name":"RIO BAKER",
+        "station_elevation":105.0,
+        "CATCHMENT_SIZE":"23736,00 km\u00b2",
+        "NAT_STA_ID":"11542001",
+        "GRDCCOUNTRY":"CL - CHILE"
+    },
+    {
+        "station_name":"COLWICK",
+        "station_no":6606600,
+        "station_id":1066165,
+        "station_latitude":52.95344262,
+        "station_longitude":-1.078455809,
+        "station_status":"Active",
+        "river_name":"RIVER TRENT",
+        "station_elevation":16.0,
+        "CATCHMENT_SIZE":"7486,00 km\u00b2",
+        "NAT_STA_ID":"g028009",
+        "GRDCCOUNTRY":"GB - UNITED KINGDOM"
+    },
+    {
+        "station_name":"CONOWINGO, MD",
+        "station_no":4147703,
+        "station_id":1073594,
+        "station_latitude":39.6573,
+        "station_longitude":-76.175,
+        "station_status":"Active",
+        "river_name":"SUSQUEHANNA RIVER",
+        "station_elevation":1.52,
+        "CATCHMENT_SIZE":"70189,00 km\u00b2",
+        "NAT_STA_ID":"01578310",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"COOLIBAH HOMESTEAD",
+        "station_no":5708110,
+        "station_id":1066748,
+        "station_latitude":-15.5515,
+        "station_longitude":130.964,
+        "station_status":"Active",
+        "river_name":"VICTORIA RIVER",
+        "station_elevation":22.15,
+        "CATCHMENT_SIZE":"44900,00 km\u00b2",
+        "NAT_STA_ID":"G8110007",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"CORNECHE",
+        "station_no":3179250,
+        "station_id":1068830,
+        "station_latitude":-33.98,
+        "station_longitude":-71.68,
+        "station_status":"Active",
+        "river_name":"RIO RAPEL",
+        "station_elevation":17.0,
+        "CATCHMENT_SIZE":"13186,00 km\u00b2",
+        "NAT_STA_ID":"-999",
+        "GRDCCOUNTRY":"CL - CHILE"
+    },
+    {
+        "station_name":"CROOKED CREEK, ALAS.",
+        "station_no":4102100,
+        "station_id":1068183,
+        "station_latitude":61.8704,
+        "station_longitude":-158.1032,
+        "station_status":"Active",
+        "river_name":"KUSKOKWIM RIVER",
+        "station_elevation":60.96,
+        "CATCHMENT_SIZE":"80549,00 km\u00b2",
+        "NAT_STA_ID":"15304000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"D.J.CARIYACU",
+        "station_no":3843500,
+        "station_id":1068366,
+        "station_latitude":0.375833,
+        "station_longitude":-78.211667,
+        "station_status":"Active",
+        "river_name":"RIO AMBI",
+        "station_elevation":2015.0,
+        "CATCHMENT_SIZE":"686,00 km\u00b2",
+        "NAT_STA_ID":"H023",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"D.J.SADE",
+        "station_no":3844100,
+        "station_id":1068367,
+        "station_latitude":0.523333,
+        "station_longitude":-79.415278,
+        "station_status":"Active",
+        "river_name":"RIO ESMERALDAS",
+        "station_elevation":50.0,
+        "CATCHMENT_SIZE":"18800,00 km\u00b2",
+        "NAT_STA_ID":"H168",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"D.J.SAN FRANCISCO",
+        "station_no":3844800,
+        "station_id":1068375,
+        "station_latitude":-3.305278,
+        "station_longitude":-79.505,
+        "station_status":"Active",
+        "river_name":"RIO JUBONES",
+        "station_elevation":680.0,
+        "CATCHMENT_SIZE":"3320,00 km\u00b2",
+        "NAT_STA_ID":"H529",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"D\/S RAMROD CREEK",
+        "station_no":5302110,
+        "station_id":1074349,
+        "station_latitude":-37.6725,
+        "station_longitude":147.87,
+        "station_status":"Active",
+        "river_name":"TAMBO RIVER",
+        "station_elevation":24.615,
+        "CATCHMENT_SIZE":"2681,00 km\u00b2",
+        "NAT_STA_ID":"223205",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"DALINGHE",
+        "station_no":2178400,
+        "station_id":1072153,
+        "station_latitude":41.18,
+        "station_longitude":121.37,
+        "station_status":"Active",
+        "river_name":"DALINGHE KOU",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"17687,00 km\u00b2",
+        "NAT_STA_ID":"25318",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"DARTMOOR",
+        "station_no":5302400,
+        "station_id":1067416,
+        "station_latitude":-37.9247,
+        "station_longitude":141.281,
+        "station_status":"Active",
+        "river_name":"GLENELG RIVER",
+        "station_elevation":7.69,
+        "CATCHMENT_SIZE":"11914,00 km\u00b2",
+        "NAT_STA_ID":"238206",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"DATONG",
+        "station_no":2181900,
+        "station_id":1073711,
+        "station_latitude":30.77,
+        "station_longitude":117.62,
+        "station_status":"Active",
+        "river_name":"YANGTZE RIVER",
+        "station_elevation":19.0,
+        "CATCHMENT_SIZE":"1705383,00 km\u00b2",
+        "NAT_STA_ID":"60315",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"DESEMBOCADURA",
+        "station_no":3179500,
+        "station_id":1068831,
+        "station_latitude":-36.83,
+        "station_longitude":-73.07,
+        "station_status":"Active",
+        "river_name":"RIO BIOBIO",
+        "station_elevation":0.0,
+        "CATCHMENT_SIZE":"24029,00 km\u00b2",
+        "NAT_STA_ID":"8394001",
+        "GRDCCOUNTRY":"CL - CHILE"
+    },
+    {
+        "station_name":"DJUPA BRU",
+        "station_no":6401500,
+        "station_id":1066426,
+        "station_latitude":63.9509,
+        "station_longitude":-17.63609,
+        "station_status":"Active",
+        "river_name":"DJUPA",
+        "station_elevation":52.0,
+        "CATCHMENT_SIZE":"226,00 km\u00b2",
+        "NAT_STA_ID":"VHM150",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"DOCTORTOWN, GA.",
+        "station_no":4148720,
+        "station_id":1069579,
+        "station_latitude":31.6547,
+        "station_longitude":-81.8279,
+        "station_status":"Active",
+        "river_name":"ALTAMAHA RIVER",
+        "station_elevation":7.46,
+        "CATCHMENT_SIZE":"35224,00 km\u00b2",
+        "NAT_STA_ID":"02226000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"DONKER HOEK ALICEDALE",
+        "station_no":1160500,
+        "station_id":1067265,
+        "station_latitude":-33.32941667,
+        "station_longitude":26.07775,
+        "station_status":"Active",
+        "river_name":"BOESMANSRIVIER",
+        "station_elevation":276.0,
+        "CATCHMENT_SIZE":"1479,00 km\u00b2",
+        "NAT_STA_ID":"P1H003",
+        "GRDCCOUNTRY":"ZA - SOUTH AFRICA"
+    },
+    {
+        "station_name":"DORUNDA",
+        "station_no":5109220,
+        "station_id":1074194,
+        "station_latitude":-16.5315,
+        "station_longitude":142.06,
+        "station_status":"Active",
+        "river_name":"STAATEN RIVER",
+        "station_elevation":22.405,
+        "CATCHMENT_SIZE":"6789,00 km\u00b2",
+        "NAT_STA_ID":"918003A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"DOVIKFOSS",
+        "station_no":6729310,
+        "station_id":1072154,
+        "station_latitude":59.8805,
+        "station_longitude":9.908034,
+        "station_status":"Active",
+        "river_name":"DRAMSELVA",
+        "station_elevation":35.0,
+        "CATCHMENT_SIZE":"16120,00 km\u00b2",
+        "NAT_STA_ID":"12.68.0.1001.0",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"DRY BAY NEAR YAKUTAT, AK",
+        "station_no":4105060,
+        "station_id":1489006,
+        "station_latitude":59.1906,
+        "station_longitude":-138.3267,
+        "station_status":"Active",
+        "river_name":"ALSEK RIVER",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"28490,00 km\u00b2",
+        "NAT_STA_ID":"15129120",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"DUNBAR",
+        "station_no":5109201,
+        "station_id":1074249,
+        "station_latitude":-15.9424,
+        "station_longitude":142.374,
+        "station_status":"Active",
+        "river_name":"MITCHELL RIVER",
+        "station_elevation":19.71,
+        "CATCHMENT_SIZE":"45000,00 km\u00b2",
+        "NAT_STA_ID":"919009B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"EIDHI",
+        "station_no":6401310,
+        "station_id":1075505,
+        "station_latitude":65.58876,
+        "station_longitude":-23.12719,
+        "station_status":"Active",
+        "river_name":"VATNSDALSA",
+        "station_elevation":9.0,
+        "CATCHMENT_SIZE":"102,00 km\u00b2",
+        "NAT_STA_ID":"VHM204",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"ELLENBOROUGH (KINDEE BRIDGE)",
+        "station_no":5202075,
+        "station_id":1066896,
+        "station_latitude":-31.4241,
+        "station_longitude":152.4697,
+        "station_status":"Active",
+        "river_name":"HASTINGS RIVER",
+        "station_elevation":44.95,
+        "CATCHMENT_SIZE":"1583,00 km\u00b2",
+        "NAT_STA_ID":"207004",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"ELTHAM",
+        "station_no":5202036,
+        "station_id":1074157,
+        "station_latitude":-28.7556,
+        "station_longitude":153.395,
+        "station_status":"Active",
+        "river_name":"WILSONS RIVER",
+        "station_elevation":7.46,
+        "CATCHMENT_SIZE":"223,00 km\u00b2",
+        "NAT_STA_ID":"203014",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"EMSTRUR",
+        "station_no":6401440,
+        "station_id":1075507,
+        "station_latitude":63.78048,
+        "station_longitude":-19.4171,
+        "station_status":"Active",
+        "river_name":"MARKARFLJOT",
+        "station_elevation":425.0,
+        "CATCHMENT_SIZE":"517,00 km\u00b2",
+        "NAT_STA_ID":"VHM218",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"EN AMONT DE LA RIVIERE DENYS-1",
+        "station_no":4214801,
+        "station_id":1072020,
+        "station_latitude":55.2375,
+        "station_longitude":-76.9839,
+        "station_status":"Closed",
+        "river_name":"GRANDE RIVIERE DE LA BALEINE",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"36300,00 km\u00b2",
+        "NAT_STA_ID":"03ED001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"EN AMONT DE LA RIVIERE GRIAULT",
+        "station_no":4214775,
+        "station_id":1475891,
+        "station_latitude":54.24,
+        "station_longitude":-76.16,
+        "station_status":"Active",
+        "river_name":"RIVIERE KANAAUPSCOW",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"9320,00 km\u00b2",
+        "NAT_STA_ID":"03DB004",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"EN AMONT DU LAC MATAGAMI",
+        "station_no":4214621,
+        "station_id":1070883,
+        "station_latitude":49.7531,
+        "station_longitude":-77.6144,
+        "station_status":"Closed",
+        "river_name":"BELL RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"22200,00 km\u00b2",
+        "NAT_STA_ID":"03AC004",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"EN AMONT DU RUISSEAU DUFREBOY",
+        "station_no":4214943,
+        "station_id":1475892,
+        "station_latitude":58.28,
+        "station_longitude":-71.28,
+        "station_status":"Active",
+        "river_name":"RIVIERE AUX FEUILLES",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"33900,00 km\u00b2",
+        "NAT_STA_ID":"03JB004",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"EN AVAL DE LA DECHARGE DU LAC ALIESTE",
+        "station_no":4244635,
+        "station_id":1068010,
+        "station_latitude":50.427223,
+        "station_longitude":-61.713612,
+        "station_status":"Closed",
+        "river_name":"NATASHQUAN, RIVIERE",
+        "station_elevation":43.0,
+        "CATCHMENT_SIZE":"15600,00 km\u00b2",
+        "NAT_STA_ID":"02WB003",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"EN AVAL DU LAC NEMISCAU",
+        "station_no":4214680,
+        "station_id":1069281,
+        "station_latitude":51.448612,
+        "station_longitude":-76.866386,
+        "station_status":"Closed",
+        "river_name":"RUPERT",
+        "station_elevation":211.0,
+        "CATCHMENT_SIZE":"40900,00 km\u00b2",
+        "NAT_STA_ID":"03BC002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"EURAMO",
+        "station_no":5101130,
+        "station_id":1067063,
+        "station_latitude":-17.9921,
+        "station_longitude":145.942,
+        "station_status":"Active",
+        "river_name":"TULLY RIVER",
+        "station_elevation":0.1,
+        "CATCHMENT_SIZE":"1450,00 km\u00b2",
+        "NAT_STA_ID":"113006A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"EYJOLFSSTADIR",
+        "station_no":6401160,
+        "station_id":1075504,
+        "station_latitude":64.75281,
+        "station_longitude":-14.48605,
+        "station_status":"Active",
+        "river_name":"FOSSA",
+        "station_elevation":40.0,
+        "CATCHMENT_SIZE":"115,00 km\u00b2",
+        "NAT_STA_ID":"VHM148",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"FAZENDA BELEM",
+        "station_no":3652050,
+        "station_id":1068540,
+        "station_latitude":-10.94306,
+        "station_longitude":-37.34694,
+        "station_status":"Active",
+        "river_name":"RIO VASA BARRIS",
+        "station_elevation":19.0,
+        "CATCHMENT_SIZE":"15740,00 km\u00b2",
+        "NAT_STA_ID":"50191000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"FAZENDA PAQUIRA",
+        "station_no":3631210,
+        "station_id":1068643,
+        "station_latitude":-0.4167,
+        "station_longitude":-53.7,
+        "station_status":"Closed",
+        "river_name":"RIO PARU DE ESTE",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"30945,00 km\u00b2",
+        "NAT_STA_ID":"18300000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"FITZROY CROSSING",
+        "station_no":5607024,
+        "station_id":1066853,
+        "station_latitude":-18.2963,
+        "station_longitude":125.5263,
+        "station_status":"Active",
+        "river_name":"FITZROY RIVER",
+        "station_elevation":93.1,
+        "CATCHMENT_SIZE":"46350,00 km\u00b2",
+        "NAT_STA_ID":"802055",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"FLOGUBRU I",
+        "station_no":6401460,
+        "station_id":1075536,
+        "station_latitude":66.19809,
+        "station_longitude":-15.59652,
+        "station_status":"Active",
+        "river_name":"SANDA",
+        "station_elevation":20.0,
+        "CATCHMENT_SIZE":"266,00 km\u00b2",
+        "NAT_STA_ID":"VHM26",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"FLORAVILLE HOMESTEAD",
+        "station_no":5109210,
+        "station_id":1074193,
+        "station_latitude":-18.233,
+        "station_longitude":139.879,
+        "station_status":"Active",
+        "river_name":"LEICHHARDT RIVER",
+        "station_elevation":9.819,
+        "CATCHMENT_SIZE":"23660,00 km\u00b2",
+        "NAT_STA_ID":"913007B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"FORSAELUDALUR",
+        "station_no":6401250,
+        "station_id":1075475,
+        "station_latitude":65.30184,
+        "station_longitude":-20.10668,
+        "station_status":"Active",
+        "river_name":"VATNSDALSA",
+        "station_elevation":70.0,
+        "CATCHMENT_SIZE":"458,00 km\u00b2",
+        "NAT_STA_ID":"VHM45",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"FORTALEZA",
+        "station_no":3637150,
+        "station_id":1070052,
+        "station_latitude":-6.0453,
+        "station_longitude":-57.6428,
+        "station_status":"Active",
+        "river_name":"RIO TAPAJOS",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"363000,00 km\u00b2",
+        "NAT_STA_ID":"17500000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"GARRAWAY CREEK JUNCTION",
+        "station_no":5101020,
+        "station_id":1066990,
+        "station_latitude":-12.6578,
+        "station_longitude":143.05,
+        "station_status":"Active",
+        "river_name":"PASCOE RIVER",
+        "station_elevation":40.409,
+        "CATCHMENT_SIZE":"1313,00 km\u00b2",
+        "NAT_STA_ID":"102102A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"GAULFOSS",
+        "station_no":6731501,
+        "station_id":1072620,
+        "station_latitude":63.108479,
+        "station_longitude":10.229018,
+        "station_status":"Active",
+        "river_name":"GAULA",
+        "station_elevation":45.0,
+        "CATCHMENT_SIZE":"3079,00 km\u00b2",
+        "NAT_STA_ID":"122.9.0.1001.1",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"GLENALADALE",
+        "station_no":5302242,
+        "station_id":1066929,
+        "station_latitude":-37.7636,
+        "station_longitude":147.375,
+        "station_status":"Active",
+        "river_name":"MITCHELL RIVER",
+        "station_elevation":37.854,
+        "CATCHMENT_SIZE":"3903,00 km\u00b2",
+        "NAT_STA_ID":"224203",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"GLENORE WEIR",
+        "station_no":5109161,
+        "station_id":1073750,
+        "station_latitude":-17.86,
+        "station_longitude":141.129,
+        "station_status":"Active",
+        "river_name":"NORMAN RIVER",
+        "station_elevation":4.36,
+        "CATCHMENT_SIZE":"39360,00 km\u00b2",
+        "NAT_STA_ID":"916001B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"GODHDALA BRU",
+        "station_no":6401200,
+        "station_id":1066425,
+        "station_latitude":65.3297,
+        "station_longitude":-19.08525,
+        "station_status":"Active",
+        "river_name":"VESTRI-JOKULSA",
+        "station_elevation":150.0,
+        "CATCHMENT_SIZE":"844,00 km\u00b2",
+        "NAT_STA_ID":"VHM145",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"GOLIARD, TX",
+        "station_no":4150330,
+        "station_id":1071802,
+        "station_latitude":28.6497,
+        "station_longitude":-97.3847,
+        "station_status":"Active",
+        "river_name":"SAN ANTONIO RIVER",
+        "station_elevation":27.76,
+        "CATCHMENT_SIZE":"10155,40 km\u00b2",
+        "NAT_STA_ID":"08188500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"GRAND FALLS",
+        "station_no":4231602,
+        "station_id":1072444,
+        "station_latitude":47.038889,
+        "station_longitude":-67.739722,
+        "station_status":"Active",
+        "river_name":"SAINT JOHN RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"21900,00 km\u00b2",
+        "NAT_STA_ID":"01AF002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"GRASSY GULLY",
+        "station_no":5202152,
+        "station_id":1074163,
+        "station_latitude":-34.855,
+        "station_longitude":150.42,
+        "station_status":"Closed",
+        "river_name":"SHOALHAVEN RIVER",
+        "station_elevation":22.0,
+        "CATCHMENT_SIZE":"4500,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"GRASSY GULLY NO. 2",
+        "station_no":5202151,
+        "station_id":1074348,
+        "station_latitude":-34.8394,
+        "station_longitude":150.432,
+        "station_status":"Active",
+        "river_name":"SHOALHAVEN RIVER",
+        "station_elevation":49.0,
+        "CATCHMENT_SIZE":"4500,00 km\u00b2",
+        "NAT_STA_ID":"215216",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"GRIMSSTADIR",
+        "station_no":6401702,
+        "station_id":1075537,
+        "station_latitude":65.6233,
+        "station_longitude":-16.18933,
+        "station_status":"Active",
+        "river_name":"JOKULSA A FJOLLUM",
+        "station_elevation":360.0,
+        "CATCHMENT_SIZE":"5097,00 km\u00b2",
+        "NAT_STA_ID":"VHM102",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"GUANTING (GUANKING)",
+        "station_no":2178300,
+        "station_id":1073459,
+        "station_latitude":40.23,
+        "station_longitude":115.6,
+        "station_status":"Active",
+        "river_name":"YONGDING HE",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"42500,00 km\u00b2",
+        "NAT_STA_ID":"33620",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"HARJAVALTA",
+        "station_no":6854101,
+        "station_id":1071910,
+        "station_latitude":61.3375,
+        "station_longitude":22.1142,
+        "station_status":"Active",
+        "river_name":"KOKEMAENJOKI",
+        "station_elevation":28.0,
+        "CATCHMENT_SIZE":"26117,00 km\u00b2",
+        "NAT_STA_ID":"3510450",
+        "GRDCCOUNTRY":"FI - FINLAND"
+    },
+    {
+        "station_name":"HEISEL",
+        "station_no":6729260,
+        "station_id":1072560,
+        "station_latitude":58.247551,
+        "station_longitude":7.951432,
+        "station_status":"Active",
+        "river_name":"OTRA",
+        "station_elevation":8.0,
+        "CATCHMENT_SIZE":"3689,00 km\u00b2",
+        "NAT_STA_ID":"21.11.0.1001.1",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"HOME HILL",
+        "station_no":5101201,
+        "station_id":1067071,
+        "station_latitude":-19.6421,
+        "station_longitude":147.397,
+        "station_status":"Closed",
+        "river_name":"BURDEKIN RIVER",
+        "station_elevation":2.61,
+        "CATCHMENT_SIZE":"129939,00 km\u00b2",
+        "NAT_STA_ID":"120001A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"HOME PARK",
+        "station_no":5101390,
+        "station_id":1074238,
+        "station_latitude":-25.7683,
+        "station_longitude":152.527,
+        "station_status":"Active",
+        "river_name":"MARY RIVER",
+        "station_elevation":4.09,
+        "CATCHMENT_SIZE":"6845,00 km\u00b2",
+        "NAT_STA_ID":"138014A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"HRS BAIRDS",
+        "station_no":5101080,
+        "station_id":1067055,
+        "station_latitude":-16.17875,
+        "station_longitude":145.281861,
+        "station_status":"Active",
+        "river_name":"DAINTREE RIVER",
+        "station_elevation":15.42,
+        "CATCHMENT_SIZE":"907,30 km\u00b2",
+        "NAT_STA_ID":"108002A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"HRS COOLENAR POOL",
+        "station_no":5607500,
+        "station_id":1066851,
+        "station_latitude":-20.3114,
+        "station_longitude":119.249,
+        "station_status":"Active",
+        "river_name":"DEGREY RIVER",
+        "station_elevation":22.2,
+        "CATCHMENT_SIZE":"53323,00 km\u00b2",
+        "NAT_STA_ID":"710003",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"HRS MORETON",
+        "station_no":5109251,
+        "station_id":1074344,
+        "station_latitude":-12.45375,
+        "station_longitude":142.6377,
+        "station_status":"Active",
+        "river_name":"WENLOCK RIVER",
+        "station_elevation":23.62,
+        "CATCHMENT_SIZE":"3290,00 km\u00b2",
+        "NAT_STA_ID":"925001A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"HRS MOUNT NANCAR",
+        "station_no":5708145,
+        "station_id":1067516,
+        "station_latitude":-13.83085,
+        "station_longitude":130.73585,
+        "station_status":"Active",
+        "river_name":"DALY RIVER",
+        "station_elevation":26.02,
+        "CATCHMENT_SIZE":"47652,00 km\u00b2",
+        "NAT_STA_ID":"G8140040",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"HUATIAPA",
+        "station_no":3933900,
+        "station_id":1072151,
+        "station_latitude":-10.00789444,
+        "station_longitude":-72.01166667,
+        "station_status":"Active",
+        "river_name":"MAJES",
+        "station_elevation":689.0,
+        "CATCHMENT_SIZE":"-999,00 km\u00b2",
+        "NAT_STA_ID":"204617",
+        "GRDCCOUNTRY":"PE - PERU"
+    },
+    {
+        "station_name":"HUAYUANKOU",
+        "station_no":2180800,
+        "station_id":1073710,
+        "station_latitude":34.92,
+        "station_longitude":113.65,
+        "station_status":"Active",
+        "river_name":"YELLOW RIVER",
+        "station_elevation":92.0,
+        "CATCHMENT_SIZE":"730036,00 km\u00b2",
+        "NAT_STA_ID":"41330",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"IGARKA",
+        "station_no":2909150,
+        "station_id":1070938,
+        "station_latitude":67.43,
+        "station_longitude":86.48,
+        "station_status":"Active",
+        "river_name":"YENISEY",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"2440000,00 km\u00b2",
+        "NAT_STA_ID":"09803",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"INDIGIRSKYI",
+        "station_no":2903985,
+        "station_id":1071097,
+        "station_latitude":64.53,
+        "station_longitude":143.12,
+        "station_status":"Active",
+        "river_name":"INDIGIRKA",
+        "station_elevation":482.0,
+        "CATCHMENT_SIZE":"83500,00 km\u00b2",
+        "NAT_STA_ID":"03489",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"INGHAM",
+        "station_no":5101161,
+        "station_id":1067066,
+        "station_latitude":-18.6361,
+        "station_longitude":146.142,
+        "station_status":"Closed",
+        "river_name":"HERBERT RIVER",
+        "station_elevation":1.61,
+        "CATCHMENT_SIZE":"8581,00 km\u00b2",
+        "NAT_STA_ID":"116001E",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"INGHAM",
+        "station_no":5101162,
+        "station_id":1074220,
+        "station_latitude":-18.6327,
+        "station_longitude":146.143,
+        "station_status":"Active",
+        "river_name":"HERBERT RIVER",
+        "station_elevation":1.61,
+        "CATCHMENT_SIZE":"8585,00 km\u00b2",
+        "NAT_STA_ID":"116001F",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"INTSCHEDE",
+        "station_no":6337200,
+        "station_id":1067837,
+        "station_latitude":52.964,
+        "station_longitude":9.125,
+        "station_status":"Active",
+        "river_name":"WESER",
+        "station_elevation":4.79,
+        "CATCHMENT_SIZE":"37720,00 km\u00b2",
+        "NAT_STA_ID":"49100101",
+        "GRDCCOUNTRY":"DE - GERMANY"
+    },
+    {
+        "station_name":"IPORANGA (PCD)",
+        "station_no":3653120,
+        "station_id":1072161,
+        "station_latitude":-24.5858,
+        "station_longitude":-48.5917,
+        "station_status":"Active",
+        "river_name":"RIO RIBEIRA DE IGUAPE",
+        "station_elevation":73.0,
+        "CATCHMENT_SIZE":"12450,00 km\u00b2",
+        "NAT_STA_ID":"81350000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"ISOHAARA",
+        "station_no":6854700,
+        "station_id":1066255,
+        "station_latitude":65.7927,
+        "station_longitude":24.5453,
+        "station_status":"Active",
+        "river_name":"KEMIJOKI",
+        "station_elevation":2.0,
+        "CATCHMENT_SIZE":"50683,00 km\u00b2",
+        "NAT_STA_ID":"6504450",
+        "GRDCCOUNTRY":"FI - FINLAND"
+    },
+    {
+        "station_name":"ITAPEBI",
+        "station_no":3652455,
+        "station_id":1073720,
+        "station_latitude":-15.9483,
+        "station_longitude":-39.5236,
+        "station_status":"Active",
+        "river_name":"RIO JEQUITINHONHA",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"67769,00 km\u00b2",
+        "NAT_STA_ID":"54950000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"JAMANXIM",
+        "station_no":3637204,
+        "station_id":1070055,
+        "station_latitude":-5.5,
+        "station_longitude":-55.8333,
+        "station_status":"Closed",
+        "river_name":"RIO JAMANXIM",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"40200,00 km\u00b2",
+        "NAT_STA_ID":"17680000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"JARRAHMOND",
+        "station_no":5302229,
+        "station_id":1066927,
+        "station_latitude":-37.6611,
+        "station_longitude":148.361,
+        "station_status":"Active",
+        "river_name":"SNOWY RIVER",
+        "station_elevation":14.3,
+        "CATCHMENT_SIZE":"13421,00 km\u00b2",
+        "NAT_STA_ID":"222200",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"JEQUIE",
+        "station_no":3652220,
+        "station_id":1068428,
+        "station_latitude":-13.86667,
+        "station_longitude":-40.08333,
+        "station_status":"Active",
+        "river_name":"RIO DE CONTAS",
+        "station_elevation":259.0,
+        "CATCHMENT_SIZE":"42245,00 km\u00b2",
+        "NAT_STA_ID":"52570000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"KAITAKOSKI - LAKE INARI OUTLET",
+        "station_no":6830100,
+        "station_id":1066151,
+        "station_latitude":68.908734,
+        "station_longitude":28.448915,
+        "station_status":"Active",
+        "river_name":"PAATSJOKI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"14575,00 km\u00b2",
+        "NAT_STA_ID":"7101950",
+        "GRDCCOUNTRY":"FI - FINLAND"
+    },
+    {
+        "station_name":"KALPOWAR CROSSING",
+        "station_no":5101071,
+        "station_id":1073739,
+        "station_latitude":-14.9168,
+        "station_longitude":144.211,
+        "station_status":"Active",
+        "river_name":"NORMANBY RIVER",
+        "station_elevation":19.51,
+        "CATCHMENT_SIZE":"12930,00 km\u00b2",
+        "NAT_STA_ID":"105107A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"KANEVKA",
+        "station_no":6971451,
+        "station_id":1066239,
+        "station_latitude":67.13,
+        "station_longitude":39.66,
+        "station_status":"Active",
+        "river_name":"PONOY",
+        "station_elevation":124.0,
+        "CATCHMENT_SIZE":"10200,00 km\u00b2",
+        "NAT_STA_ID":"71168",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"KILLAWARRA",
+        "station_no":5202080,
+        "station_id":1066897,
+        "station_latitude":-31.92,
+        "station_longitude":152.31,
+        "station_status":"Active",
+        "river_name":"MANNING RIVER",
+        "station_elevation":8.73,
+        "CATCHMENT_SIZE":"6642,00 km\u00b2",
+        "NAT_STA_ID":"208004",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"KILMANY SOUTH",
+        "station_no":5302261,
+        "station_id":1073751,
+        "station_latitude":-38.1392,
+        "station_longitude":146.919,
+        "station_status":"Active",
+        "river_name":"LA TROBE RIVER",
+        "station_elevation":8.62,
+        "CATCHMENT_SIZE":"4464,00 km\u00b2",
+        "NAT_STA_ID":"226227",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"KINGSTON",
+        "station_no":6606650,
+        "station_id":1067462,
+        "station_latitude":51.41544304,
+        "station_longitude":-0.307709932,
+        "station_status":"Active",
+        "river_name":"RIVER THAMES",
+        "station_elevation":4.7,
+        "CATCHMENT_SIZE":"9948,00 km\u00b2",
+        "NAT_STA_ID":"g039001",
+        "GRDCCOUNTRY":"GB - UNITED KINGDOM"
+    },
+    {
+        "station_name":"KINSHASA",
+        "station_no":1147010,
+        "station_id":1067253,
+        "station_latitude":-4.3,
+        "station_longitude":15.3,
+        "station_status":"Active",
+        "river_name":"CONGO RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"3475000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"CD - CONGO, DEM. REP. (ZAIRE)"
+    },
+    {
+        "station_name":"KINSTON, NC",
+        "station_no":4148121,
+        "station_id":1073606,
+        "station_latitude":35.2582,
+        "station_longitude":-77.5855,
+        "station_status":"Active",
+        "river_name":"NEUSE RIVER",
+        "station_elevation":3.32,
+        "CATCHMENT_SIZE":"6972,30 km\u00b2",
+        "NAT_STA_ID":"02089500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"KISTA",
+        "station_no":6731920,
+        "station_id":1072617,
+        "station_latitude":69.826302,
+        "station_longitude":23.516815,
+        "station_status":"Active",
+        "river_name":"ALTTAEATNU",
+        "station_elevation":43.0,
+        "CATCHMENT_SIZE":"6187,00 km\u00b2",
+        "NAT_STA_ID":"212.11.0.1001.1",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"KLJAFOSS",
+        "station_no":6401080,
+        "station_id":1066420,
+        "station_latitude":64.69229,
+        "station_longitude":-21.41046,
+        "station_status":"Active",
+        "river_name":"HVITA",
+        "station_elevation":18.0,
+        "CATCHMENT_SIZE":"1574,00 km\u00b2",
+        "NAT_STA_ID":"VHM66",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"KNYAZHEGUBSKOYE GES",
+        "station_no":6970869,
+        "station_id":1067281,
+        "station_latitude":66.87,
+        "station_longitude":32.38,
+        "station_status":"Active",
+        "river_name":"KOVDA",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"25900,00 km\u00b2",
+        "NAT_STA_ID":"49013",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"KOLYMSKAYA",
+        "station_no":2998510,
+        "station_id":1071242,
+        "station_latitude":68.73,
+        "station_longitude":158.72,
+        "station_status":"Active",
+        "river_name":"KOLYMA",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"526000,00 km\u00b2",
+        "NAT_STA_ID":"01802",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"KOMSOMOLSK",
+        "station_no":2906900,
+        "station_id":1070014,
+        "station_latitude":50.63,
+        "station_longitude":137.12,
+        "station_status":"Active",
+        "river_name":"AMUR RIVER",
+        "station_elevation":13.0,
+        "CATCHMENT_SIZE":"1730000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"KONSTANTINOVO",
+        "station_no":2998720,
+        "station_id":1071424,
+        "station_latitude":68.15,
+        "station_longitude":161.1667,
+        "station_status":"Active",
+        "river_name":"BOL'SHOY ANYUY",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"49600,00 km\u00b2",
+        "NAT_STA_ID":"01596",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"KOOLATAH",
+        "station_no":5109200,
+        "station_id":1068929,
+        "station_latitude":-15.9509,
+        "station_longitude":142.377,
+        "station_status":"Closed",
+        "river_name":"MITCHELL RIVER",
+        "station_elevation":19.71,
+        "CATCHMENT_SIZE":"45872,00 km\u00b2",
+        "NAT_STA_ID":"919009A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"KROKUR",
+        "station_no":6401120,
+        "station_id":1066423,
+        "station_latitude":63.93362,
+        "station_longitude":-20.63135,
+        "station_status":"Active",
+        "river_name":"THJORSA",
+        "station_elevation":60.0,
+        "CATCHMENT_SIZE":"7314,00 km\u00b2",
+        "NAT_STA_ID":"VHM30",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"KYUSYUR (KUSUR)",
+        "station_no":2903420,
+        "station_id":1070359,
+        "station_latitude":70.68,
+        "station_longitude":127.39,
+        "station_status":"Active",
+        "river_name":"LENA",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"2430000,00 km\u00b2",
+        "NAT_STA_ID":"03821",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"LA CAPILLA",
+        "station_no":3844400,
+        "station_id":1068371,
+        "station_latitude":-1.695833,
+        "station_longitude":-79.995556,
+        "station_status":"Active",
+        "river_name":"RIO DAULE",
+        "station_elevation":13.0,
+        "CATCHMENT_SIZE":"8690,00 km\u00b2",
+        "NAT_STA_ID":"H365",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"LASALLE",
+        "station_no":4243151,
+        "station_id":1067910,
+        "station_latitude":45.415,
+        "station_longitude":-73.6236,
+        "station_status":"Active",
+        "river_name":"SAINT LAWRENCE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"-999,00 km\u00b2",
+        "NAT_STA_ID":"02OA016",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"LECHUGAL",
+        "station_no":3844465,
+        "station_id":1068374,
+        "station_latitude":-1.3875,
+        "station_longitude":-79.354167,
+        "station_status":"Active",
+        "river_name":"RIO ZAPOTAL",
+        "station_elevation":180.0,
+        "CATCHMENT_SIZE":"2980,00 km\u00b2",
+        "NAT_STA_ID":"H346",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"LILYDALE (NEWBOLD CROSSING)",
+        "station_no":5202044,
+        "station_id":1066887,
+        "station_latitude":-29.51,
+        "station_longitude":152.68,
+        "station_status":"Active",
+        "river_name":"CLARENCE RIVER",
+        "station_elevation":9.99,
+        "CATCHMENT_SIZE":"16953,00 km\u00b2",
+        "NAT_STA_ID":"204007",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"LINHARES",
+        "station_no":3652600,
+        "station_id":1072972,
+        "station_latitude":-19.4075,
+        "station_longitude":-40.06389,
+        "station_status":"Closed",
+        "river_name":"RIO DOCE",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"78456,00 km\u00b2",
+        "NAT_STA_ID":"56998000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"LITA",
+        "station_no":3843100,
+        "station_id":1068365,
+        "station_latitude":0.849167,
+        "station_longitude":-78.463611,
+        "station_status":"Active",
+        "river_name":"RIO MIRA",
+        "station_elevation":475.0,
+        "CATCHMENT_SIZE":"4960,00 km\u00b2",
+        "NAT_STA_ID":"H011",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"LOCK #1 NEAR KELLY, NC",
+        "station_no":4148232,
+        "station_id":1073600,
+        "station_latitude":34.4043,
+        "station_longitude":-78.2936,
+        "station_status":"Active",
+        "river_name":"CAPE FEAR RIVER",
+        "station_elevation":-0.88,
+        "CATCHMENT_SIZE":"13610,50 km\u00b2",
+        "NAT_STA_ID":"02105769",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"LOCK 1 DOWNSTREAM",
+        "station_no":5404271,
+        "station_id":1074211,
+        "station_latitude":-34.3509,
+        "station_longitude":139.616,
+        "station_status":"Active",
+        "river_name":"MURRAY RIVER",
+        "station_elevation":4.0,
+        "CATCHMENT_SIZE":"955018,00 km\u00b2",
+        "NAT_STA_ID":"A4260903",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"LOS ALTARES",
+        "station_no":3276200,
+        "station_id":1071526,
+        "station_latitude":-43.85,
+        "station_longitude":-68.5,
+        "station_status":"Active",
+        "river_name":"RIO CHUBUT",
+        "station_elevation":275.0,
+        "CATCHMENT_SIZE":"16400,00 km\u00b2",
+        "NAT_STA_ID":"H65M12207",
+        "GRDCCOUNTRY":"AR - ARGENTINA"
+    },
+    {
+        "station_name":"LOSNA",
+        "station_no":6729450,
+        "station_id":1067204,
+        "station_latitude":61.333385,
+        "station_longitude":10.277533,
+        "station_status":"Active",
+        "river_name":"LOSNA",
+        "station_elevation":180.0,
+        "CATCHMENT_SIZE":"11210,00 km\u00b2",
+        "NAT_STA_ID":"2.145.0.1001.1",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"LOUPS MARINS (LAC DES)",
+        "station_no":4214030,
+        "station_id":1475875,
+        "station_latitude":56.45,
+        "station_longitude":-74.23,
+        "station_status":"Active",
+        "river_name":"RIVIERE NASTAPOKA",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"8390,00 km\u00b2",
+        "NAT_STA_ID":"03FA003",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"LOWOOD",
+        "station_no":5101502,
+        "station_id":1074239,
+        "station_latitude":-27.4711,
+        "station_longitude":152.592,
+        "station_status":"Closed",
+        "river_name":"BRISBANE RIVER",
+        "station_elevation":23.67,
+        "CATCHMENT_SIZE":"10055,00 km\u00b2",
+        "NAT_STA_ID":"143001A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"LUAN XIAN",
+        "station_no":2178500,
+        "station_id":1073460,
+        "station_latitude":39.73,
+        "station_longitude":118.75,
+        "station_status":"Active",
+        "river_name":"LUAN HE",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"44100,00 km\u00b2",
+        "NAT_STA_ID":"31654",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"LUZILANDIA",
+        "station_no":3650481,
+        "station_id":1068557,
+        "station_latitude":-3.45389,
+        "station_longitude":-42.37,
+        "station_status":"Active",
+        "river_name":"RIO PARNAIBA",
+        "station_elevation":26.0,
+        "CATCHMENT_SIZE":"322823,00 km\u00b2",
+        "NAT_STA_ID":"34879500",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"MALONISOGORSKAYA",
+        "station_no":6970500,
+        "station_id":1067660,
+        "station_latitude":65.0,
+        "station_longitude":45.62,
+        "station_status":"Active",
+        "river_name":"MEZEN'",
+        "station_elevation":18.0,
+        "CATCHMENT_SIZE":"56400,00 km\u00b2",
+        "NAT_STA_ID":"70844",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"MANDINI (27661102)",
+        "station_no":1160880,
+        "station_id":1072845,
+        "station_latitude":-29.1405,
+        "station_longitude":31.39258333,
+        "station_status":"Active",
+        "river_name":"UTHUKELA",
+        "station_elevation":38.0,
+        "CATCHMENT_SIZE":"28920,00 km\u00b2",
+        "NAT_STA_ID":"V5H002",
+        "GRDCCOUNTRY":"ZA - SOUTH AFRICA"
+    },
+    {
+        "station_name":"MASCOTE",
+        "station_no":3652320,
+        "station_id":1068430,
+        "station_latitude":-15.55889,
+        "station_longitude":-39.30806,
+        "station_status":"Active",
+        "river_name":"RIO PARDO",
+        "station_elevation":4.0,
+        "CATCHMENT_SIZE":"30360,00 km\u00b2",
+        "NAT_STA_ID":"53950000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"MATOLEMA'S LOCATION OUTSPAN",
+        "station_no":1160580,
+        "station_id":1067638,
+        "station_latitude":-33.23780556,
+        "station_longitude":26.99486111,
+        "station_status":"Active",
+        "river_name":"GREAT FISH RIVER",
+        "station_elevation":38.0,
+        "CATCHMENT_SIZE":"29745,00 km\u00b2",
+        "NAT_STA_ID":"Q9H018",
+        "GRDCCOUNTRY":"ZA - SOUTH AFRICA"
+    },
+    {
+        "station_name":"MERIKOSKI",
+        "station_no":6854500,
+        "station_id":1066252,
+        "station_latitude":65.0226,
+        "station_longitude":25.4734,
+        "station_status":"Active",
+        "river_name":"OULUJOKI",
+        "station_elevation":7.0,
+        "CATCHMENT_SIZE":"22841,00 km\u00b2",
+        "NAT_STA_ID":"5904450",
+        "GRDCCOUNTRY":"FI - FINLAND"
+    },
+    {
+        "station_name":"MERRILL, MISS.",
+        "station_no":4149300,
+        "station_id":1069142,
+        "station_latitude":30.9778,
+        "station_longitude":-88.7244,
+        "station_status":"Active",
+        "river_name":"PASCAGOULA RIVER",
+        "station_elevation":8.0,
+        "CATCHMENT_SIZE":"17068,10 km\u00b2",
+        "NAT_STA_ID":"02479000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"MILLION DOLLAR BRIDGE NEAR CORDOVA, AK.",
+        "station_no":4105710,
+        "station_id":1068485,
+        "station_latitude":60.6711,
+        "station_longitude":-144.7467,
+        "station_status":"Closed",
+        "river_name":"COPPER RIVER",
+        "station_elevation":45.72,
+        "CATCHMENT_SIZE":"62678,00 km\u00b2",
+        "NAT_STA_ID":"15214000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"MIRANI WEIR T\/W",
+        "station_no":5101253,
+        "station_id":1074714,
+        "station_latitude":-21.1771,
+        "station_longitude":148.831,
+        "station_status":"Active",
+        "river_name":"PIONEER RIVER",
+        "station_elevation":34.267,
+        "CATCHMENT_SIZE":"1211,00 km\u00b2",
+        "NAT_STA_ID":"125007A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"MIVA",
+        "station_no":5101381,
+        "station_id":1072284,
+        "station_latitude":-25.9533,
+        "station_longitude":152.496,
+        "station_status":"Active",
+        "river_name":"MARY RIVER",
+        "station_elevation":16.87,
+        "CATCHMENT_SIZE":"4755,00 km\u00b2",
+        "NAT_STA_ID":"138001A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"MONUMENT",
+        "station_no":5109230,
+        "station_id":1074195,
+        "station_latitude":-11.1489,
+        "station_longitude":142.353,
+        "station_status":"Active",
+        "river_name":"JARDINE RIVER",
+        "station_elevation":4.355,
+        "CATCHMENT_SIZE":"2421,00 km\u00b2",
+        "NAT_STA_ID":"927001B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"MOUNT BUNDEY",
+        "station_no":5708185,
+        "station_id":1066788,
+        "station_latitude":-12.9061,
+        "station_longitude":131.647,
+        "station_status":"Active",
+        "river_name":"MARY RIVER",
+        "station_elevation":50.25,
+        "CATCHMENT_SIZE":"5700,00 km\u00b2",
+        "NAT_STA_ID":"G8180035",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"MOVANAGHER",
+        "station_no":6603300,
+        "station_id":1067633,
+        "station_latitude":54.97696576,
+        "station_longitude":-6.547136798,
+        "station_status":"Active",
+        "river_name":"RIVER BANN",
+        "station_elevation":7.0,
+        "CATCHMENT_SIZE":"5209,80 km\u00b2",
+        "NAT_STA_ID":"g203040",
+        "GRDCCOUNTRY":"GB - UNITED KINGDOM"
+    },
+    {
+        "station_name":"NADYM",
+        "station_no":2997200,
+        "station_id":1071095,
+        "station_latitude":65.62,
+        "station_longitude":72.67,
+        "station_status":"Closed",
+        "river_name":"NADYM",
+        "station_elevation":8.0,
+        "CATCHMENT_SIZE":"48000,00 km\u00b2",
+        "NAT_STA_ID":"11805",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"NANUQUE",
+        "station_no":3652500,
+        "station_id":1072160,
+        "station_latitude":-17.83333,
+        "station_longitude":-40.35,
+        "station_status":"Closed",
+        "river_name":"RIO MUCURI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"14174,00 km\u00b2",
+        "NAT_STA_ID":"55700000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"NARVA LINN",
+        "station_no":6172350,
+        "station_id":1066123,
+        "station_latitude":59.382778,
+        "station_longitude":28.206667,
+        "station_status":"Active",
+        "river_name":"NARVA JOGI",
+        "station_elevation":-1.08,
+        "CATCHMENT_SIZE":"56000,00 km\u00b2",
+        "NAT_STA_ID":"-",
+        "GRDCCOUNTRY":"EE - ESTONIA"
+    },
+    {
+        "station_name":"NEAR AGNESS, OREG.",
+        "station_no":4146670,
+        "station_id":1068221,
+        "station_latitude":42.5804,
+        "station_longitude":-124.0595,
+        "station_status":"Active",
+        "river_name":"ROGUE RIVER",
+        "station_elevation":34.69,
+        "CATCHMENT_SIZE":"10202,00 km\u00b2",
+        "NAT_STA_ID":"14372300",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR BELL, FLA",
+        "station_no":4149781,
+        "station_id":1071794,
+        "station_latitude":29.7913,
+        "station_longitude":-82.9243,
+        "station_status":"Active",
+        "river_name":"SUWANNEE RIVER",
+        "station_elevation":1.09,
+        "CATCHMENT_SIZE":"24320,10 km\u00b2",
+        "NAT_STA_ID":"02323000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR BOGALUSA, LA.",
+        "station_no":4149120,
+        "station_id":1069138,
+        "station_latitude":30.7932,
+        "station_longitude":-89.8209,
+        "station_status":"Active",
+        "river_name":"PEARL RIVER",
+        "station_elevation":16.76,
+        "CATCHMENT_SIZE":"17024,10 km\u00b2",
+        "NAT_STA_ID":"02489500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR CLYO, GA.",
+        "station_no":4148650,
+        "station_id":1069489,
+        "station_latitude":32.5282,
+        "station_longitude":-81.2687,
+        "station_status":"Active",
+        "river_name":"SAVANNAH RIVER",
+        "station_elevation":4.08,
+        "CATCHMENT_SIZE":"25511,50 km\u00b2",
+        "NAT_STA_ID":"02198500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR CONCRETE, WA",
+        "station_no":4146081,
+        "station_id":1071922,
+        "station_latitude":48.5243,
+        "station_longitude":-121.771,
+        "station_status":"Active",
+        "river_name":"SKAGIT RIVER",
+        "station_elevation":39.62,
+        "CATCHMENT_SIZE":"7088,80 km\u00b2",
+        "NAT_STA_ID":"12194000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR CRESCENT CITY, CA",
+        "station_no":4146100,
+        "station_id":1068223,
+        "station_latitude":41.7915,
+        "station_longitude":-124.0762,
+        "station_status":"Active",
+        "river_name":"SMITH RIVER",
+        "station_elevation":24.16,
+        "CATCHMENT_SIZE":"1590,30 km\u00b2",
+        "NAT_STA_ID":"11532500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR DEADHORSE, AK",
+        "station_no":4101400,
+        "station_id":1068381,
+        "station_latitude":70.2814,
+        "station_longitude":-148.9628,
+        "station_status":"Active",
+        "river_name":"KUPARUK RIVER",
+        "station_elevation":0.0,
+        "CATCHMENT_SIZE":"8106,70 km\u00b2",
+        "NAT_STA_ID":"15896000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR DENHAM SPRINGS, LA",
+        "station_no":4149941,
+        "station_id":1068167,
+        "station_latitude":30.4641,
+        "station_longitude":-90.9904,
+        "station_status":"Active",
+        "river_name":"AMITE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"3315,20 km\u00b2",
+        "NAT_STA_ID":"07378500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR ELKTON, OR",
+        "station_no":4146650,
+        "station_id":1068220,
+        "station_latitude":43.586,
+        "station_longitude":-123.5554,
+        "station_status":"Active",
+        "river_name":"UMPQUA RIVER",
+        "station_elevation":27.56,
+        "CATCHMENT_SIZE":"9539,00 km\u00b2",
+        "NAT_STA_ID":"14321000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR FREDERICKSBURG, VA",
+        "station_no":4147950,
+        "station_id":1068216,
+        "station_latitude":38.3085,
+        "station_longitude":-77.5292,
+        "station_status":"Active",
+        "river_name":"RAPPAHANNOCK RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"4133,60 km\u00b2",
+        "NAT_STA_ID":"01668000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR GIVHANS, SC",
+        "station_no":4148570,
+        "station_id":1073605,
+        "station_latitude":33.0279,
+        "station_longitude":-80.3915,
+        "station_status":"Active",
+        "river_name":"EDISTO RIVER",
+        "station_elevation":6.24,
+        "CATCHMENT_SIZE":"7070,70 km\u00b2",
+        "NAT_STA_ID":"02175000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR HAT ISLAND",
+        "station_no":4214520,
+        "station_id":1069184,
+        "station_latitude":51.330555,
+        "station_longitude":-83.83889,
+        "station_status":"Active",
+        "river_name":"ALBANY RIVER",
+        "station_elevation":67.0,
+        "CATCHMENT_SIZE":"118000,00 km\u00b2",
+        "NAT_STA_ID":"04HA001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR JUNEAU",
+        "station_no":4206601,
+        "station_id":1072240,
+        "station_latitude":58.5386,
+        "station_longitude":-133.7,
+        "station_status":"Active",
+        "river_name":"TAKU RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"17700,00 km\u00b2",
+        "NAT_STA_ID":"08BB005",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR JUNEAU, AK",
+        "station_no":4106600,
+        "station_id":1073390,
+        "station_latitude":58.54,
+        "station_longitude":-133.7,
+        "station_status":"Active",
+        "river_name":"TAKU RIVER",
+        "station_elevation":15.24,
+        "CATCHMENT_SIZE":"17094,00 km\u00b2",
+        "NAT_STA_ID":"15041200",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR KIANA, ALAS.",
+        "station_no":4101900,
+        "station_id":1068180,
+        "station_latitude":66.973,
+        "station_longitude":-160.1336,
+        "station_status":"Active",
+        "river_name":"KOBUK RIVER",
+        "station_elevation":10.668,
+        "CATCHMENT_SIZE":"24656,80 km\u00b2",
+        "NAT_STA_ID":"15744500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR KLAMATH, CA",
+        "station_no":4146110,
+        "station_id":1068224,
+        "station_latitude":41.5143,
+        "station_longitude":-124.0004,
+        "station_status":"Active",
+        "river_name":"KLAMATH RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"31339,00 km\u00b2",
+        "NAT_STA_ID":"11530500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR MONROE, WA",
+        "station_no":4146190,
+        "station_id":1071924,
+        "station_latitude":47.8309,
+        "station_longitude":-122.0485,
+        "station_status":"Active",
+        "river_name":"SNOHOMISH RIVER",
+        "station_elevation":4.04,
+        "CATCHMENT_SIZE":"3980,80 km\u00b2",
+        "NAT_STA_ID":"12150800",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR RICHMOND, VA.",
+        "station_no":4147320,
+        "station_id":1068217,
+        "station_latitude":37.5632,
+        "station_longitude":-77.5469,
+        "station_status":"Active",
+        "river_name":"JAMES RIVER",
+        "station_elevation":30.12,
+        "CATCHMENT_SIZE":"17503,20 km\u00b2",
+        "NAT_STA_ID":"02037500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR RULIFF, TEX.",
+        "station_no":4150700,
+        "station_id":1069509,
+        "station_latitude":30.3038,
+        "station_longitude":-93.7438,
+        "station_status":"Active",
+        "river_name":"SABINE RIVER",
+        "station_elevation":-1.8,
+        "CATCHMENT_SIZE":"24162,10 km\u00b2",
+        "NAT_STA_ID":"08030500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR SPRECKELS, CA",
+        "station_no":4146400,
+        "station_id":1072421,
+        "station_latitude":36.6311,
+        "station_longitude":-121.6724,
+        "station_status":"Active",
+        "river_name":"SALINAS RIVER",
+        "station_elevation":6.27,
+        "CATCHMENT_SIZE":"10764,00 km\u00b2",
+        "NAT_STA_ID":"11152500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR SUMATRA, FLA",
+        "station_no":4149632,
+        "station_id":1071788,
+        "station_latitude":29.9494,
+        "station_longitude":-85.0155,
+        "station_status":"Active",
+        "river_name":"APALACHICOLA RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"49728,00 km\u00b2",
+        "NAT_STA_ID":"02359170",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR TALKEETNA, ALAS.",
+        "station_no":4105450,
+        "station_id":1068185,
+        "station_latitude":62.3464,
+        "station_longitude":-150.0192,
+        "station_status":"Active",
+        "river_name":"TALKEETNA RIVER",
+        "station_elevation":121.92,
+        "CATCHMENT_SIZE":"5169,64 km\u00b2",
+        "NAT_STA_ID":"15292700",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR THE MOUTH",
+        "station_no":4214560,
+        "station_id":1069188,
+        "station_latitude":51.083332,
+        "station_longitude":-80.76667,
+        "station_status":"Active",
+        "river_name":"NORTH FRENCH RIVER",
+        "station_elevation":15.0,
+        "CATCHMENT_SIZE":"6680,00 km\u00b2",
+        "NAT_STA_ID":"04MF001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR THE MOUTH",
+        "station_no":4209600,
+        "station_id":1069120,
+        "station_latitude":67.708336,
+        "station_longitude":-104.14027,
+        "station_status":"Active",
+        "river_name":"ELLICE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"16900,00 km\u00b2",
+        "NAT_STA_ID":"10QD001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR THE MOUTH",
+        "station_no":4201010,
+        "station_id":1069084,
+        "station_latitude":69.313614,
+        "station_longitude":-139.56694,
+        "station_status":"Active",
+        "river_name":"FIRTH RIVER",
+        "station_elevation":400.0,
+        "CATCHMENT_SIZE":"5710,00 km\u00b2",
+        "NAT_STA_ID":"10MD001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR THE MOUTH",
+        "station_no":4209550,
+        "station_id":1069118,
+        "station_latitude":66.73333,
+        "station_longitude":-108.80222,
+        "station_status":"Active",
+        "river_name":"BURNSIDE RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"16800,00 km\u00b2",
+        "NAT_STA_ID":"10QC001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR THE MOUTH",
+        "station_no":4208065,
+        "station_id":1068048,
+        "station_latitude":66.790001,
+        "station_longitude":-133.08167,
+        "station_status":"Active",
+        "river_name":"ARCTIC RED RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"18600,00 km\u00b2",
+        "NAT_STA_ID":"10LA002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR THE MOUTH",
+        "station_no":4209500,
+        "station_id":1069117,
+        "station_latitude":67.635002,
+        "station_longitude":-111.9025,
+        "station_status":"Active",
+        "river_name":"TREE RIVER",
+        "station_elevation":50.0,
+        "CATCHMENT_SIZE":"5960,00 km\u00b2",
+        "NAT_STA_ID":"10QA001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR THOMPSON",
+        "station_no":4213410,
+        "station_id":1072068,
+        "station_latitude":55.7444,
+        "station_longitude":-97.8917,
+        "station_status":"Active",
+        "river_name":"BURNTWOOD RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"18500,00 km\u00b2",
+        "NAT_STA_ID":"05TG001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEAR VERNALIS, CA",
+        "station_no":4146360,
+        "station_id":1068238,
+        "station_latitude":37.676,
+        "station_longitude":-121.2663,
+        "station_status":"Active",
+        "river_name":"SAN JOAQUIN RIVER",
+        "station_elevation":7.62,
+        "CATCHMENT_SIZE":"35058,20 km\u00b2",
+        "NAT_STA_ID":"11303500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NEAR WRANGELL",
+        "station_no":4204900,
+        "station_id":1068068,
+        "station_latitude":56.7077,
+        "station_longitude":-132.132,
+        "station_status":"Active",
+        "river_name":"STIKINE RIVER",
+        "station_elevation":7.62,
+        "CATCHMENT_SIZE":"51592,80 km\u00b2",
+        "NAT_STA_ID":"15024800",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"NEU DARCHAU",
+        "station_no":6340110,
+        "station_id":1066439,
+        "station_latitude":53.232275,
+        "station_longitude":10.88881,
+        "station_status":"Active",
+        "river_name":"ELBE RIVER",
+        "station_elevation":5.68,
+        "CATCHMENT_SIZE":"131950,00 km\u00b2",
+        "NAT_STA_ID":"5930010",
+        "GRDCCOUNTRY":"DE - GERMANY"
+    },
+    {
+        "station_name":"NOATAK",
+        "station_no":4101800,
+        "station_id":1068179,
+        "station_latitude":67.571,
+        "station_longitude":-162.9468,
+        "station_status":"Closed",
+        "river_name":"NOATAK RIVER",
+        "station_elevation":15.24,
+        "CATCHMENT_SIZE":"31080,00 km\u00b2",
+        "NAT_STA_ID":"15746000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"NORHAM",
+        "station_no":6605750,
+        "station_id":1067207,
+        "station_latitude":55.72268907,
+        "station_longitude":-2.163373133,
+        "station_status":"Active",
+        "river_name":"RIVER TWEED",
+        "station_elevation":4.3,
+        "CATCHMENT_SIZE":"4390,00 km\u00b2",
+        "NAT_STA_ID":"g021009",
+        "GRDCCOUNTRY":"GB - UNITED KINGDOM"
+    },
+    {
+        "station_name":"NOVOSARATOVKA",
+        "station_no":6955430,
+        "station_id":1067409,
+        "station_latitude":59.837222,
+        "station_longitude":30.529444,
+        "station_status":"Active",
+        "river_name":"NEVA",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"281000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"OBIDOS - PORTO",
+        "station_no":3629000,
+        "station_id":1070051,
+        "station_latitude":-1.9472,
+        "station_longitude":-55.5111,
+        "station_status":"Closed",
+        "river_name":"AMAZON RIVER",
+        "station_elevation":37.0,
+        "CATCHMENT_SIZE":"4680000,00 km\u00b2",
+        "NAT_STA_ID":"17050000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"OFAN ARBUGSA",
+        "station_no":6401400,
+        "station_id":1075506,
+        "station_latitude":65.8507,
+        "station_longitude":-17.89667,
+        "station_status":"Active",
+        "river_name":"FNJOSKA",
+        "station_elevation":44.0,
+        "CATCHMENT_SIZE":"1102,00 km\u00b2",
+        "NAT_STA_ID":"VHM200",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"OKSINO",
+        "station_no":6970700,
+        "station_id":1067185,
+        "station_latitude":67.58,
+        "station_longitude":52.17,
+        "station_status":"Active",
+        "river_name":"PECHORA",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"312000,00 km\u00b2",
+        "NAT_STA_ID":"70827",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"ONAKAWANA",
+        "station_no":4214555,
+        "station_id":1475887,
+        "station_latitude":50.6,
+        "station_longitude":-81.41,
+        "station_status":"Active",
+        "river_name":"ABITIBI RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"27500,00 km\u00b2",
+        "NAT_STA_ID":"04ME003",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"OP",
+        "station_no":6401300,
+        "station_id":1075534,
+        "station_latitude":66.06976,
+        "station_longitude":-21.75298,
+        "station_status":"Active",
+        "river_name":"HVALA",
+        "station_elevation":25.0,
+        "CATCHMENT_SIZE":"193,00 km\u00b2",
+        "NAT_STA_ID":"VHM198",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"OUTLET OF MUSKRAT DAM LAKE",
+        "station_no":4214390,
+        "station_id":1069174,
+        "station_latitude":53.490833,
+        "station_longitude":-91.515274,
+        "station_status":"Closed",
+        "river_name":"SEVERN RIVER",
+        "station_elevation":250.0,
+        "CATCHMENT_SIZE":"36500,00 km\u00b2",
+        "NAT_STA_ID":"04CA002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"OVERLAND CORNER (417.5 KM)",
+        "station_no":5404270,
+        "station_id":1067732,
+        "station_latitude":-34.1787,
+        "station_longitude":140.275,
+        "station_status":"Active",
+        "river_name":"MURRAY RIVER",
+        "station_elevation":6.0,
+        "CATCHMENT_SIZE":"1000001,00 km\u00b2",
+        "NAT_STA_ID":"A4260528",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"PALMER, AK",
+        "station_no":4105310,
+        "station_id":1073728,
+        "station_latitude":61.6086,
+        "station_longitude":-149.073,
+        "station_status":"Active",
+        "river_name":"MATANUSKA RIVER",
+        "station_elevation":52.1,
+        "CATCHMENT_SIZE":"5361,30 km\u00b2",
+        "NAT_STA_ID":"15284000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"PANAMERICANA",
+        "station_no":3179800,
+        "station_id":1071004,
+        "station_latitude":-30.63,
+        "station_longitude":-71.57,
+        "station_status":"Active",
+        "river_name":"RIO LIMARI",
+        "station_elevation":97.0,
+        "CATCHMENT_SIZE":"11343,00 km\u00b2",
+        "NAT_STA_ID":"4558001",
+        "GRDCCOUNTRY":"CL - CHILE"
+    },
+    {
+        "station_name":"PASSO DO RASO",
+        "station_no":3653400,
+        "station_id":1072971,
+        "station_latitude":-29.96667,
+        "station_longitude":-51.45,
+        "station_status":"Closed",
+        "river_name":"RIO JACUI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"71454,00 km\u00b2",
+        "NAT_STA_ID":"87040000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"PEDRA DO CAVALO",
+        "station_no":3652135,
+        "station_id":1072973,
+        "station_latitude":-12.6,
+        "station_longitude":-38.98333,
+        "station_status":"Closed",
+        "river_name":"RIO PARAGUACU",
+        "station_elevation":50.0,
+        "CATCHMENT_SIZE":"53866,00 km\u00b2",
+        "NAT_STA_ID":"51490000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"PEEDEE, S.C.",
+        "station_no":4148300,
+        "station_id":1069481,
+        "station_latitude":34.2043,
+        "station_longitude":-79.5484,
+        "station_status":"Active",
+        "river_name":"PEE DEE RIVER",
+        "station_elevation":7.54,
+        "CATCHMENT_SIZE":"22869,70 km\u00b2",
+        "NAT_STA_ID":"02131000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"PEIXE GORDO",
+        "station_no":3650649,
+        "station_id":1068668,
+        "station_latitude":-5.2275,
+        "station_longitude":-38.1978,
+        "station_status":"Active",
+        "river_name":"RIO JAGUARIBE",
+        "station_elevation":50.0,
+        "CATCHMENT_SIZE":"48200,00 km\u00b2",
+        "NAT_STA_ID":"36390000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"PENRITH",
+        "station_no":5202135,
+        "station_id":1074347,
+        "station_latitude":-33.7468,
+        "station_longitude":150.682,
+        "station_status":"Active",
+        "river_name":"NEPEAN RIVER",
+        "station_elevation":14.14,
+        "CATCHMENT_SIZE":"11000,00 km\u00b2",
+        "NAT_STA_ID":"212201",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"PICHI MAHUIDA",
+        "station_no":3275750,
+        "station_id":1071517,
+        "station_latitude":-38.83,
+        "station_longitude":-64.83,
+        "station_status":"Active",
+        "river_name":"RIO COLORADO",
+        "station_elevation":122.0,
+        "CATCHMENT_SIZE":"223000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"AR - ARGENTINA"
+    },
+    {
+        "station_name":"PILOT STATION, AK",
+        "station_no":4103200,
+        "station_id":1068493,
+        "station_latitude":61.9337,
+        "station_longitude":-162.8829,
+        "station_status":"Active",
+        "river_name":"YUKON RIVER",
+        "station_elevation":6.1,
+        "CATCHMENT_SIZE":"831390,00 km\u00b2",
+        "NAT_STA_ID":"15565447",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"PINDARE-MIRIM",
+        "station_no":3650285,
+        "station_id":1068687,
+        "station_latitude":-3.66111,
+        "station_longitude":-45.45833,
+        "station_status":"Active",
+        "river_name":"RIO PINDARE",
+        "station_elevation":4.0,
+        "CATCHMENT_SIZE":"34030,00 km\u00b2",
+        "NAT_STA_ID":"33190000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"POLMAK NYE",
+        "station_no":6730501,
+        "station_id":1072618,
+        "station_latitude":70.070335,
+        "station_longitude":28.016245,
+        "station_status":"Active",
+        "river_name":"DEATNU",
+        "station_elevation":20.0,
+        "CATCHMENT_SIZE":"14161,40 km\u00b2",
+        "NAT_STA_ID":"234.18.0.1001.1",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"PONTE DA BATALHA",
+        "station_no":3650885,
+        "station_id":1068748,
+        "station_latitude":-7.13,
+        "station_longitude":-35.0475,
+        "station_status":"Closed",
+        "river_name":"RIO PARAIBA",
+        "station_elevation":18.0,
+        "CATCHMENT_SIZE":"19244,00 km\u00b2",
+        "NAT_STA_ID":"38895000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"POROG",
+        "station_no":6970100,
+        "station_id":1067715,
+        "station_latitude":63.82,
+        "station_longitude":38.47,
+        "station_status":"Closed",
+        "river_name":"ONEGA",
+        "station_elevation":10.0,
+        "CATCHMENT_SIZE":"55700,00 km\u00b2",
+        "NAT_STA_ID":"70842",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"PORTO PLATON",
+        "station_no":3613050,
+        "station_id":1073718,
+        "station_latitude":0.7075,
+        "station_longitude":-51.43889,
+        "station_status":"Active",
+        "river_name":"RIO ARAGUARI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"29820,00 km\u00b2",
+        "NAT_STA_ID":"30400000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"PRES DE L'EMBOUCHURE",
+        "station_no":4214690,
+        "station_id":1072017,
+        "station_latitude":51.5336,
+        "station_longitude":-78.0969,
+        "station_status":"Closed",
+        "river_name":"RIVIERE PONTAX",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"6090,00 km\u00b2",
+        "NAT_STA_ID":"03BF001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"PRES DE L'EMBOUCHURE-1",
+        "station_no":4214900,
+        "station_id":1073522,
+        "station_latitude":57.883335,
+        "station_longitude":-67.583336,
+        "station_status":"Closed",
+        "river_name":"GRANDE RIVIERE DE LA BALEINE",
+        "station_elevation":26.0,
+        "CATCHMENT_SIZE":"29800,00 km\u00b2",
+        "NAT_STA_ID":"03MB002",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"PRES DE LA RIVIERE KOKSOAK",
+        "station_no":4214035,
+        "station_id":1067909,
+        "station_latitude":57.67,
+        "station_longitude":-69.62,
+        "station_status":"Closed",
+        "river_name":"RIVIERE AUX MELEZES",
+        "station_elevation":27.0,
+        "CATCHMENT_SIZE":"42700,00 km\u00b2",
+        "NAT_STA_ID":"03KC004",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"PRIMERA ANGOSTURA",
+        "station_no":3275990,
+        "station_id":1071523,
+        "station_latitude":-40.43,
+        "station_longitude":-63.67,
+        "station_status":"Active",
+        "river_name":"RIO NEGRO",
+        "station_elevation":320.0,
+        "CATCHMENT_SIZE":"95000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"AR - ARGENTINA"
+    },
+    {
+        "station_name":"PUYALLUP, WA",
+        "station_no":4146195,
+        "station_id":1071917,
+        "station_latitude":47.2084,
+        "station_longitude":-122.3271,
+        "station_status":"Active",
+        "river_name":"PUYALLUP RIVER",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"2455,30 km\u00b2",
+        "NAT_STA_ID":"12101500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"QUEVEDO",
+        "station_no":3844300,
+        "station_id":1068370,
+        "station_latitude":-1.018056,
+        "station_longitude":-79.461944,
+        "station_status":"Active",
+        "river_name":"RIO QUEVEDO",
+        "station_elevation":125.0,
+        "CATCHMENT_SIZE":"3507,00 km\u00b2",
+        "NAT_STA_ID":"H347",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"QUILLAGUA",
+        "station_no":3180100,
+        "station_id":1071003,
+        "station_latitude":-21.65,
+        "station_longitude":-69.55,
+        "station_status":"Active",
+        "river_name":"RIO LOA",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"-999,00 km\u00b2",
+        "NAT_STA_ID":"2112002",
+        "GRDCCOUNTRY":"CL - CHILE"
+    },
+    {
+        "station_name":"RAASAKKA (MERIKOSKI)",
+        "station_no":6854600,
+        "station_id":1066254,
+        "station_latitude":65.33485078,
+        "station_longitude":25.41127006,
+        "station_status":"Active",
+        "river_name":"IIJOKI",
+        "station_elevation":19.0,
+        "CATCHMENT_SIZE":"14191,00 km\u00b2",
+        "NAT_STA_ID":"6101950",
+        "GRDCCOUNTRY":"FI - FINLAND"
+    },
+    {
+        "station_name":"RAEKTFORS",
+        "station_no":6233850,
+        "station_id":1066654,
+        "station_latitude":66.1697,
+        "station_longitude":22.812,
+        "station_status":"Active",
+        "river_name":"KALIXALVEN",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"23102,90 km\u00b2",
+        "NAT_STA_ID":"17",
+        "GRDCCOUNTRY":"SE - SWEDEN"
+    },
+    {
+        "station_name":"RAPIDES FRYERS",
+        "station_no":4243240,
+        "station_id":1070800,
+        "station_latitude":45.3983,
+        "station_longitude":-73.2589,
+        "station_status":"Active",
+        "river_name":"RIVIERE RICHELIEU",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"22000,00 km\u00b2",
+        "NAT_STA_ID":"02OJ007",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"RAZDORSKAYA",
+        "station_no":6978250,
+        "station_id":1067163,
+        "station_latitude":47.540833,
+        "station_longitude":40.647222,
+        "station_status":"Active",
+        "river_name":"DON",
+        "station_elevation":58.0,
+        "CATCHMENT_SIZE":"378000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"RED ROCK",
+        "station_no":5709100,
+        "station_id":1066792,
+        "station_latitude":-14.6968,
+        "station_longitude":134.422,
+        "station_status":"Active",
+        "river_name":"ROPER RIVER",
+        "station_elevation":31.27,
+        "CATCHMENT_SIZE":"47400,00 km\u00b2",
+        "NAT_STA_ID":"G9030250",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"REDBROOK",
+        "station_no":6608501,
+        "station_id":1072734,
+        "station_latitude":51.79633583,
+        "station_longitude":-2.686274521,
+        "station_status":"Active",
+        "river_name":"RIVER WYE",
+        "station_elevation":9.2,
+        "CATCHMENT_SIZE":"4010,00 km\u00b2",
+        "NAT_STA_ID":"g055023",
+        "GRDCCOUNTRY":"GB - UNITED KINGDOM"
+    },
+    {
+        "station_name":"REES",
+        "station_no":6335020,
+        "station_id":1066449,
+        "station_latitude":51.756918,
+        "station_longitude":6.395395,
+        "station_status":"Active",
+        "river_name":"RHINE RIVER",
+        "station_elevation":8.74,
+        "CATCHMENT_SIZE":"159300,00 km\u00b2",
+        "NAT_STA_ID":"2790010",
+        "GRDCCOUNTRY":"DE - GERMANY"
+    },
+    {
+        "station_name":"RICHMOND, TEX.",
+        "station_no":4150500,
+        "station_id":1068154,
+        "station_latitude":29.5825,
+        "station_longitude":-95.7577,
+        "station_status":"Active",
+        "river_name":"BRAZOS RIVER",
+        "station_elevation":8.52,
+        "CATCHMENT_SIZE":"116827,10 km\u00b2",
+        "NAT_STA_ID":"08114000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"ROANOKE RAPIDS, N.C.",
+        "station_no":4148090,
+        "station_id":1068219,
+        "station_latitude":36.4605,
+        "station_longitude":-77.6345,
+        "station_status":"Active",
+        "river_name":"ROANOKE RIVER",
+        "station_elevation":13.36,
+        "CATCHMENT_SIZE":"21714,60 km\u00b2",
+        "NAT_STA_ID":"02080500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"ROCKFIELDS",
+        "station_no":5109170,
+        "station_id":1066932,
+        "station_latitude":-18.2025,
+        "station_longitude":142.876,
+        "station_status":"Active",
+        "river_name":"GILBERT RIVER",
+        "station_elevation":168.0,
+        "CATCHMENT_SIZE":"10987,00 km\u00b2",
+        "NAT_STA_ID":"917001D",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"ROMAYOR, TEX.",
+        "station_no":4150600,
+        "station_id":1069382,
+        "station_latitude":30.4252,
+        "station_longitude":-94.8508,
+        "station_status":"Active",
+        "river_name":"TRINITY RIVER",
+        "station_elevation":7.9,
+        "CATCHMENT_SIZE":"44511,70 km\u00b2",
+        "NAT_STA_ID":"08066500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"RUACANA (64740001)",
+        "station_no":1255100,
+        "station_id":1072630,
+        "station_latitude":-17.4,
+        "station_longitude":14.2,
+        "station_status":"Active",
+        "river_name":"KUNENE RIVER",
+        "station_elevation":800.0,
+        "CATCHMENT_SIZE":"89600,00 km\u00b2",
+        "NAT_STA_ID":"2811M01",
+        "GRDCCOUNTRY":"NA - NAMIBIA"
+    },
+    {
+        "station_name":"RUNDU (64932101)",
+        "station_no":1257100,
+        "station_id":1072635,
+        "station_latitude":-17.9,
+        "station_longitude":19.75,
+        "station_status":"Active",
+        "river_name":"OKAVANGO RIVER",
+        "station_elevation":1060.0,
+        "CATCHMENT_SIZE":"97300,00 km\u00b2",
+        "NAT_STA_ID":"2511M01",
+        "GRDCCOUNTRY":"NA - NAMIBIA"
+    },
+    {
+        "station_name":"SALEKHARD",
+        "station_no":2912600,
+        "station_id":1070095,
+        "station_latitude":66.63,
+        "station_longitude":66.6,
+        "station_status":"Active",
+        "river_name":"OB'",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"2950000,00 km\u00b2",
+        "NAT_STA_ID":"11801",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"SAO FRANCISCO",
+        "station_no":3631100,
+        "station_id":1068642,
+        "station_latitude":-0.5678,
+        "station_longitude":-52.5692,
+        "station_status":"Active",
+        "river_name":"RIO JARI",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"51343,00 km\u00b2",
+        "NAT_STA_ID":"19150000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"SASKYLAKH",
+        "station_no":2999150,
+        "station_id":1071093,
+        "station_latitude":71.97,
+        "station_longitude":114.08,
+        "station_status":"Active",
+        "river_name":"ANABAR",
+        "station_elevation":3.0,
+        "CATCHMENT_SIZE":"78800,00 km\u00b2",
+        "NAT_STA_ID":"03801",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"SAVAGES CROSSING",
+        "station_no":5101500,
+        "station_id":1073746,
+        "station_latitude":-27.4397,
+        "station_longitude":152.669,
+        "station_status":"Active",
+        "river_name":"BRISBANE RIVER",
+        "station_elevation":18.481,
+        "CATCHMENT_SIZE":"10170,00 km\u00b2",
+        "NAT_STA_ID":"143001C",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"SAYAN",
+        "station_no":3948600,
+        "station_id":1068380,
+        "station_latitude":-11.15,
+        "station_longitude":-77.2,
+        "station_status":"Active",
+        "river_name":"RIO HUAURA",
+        "station_elevation":790.0,
+        "CATCHMENT_SIZE":"-999,00 km\u00b2",
+        "NAT_STA_ID":"212301",
+        "GRDCCOUNTRY":"PE - PERU"
+    },
+    {
+        "station_name":"SCOTIA, CALIF.",
+        "station_no":4146180,
+        "station_id":1068227,
+        "station_latitude":40.4915,
+        "station_longitude":-124.0998,
+        "station_status":"Active",
+        "river_name":"EEL RIVER",
+        "station_elevation":10.82,
+        "CATCHMENT_SIZE":"8062,70 km\u00b2",
+        "NAT_STA_ID":"11477000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"SELFOSS",
+        "station_no":6401090,
+        "station_id":1066421,
+        "station_latitude":63.93796,
+        "station_longitude":-21.00666,
+        "station_status":"Active",
+        "river_name":"OLFUSA",
+        "station_elevation":12.0,
+        "CATCHMENT_SIZE":"5662,00 km\u00b2",
+        "NAT_STA_ID":"VHM64",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"SEREBRYANSKAYA GES 1",
+        "station_no":6971401,
+        "station_id":1066226,
+        "station_latitude":68.45,
+        "station_longitude":35.33,
+        "station_status":"Active",
+        "river_name":"VORON'YA",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"8640,00 km\u00b2",
+        "NAT_STA_ID":"71134",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"SHIJIAO",
+        "station_no":2186901,
+        "station_id":1072975,
+        "station_latitude":23.57,
+        "station_longitude":112.95,
+        "station_status":"Active",
+        "river_name":"BEI JIANG",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"38363,00 km\u00b2",
+        "NAT_STA_ID":"86124",
+        "GRDCCOUNTRY":"CN - CHINA"
+    },
+    {
+        "station_name":"SIDI BELATAR",
+        "station_no":1104150,
+        "station_id":1067493,
+        "station_latitude":36.02,
+        "station_longitude":0.27,
+        "station_status":"Active",
+        "river_name":"OUED CHELIF",
+        "station_elevation":2.0,
+        "CATCHMENT_SIZE":"43750,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"DZ - ALGERIA"
+    },
+    {
+        "station_name":"SINGLETON",
+        "station_no":5202103,
+        "station_id":1074346,
+        "station_latitude":-32.5602,
+        "station_longitude":151.171,
+        "station_status":"Active",
+        "river_name":"HUNTER RIVER",
+        "station_elevation":27.63,
+        "CATCHMENT_SIZE":"16400,00 km\u00b2",
+        "NAT_STA_ID":"210001",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"SKARNES",
+        "station_no":6729402,
+        "station_id":1072621,
+        "station_latitude":60.254318,
+        "station_longitude":11.67747,
+        "station_status":"Active",
+        "river_name":"GLOMMA",
+        "station_elevation":129.4,
+        "CATCHMENT_SIZE":"20300,00 km\u00b2",
+        "NAT_STA_ID":"2.122.0.1001.1",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"SOBRAL",
+        "station_no":3650525,
+        "station_id":1068474,
+        "station_latitude":-3.68,
+        "station_longitude":-40.35,
+        "station_status":"Closed",
+        "river_name":"RIO ACARAU",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"11160,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"SOLBERGFOSS",
+        "station_no":6729403,
+        "station_id":1072557,
+        "station_latitude":59.637333,
+        "station_longitude":11.153544,
+        "station_status":"Active",
+        "river_name":"GLOMMA",
+        "station_elevation":101.0,
+        "CATCHMENT_SIZE":"40540,00 km\u00b2",
+        "NAT_STA_ID":"2.605.0.1001.0",
+        "GRDCCOUNTRY":"NO - NORWAY"
+    },
+    {
+        "station_name":"SOLLEFTEA KRV",
+        "station_no":6233650,
+        "station_id":1066646,
+        "station_latitude":63.1719,
+        "station_longitude":17.2655,
+        "station_status":"Active",
+        "river_name":"ANGERMANALVEN",
+        "station_elevation":4.0,
+        "CATCHMENT_SIZE":"30638,00 km\u00b2",
+        "NAT_STA_ID":"2133",
+        "GRDCCOUNTRY":"SE - SWEDEN"
+    },
+    {
+        "station_name":"SOUNDA",
+        "station_no":1445100,
+        "station_id":1071359,
+        "station_latitude":-4.1,
+        "station_longitude":12.07,
+        "station_status":"Active",
+        "river_name":"KOUILOU",
+        "station_elevation":8.0,
+        "CATCHMENT_SIZE":"55010,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"CG - CONGO"
+    },
+    {
+        "station_name":"SREDNEKOLYMSK",
+        "station_no":2998500,
+        "station_id":1071237,
+        "station_latitude":67.47,
+        "station_longitude":153.69,
+        "station_status":"Active",
+        "river_name":"KOLYMA",
+        "station_elevation":8.0,
+        "CATCHMENT_SIZE":"361000,00 km\u00b2",
+        "NAT_STA_ID":"01801",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"STEKKUR",
+        "station_no":6401070,
+        "station_id":1075474,
+        "station_latitude":64.71072,
+        "station_longitude":-21.60337,
+        "station_status":"Active",
+        "river_name":"NORDHURA",
+        "station_elevation":18.0,
+        "CATCHMENT_SIZE":"507,00 km\u00b2",
+        "NAT_STA_ID":"VHM128",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"STRATFORD",
+        "station_no":5302255,
+        "station_id":1074351,
+        "station_latitude":-37.9686,
+        "station_longitude":147.076,
+        "station_status":"Active",
+        "river_name":"AVON RIVER",
+        "station_elevation":12.0,
+        "CATCHMENT_SIZE":"1485,00 km\u00b2",
+        "NAT_STA_ID":"225201",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"TABAGA",
+        "station_no":2903429,
+        "station_id":1070368,
+        "station_latitude":61.83,
+        "station_longitude":129.6,
+        "station_status":"Active",
+        "river_name":"LENA",
+        "station_elevation":85.0,
+        "CATCHMENT_SIZE":"897000,00 km\u00b2",
+        "NAT_STA_ID":"03042",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"TAINIONKOSKI",
+        "station_no":6855400,
+        "station_id":1067679,
+        "station_latitude":61.2107,
+        "station_longitude":28.7839,
+        "station_status":"Active",
+        "river_name":"VUOKSI",
+        "station_elevation":70.0,
+        "CATCHMENT_SIZE":"61061,00 km\u00b2",
+        "NAT_STA_ID":"0411450",
+        "GRDCCOUNTRY":"FI - FINLAND"
+    },
+    {
+        "station_name":"TARRARA BAR",
+        "station_no":5608096,
+        "station_id":1074210,
+        "station_latitude":-15.5696,
+        "station_longitude":128.693,
+        "station_status":"Active",
+        "river_name":"ORD RIVER",
+        "station_elevation":28.35,
+        "CATCHMENT_SIZE":"51028,00 km\u00b2",
+        "NAT_STA_ID":"809339",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"TELEGRAPH CROSSING",
+        "station_no":5109240,
+        "station_id":1074343,
+        "station_latitude":-13.4176,
+        "station_longitude":142.921,
+        "station_status":"Active",
+        "river_name":"ARCHER RIVER",
+        "station_elevation":128.757,
+        "CATCHMENT_SIZE":"2928,00 km\u00b2",
+        "NAT_STA_ID":"922001A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"THE GAP",
+        "station_no":5101301,
+        "station_id":1066904,
+        "station_latitude":-23.089,
+        "station_longitude":150.107,
+        "station_status":"Active",
+        "river_name":"FITZROY RIVER",
+        "station_elevation":8.869,
+        "CATCHMENT_SIZE":"135757,00 km\u00b2",
+        "NAT_STA_ID":"130005A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"THOMPSONVILLE, CT",
+        "station_no":4147460,
+        "station_id":1069153,
+        "station_latitude":41.9873,
+        "station_longitude":-72.6054,
+        "station_status":"Active",
+        "river_name":"CONNECTICUT RIVER",
+        "station_elevation":11.73,
+        "CATCHMENT_SIZE":"25019,40 km\u00b2",
+        "NAT_STA_ID":"01184000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"TIGHINA (BENDERY)",
+        "station_no":6781800,
+        "station_id":1067276,
+        "station_latitude":46.830556,
+        "station_longitude":29.471111,
+        "station_status":"Active",
+        "river_name":"DNIESTER",
+        "station_elevation":2.0,
+        "CATCHMENT_SIZE":"66100,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"MD - MOLDOVA, REPUBLIC OF"
+    },
+    {
+        "station_name":"TIKHOVSKY",
+        "station_no":6983350,
+        "station_id":1066190,
+        "station_latitude":45.191111,
+        "station_longitude":38.229167,
+        "station_status":"Closed",
+        "river_name":"KUBAN'",
+        "station_elevation":5.0,
+        "CATCHMENT_SIZE":"48100,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"TIMBUES",
+        "station_no":3265601,
+        "station_id":1073721,
+        "station_latitude":-32.67,
+        "station_longitude":-60.71,
+        "station_status":"Active",
+        "river_name":"RIO PARANA",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"2346000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"AR - ARGENTINA"
+    },
+    {
+        "station_name":"TRAIPU",
+        "station_no":3651900,
+        "station_id":1068628,
+        "station_latitude":-9.98333,
+        "station_longitude":-36.98333,
+        "station_status":"Active",
+        "river_name":"RIO SAO FRANCISCO",
+        "station_elevation":40.0,
+        "CATCHMENT_SIZE":"622520,00 km\u00b2",
+        "NAT_STA_ID":"49660000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"TRENTON, N.J.",
+        "station_no":4147600,
+        "station_id":1069160,
+        "station_latitude":40.2217,
+        "station_longitude":-74.7781,
+        "station_status":"Active",
+        "river_name":"DELAWARE RIVER",
+        "station_elevation":0.0,
+        "CATCHMENT_SIZE":"17560,20 km\u00b2",
+        "NAT_STA_ID":"01463500",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"TUCURUI",
+        "station_no":3649950,
+        "station_id":1072970,
+        "station_latitude":-3.75778,
+        "station_longitude":-49.65333,
+        "station_status":"Active",
+        "river_name":"RIO TOCANTINS",
+        "station_elevation":1.87,
+        "CATCHMENT_SIZE":"742300,00 km\u00b2",
+        "NAT_STA_ID":"29700000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"TUNG OIL",
+        "station_no":5101119,
+        "station_id":1073740,
+        "station_latitude":-17.5456,
+        "station_longitude":145.933,
+        "station_status":"Active",
+        "river_name":"NORTH JOHNSTONE RIVER",
+        "station_elevation":9.04,
+        "CATCHMENT_SIZE":"925,00 km\u00b2",
+        "NAT_STA_ID":"112004A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"TURNERS FLAT",
+        "station_no":5202070,
+        "station_id":1066895,
+        "station_latitude":-30.0076,
+        "station_longitude":152.712,
+        "station_status":"Active",
+        "river_name":"MACLEAY RIVER",
+        "station_elevation":11.851,
+        "CATCHMENT_SIZE":"9980,00 km\u00b2",
+        "NAT_STA_ID":"206011",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"TVILUMBRO",
+        "station_no":6934250,
+        "station_id":1067813,
+        "station_latitude":56.24026,
+        "station_longitude":9.67046,
+        "station_status":"Active",
+        "river_name":"GUDENA",
+        "station_elevation":17.7,
+        "CATCHMENT_SIZE":"1285,00 km\u00b2",
+        "NAT_STA_ID":"21000084",
+        "GRDCCOUNTRY":"DK - DENMARK"
+    },
+    {
+        "station_name":"UBILEYNAYA",
+        "station_no":2999110,
+        "station_id":1073694,
+        "station_latitude":70.75,
+        "station_longitude":136.08,
+        "station_status":"Active",
+        "river_name":"YANA",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"224000,00 km\u00b2",
+        "NAT_STA_ID":"03861",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"ULLARFOSSBRU",
+        "station_no":6401600,
+        "station_id":1066427,
+        "station_latitude":65.39387,
+        "station_longitude":-17.30439,
+        "station_status":"Active",
+        "river_name":"SVARTA",
+        "station_elevation":311.0,
+        "CATCHMENT_SIZE":"527,00 km\u00b2",
+        "NAT_STA_ID":"VHM116",
+        "GRDCCOUNTRY":"IS - ICELAND"
+    },
+    {
+        "station_name":"UMIAT, AK",
+        "station_no":4101501,
+        "station_id":1073392,
+        "station_latitude":69.36,
+        "station_longitude":-152.12,
+        "station_status":"Active",
+        "river_name":"COLVILLE RIVER",
+        "station_elevation":83.82,
+        "CATCHMENT_SIZE":"35820,00 km\u00b2",
+        "NAT_STA_ID":"15875000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"UPSTREAM CENTRAL MILL",
+        "station_no":5101118,
+        "station_id":1067062,
+        "station_latitude":-17.61,
+        "station_longitude":145.978,
+        "station_status":"Active",
+        "river_name":"SOUTH JOHNSTONE RIVER",
+        "station_elevation":4.392,
+        "CATCHMENT_SIZE":"400,00 km\u00b2",
+        "NAT_STA_ID":"112101B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"URENGOY",
+        "station_no":2997120,
+        "station_id":1073406,
+        "station_latitude":65.97,
+        "station_longitude":78.35,
+        "station_status":"Active",
+        "river_name":"PUR",
+        "station_elevation":6.0,
+        "CATCHMENT_SIZE":"80400,00 km\u00b2",
+        "NAT_STA_ID":"11571",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"USINA ALTAMIRA",
+        "station_no":3652039,
+        "station_id":1068538,
+        "station_latitude":-11.73472,
+        "station_longitude":-37.80333,
+        "station_status":"Active",
+        "river_name":"RIO ITAPICURU",
+        "station_elevation":17.0,
+        "CATCHMENT_SIZE":"35150,00 km\u00b2",
+        "NAT_STA_ID":"50595000",
+        "GRDCCOUNTRY":"BR - BRAZIL"
+    },
+    {
+        "station_name":"USK",
+        "station_no":4245250,
+        "station_id":1068072,
+        "station_latitude":54.630554,
+        "station_longitude":-128.43195,
+        "station_status":"Active",
+        "river_name":"SKEENA RIVER",
+        "station_elevation":100.0,
+        "CATCHMENT_SIZE":"42200,00 km\u00b2",
+        "NAT_STA_ID":"08EF001",
+        "GRDCCOUNTRY":"CA - CANADA"
+    },
+    {
+        "station_name":"UST'-PINEGA",
+        "station_no":6970250,
+        "station_id":1067225,
+        "station_latitude":64.13,
+        "station_longitude":41.92,
+        "station_status":"Active",
+        "river_name":"SEVERNAYA DVINA",
+        "station_elevation":2.0,
+        "CATCHMENT_SIZE":"348000,00 km\u00b2",
+        "NAT_STA_ID":"70801",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"VARGOENS KRV",
+        "station_no":6233315,
+        "station_id":1066477,
+        "station_latitude":58.3551,
+        "station_longitude":12.3749,
+        "station_status":"Active",
+        "river_name":"GOTA ALV",
+        "station_elevation":44.0,
+        "CATCHMENT_SIZE":"46882,71 km\u00b2",
+        "NAT_STA_ID":"1954",
+        "GRDCCOUNTRY":"SE - SWEDEN"
+    },
+    {
+        "station_name":"VARZUGA",
+        "station_no":6971600,
+        "station_id":1067783,
+        "station_latitude":66.4,
+        "station_longitude":36.58,
+        "station_status":"Active",
+        "river_name":"VARZUGA",
+        "station_elevation":9.0,
+        "CATCHMENT_SIZE":"7940,00 km\u00b2",
+        "NAT_STA_ID":"71186",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"VERKHNE-TULOMSKIY GES",
+        "station_no":6971130,
+        "station_id":1066124,
+        "station_latitude":68.6,
+        "station_longitude":31.75,
+        "station_status":"Active",
+        "river_name":"TULOMA",
+        "station_elevation":-999.0,
+        "CATCHMENT_SIZE":"17500,00 km\u00b2",
+        "NAT_STA_ID":"71060",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"VERNOR",
+        "station_no":5101503,
+        "station_id":1074240,
+        "station_latitude":-27.4675,
+        "station_longitude":152.599,
+        "station_status":"Closed",
+        "river_name":"BRISBANE RIVER",
+        "station_elevation":21.83,
+        "CATCHMENT_SIZE":"10056,00 km\u00b2",
+        "NAT_STA_ID":"143001B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"VICKSBURG, MS",
+        "station_no":4127800,
+        "station_id":1068162,
+        "station_latitude":32.315,
+        "station_longitude":-90.9058,
+        "station_status":"Active",
+        "river_name":"MISSISSIPPI RIVER",
+        "station_elevation":14.09,
+        "CATCHMENT_SIZE":"2964255,00 km\u00b2",
+        "NAT_STA_ID":"07289000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"VINCES-DCP",
+        "station_no":3844450,
+        "station_id":1068372,
+        "station_latitude":-1.549167,
+        "station_longitude":-79.750556,
+        "station_status":"Active",
+        "river_name":"RIO VINCES",
+        "station_elevation":41.0,
+        "CATCHMENT_SIZE":"4400,00 km\u00b2",
+        "NAT_STA_ID":"H348",
+        "GRDCCOUNTRY":"EC - ECUADOR"
+    },
+    {
+        "station_name":"VIOOLSDRIF (27811003)",
+        "station_no":1159100,
+        "station_id":1067539,
+        "station_latitude":-28.75798997,
+        "station_longitude":17.72159144,
+        "station_status":"Active",
+        "river_name":"ORANGE RIVER",
+        "station_elevation":152.0,
+        "CATCHMENT_SIZE":"866486,00 km\u00b2",
+        "NAT_STA_ID":"D8H003",
+        "GRDCCOUNTRY":"ZA - SOUTH AFRICA"
+    },
+    {
+        "station_name":"VOLGOGRAD POWER PLANT",
+        "station_no":6977100,
+        "station_id":1067161,
+        "station_latitude":48.804722,
+        "station_longitude":44.585833,
+        "station_status":"Active",
+        "river_name":"VOLGA",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"1360000,00 km\u00b2",
+        "NAT_STA_ID":null,
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"VORONTSOVO",
+        "station_no":2903981,
+        "station_id":1071852,
+        "station_latitude":69.58,
+        "station_longitude":147.35,
+        "station_status":"Closed",
+        "river_name":"INDIGIRKA",
+        "station_elevation":4.0,
+        "CATCHMENT_SIZE":"305000,00 km\u00b2",
+        "NAT_STA_ID":"03871",
+        "GRDCCOUNTRY":"RU - RUSSIAN FEDERATION"
+    },
+    {
+        "station_name":"WALKERS BEND",
+        "station_no":5109151,
+        "station_id":1073749,
+        "station_latitude":-18.1617,
+        "station_longitude":140.858,
+        "station_status":"Active",
+        "river_name":"FLINDERS RIVER",
+        "station_elevation":2.097,
+        "CATCHMENT_SIZE":"106300,00 km\u00b2",
+        "NAT_STA_ID":"915003A",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"WALLA",
+        "station_no":5101470,
+        "station_id":1073745,
+        "station_latitude":-25.1362,
+        "station_longitude":151.982,
+        "station_status":"Active",
+        "river_name":"BURNETT RIVER",
+        "station_elevation":16.427,
+        "CATCHMENT_SIZE":"32455,00 km\u00b2",
+        "NAT_STA_ID":"136001B",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"WHARTON, TEX.",
+        "station_no":4150450,
+        "station_id":1069475,
+        "station_latitude":29.3091,
+        "station_longitude":-96.1038,
+        "station_status":"Active",
+        "river_name":"COLORADO RIVER",
+        "station_elevation":15.98,
+        "CATCHMENT_SIZE":"108788,00 km\u00b2",
+        "NAT_STA_ID":"08162000",
+        "GRDCCOUNTRY":"US - UNITED STATES"
+    },
+    {
+        "station_name":"WILLARE",
+        "station_no":5607025,
+        "station_id":1074209,
+        "station_latitude":-17.7362,
+        "station_longitude":123.646,
+        "station_status":"Active",
+        "river_name":"FITZROY RIVER",
+        "station_elevation":19.0,
+        "CATCHMENT_SIZE":"91902,00 km\u00b2",
+        "NAT_STA_ID":"802008",
+        "GRDCCOUNTRY":"AU - AUSTRALIA"
+    },
+    {
+        "station_name":"WUZHOU 3",
+        "station_no":2186800,
+        "station_id":1073307,
+        "station_latitude":23.48,
+        "station_longitude":111.3,
+        "station_status":"Active",
+        "river_name":"XI JIANG",
+        "station_elevation":null,
+        "CATCHMENT_SIZE":"329705,00 km\u00b2",
+        "NAT_STA_ID":"81016",
+        "GRDCCOUNTRY":"CN - CHINA"
+    }
+]
\ No newline at end of file
diff --git a/data/region_to_country_mapping.csv b/data/region_to_country_mapping.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/data/region_to_country_mapping.csv
@@ -0,0 +1 @@
+
diff --git a/data_analysis.py b/data_analysis.py
new file mode 100644
index 0000000000000000000000000000000000000000..cd7cee3a8d651f4a914442429e0078e087566f8c
--- /dev/null
+++ b/data_analysis.py
@@ -0,0 +1,51 @@
+import pandas as pd
+import matplotlib.pyplot as plt
+import seaborn as sns
+
+# Load the glacier data (assumed to be preloaded)
+region_data = pd.read_csv('glacier_data/1_alaska.csv')  # Example file, adjust as necessary
+
+# Load the GTN dataset
+gtn_data = pd.read_excel('GTN Report.xlsx')  # Example for GTN data
+
+# Set the plot style
+sns.set(style="whitegrid")
+
+# Create a figure with 3 subplots
+fig, axes = plt.subplots(3, 1, figsize=(10, 18))
+fig.suptitle('Glacier and River Discharge Visualization Prototype', fontsize=16)
+
+# 1. Time-based Change (Glacier Mass Change Over Time)
+axes[0].plot(region_data['end_dates'], region_data['combined_gt'], marker='o', color='b', label='Mass Change (Gt)')
+axes[0].set_title('Glacier Mass Change Over Time', fontsize=14)
+axes[0].set_xlabel('Year')
+axes[0].set_ylabel('Mass Change (Gt)')
+axes[0].legend()
+
+# 2. Size-based Relationship (Glacier Area vs. Glacier Mass Change)
+axes[1].scatter(region_data['glacier_area'], region_data['combined_gt'], c=region_data['end_dates'], cmap='viridis')
+axes[1].set_title('Glacier Area vs. Mass Change', fontsize=14)
+axes[1].set_xlabel('Glacier Area (km²)')
+axes[1].set_ylabel('Mass Change (Gt)')
+cbar = fig.colorbar(plt.cm.ScalarMappable(cmap='viridis'), ax=axes[1])
+cbar.set_label('Year')
+
+# 3. Scatter Plot: Glacier Mass Change vs. Catchment Size (Matching regions and years)
+# Filter data for matching years and regions (for Alaska in this case)
+region_name = 'alaska'
+catchment_data = gtn_data[gtn_data['river_name'].str.contains(region_name, case=False, na=False)]  # Adjust for region
+
+# Merge datasets based on year (assuming region_data and catchment_data are aligned)
+merged_data = pd.merge(region_data, catchment_data, left_on='end_dates', right_on='station_elevation', how='inner')
+
+# Ensure both datasets have matching rows
+if not merged_data.empty:
+    axes[2].scatter(merged_data['CATCHMENT_SIZE'], merged_data['combined_gt'], color='r', alpha=0.5)
+    axes[2].set_title('Glacier Mass Change vs. Catchment Size', fontsize=14)
+    axes[2].set_xlabel('Catchment Size (km²)')
+    axes[2].set_ylabel('Mass Change (Gt)')
+else:
+    axes[2].text(0.5, 0.5, 'No matching data for selected region', ha='center', va='center', fontsize=12, color='red')
+
+plt.tight_layout(rect=[0, 0, 1, 0.97])
+plt.show()
diff --git a/data_preprocessing.py b/data_preprocessing.py
new file mode 100644
index 0000000000000000000000000000000000000000..af03cc27faf687fa88c0ef2f616b63926a8dc997
--- /dev/null
+++ b/data_preprocessing.py
@@ -0,0 +1,55 @@
+import zipfile
+import pandas as pd
+import json
+import os
+
+# Paths
+zip_path = "Glacier.zip"
+xlsx_path = "GTN Report.xlsx"
+extract_dir = "glacier_data"
+output_dir = "data"
+
+# Create data directory if it doesn't exist
+os.makedirs(output_dir, exist_ok=True)
+
+# Process glacier data
+glacier_data = []
+region_coordinates = {
+    '1_alaska': (64.2008, -149.4937), '2_western_canada_us': (52.9399, -106.4509),
+    '3_arctic_canada_north': (75.0, -100.0), '4_arctic_canada_south': (65.0, -100.0),
+    '5_greenland_periphery': (72.0, -40.0), '6_iceland': (64.9631, -19.0208),
+    '7_svalbard': (78.0, 16.0), '8_scandinavia': (60.0, 15.0),
+    '9_russian_arctic': (70.0, 100.0), '10_north_asia': (60.0, 90.0),
+    '11_central_europe': (47.0, 10.0), '12_caucasus_middle_east': (42.0, 45.0),
+    '13_central_asia': (43.0, 75.0), '14_south_asia_west': (35.0, 70.0),
+    '15_south_asia_east': (27.0, 85.0), '16_low_latitudes': (0.0, -60.0),
+    '17_southern_andes': (-40.0, -70.0), '18_new_zealand': (-41.2865, 174.7762),
+    '19_antarctic_and_subantarctic': (-75.0, 0.0)
+}
+
+for file in os.listdir(extract_dir):
+    if file.endswith('.csv') and file != '0_global.csv':
+        region = file.replace('.csv', '')
+        df = pd.read_csv(os.path.join(extract_dir, file))
+        lat, lon = region_coordinates.get(region, (0, 0))
+        for _, row in df.iterrows():
+            glacier_data.append({
+                "region": region,
+                "start_date": row['start_dates'],
+                "end_date": row['end_dates'],
+                "glacier_area": row['glacier_area'],
+                "glacier_mass_change": row['combined_gt'],
+                "simulated_discharge": 500 * (1 - ((row['combined_gt'] - df['combined_gt'].min()) / (df['combined_gt'].max() - df['combined_gt'].min()))),
+                "latitude": lat,
+                "longitude": lon
+            })
+
+# Save glacier data to JSON
+with open(os.path.join(output_dir, 'glacier_data.json'), 'w') as f:
+    json.dump(glacier_data, f, indent=4)
+
+# Convert GTN Report to JSON
+df_gtn = pd.read_excel(xlsx_path)
+df_gtn.to_json(os.path.join(output_dir, 'gtn_report.json'), orient='records', indent=4)
+
+print("✅ Data successfully converted and saved in 'data/' directory.")
diff --git a/glacier_data/0_global.csv b/glacier_data/0_global.csv
new file mode 100644
index 0000000000000000000000000000000000000000..87f3dc26a3483ffa1ab39559795625d33e2fd86b
--- /dev/null
+++ b/glacier_data/0_global.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,704082.6956499998,global,-78.04414729402814,111.56095088251794,-0.1111786793375206,0.1583621138501352
+2001.0,2002.0,701805.4987500003,global,-215.16931097001844,95.3001011576375,-0.3075164866023069,0.1350498121659405
+2002.0,2003.0,699528.3018500003,global,-128.46636738674923,91.14634450070768,-0.1841997326262217,0.1289299604899674
+2003.0,2004.0,697251.1049500001,global,-192.6724697716301,72.79887688516011,-0.2771630264606625,0.1028951725208123
+2004.0,2005.0,694973.9080500001,global,-229.2369109878561,73.022158218317,-0.3308421919121849,0.1028436503023272
+2005.0,2006.0,692696.71115,global,-315.0371756633185,74.19065798809451,-0.4561666396999292,0.1044578602427483
+2006.0,2007.0,690419.51425,global,-279.8898739792978,72.77317030930298,-0.4066108567264724,0.1025138185768302
+2007.0,2008.0,688142.31735,global,-323.16570882967466,71.78509732133082,-0.4710335566158922,0.1010360421851532
+2008.0,2009.0,685865.12045,global,-178.6324817323364,71.86184704387401,-0.2612321087124307,0.1011209402057232
+2009.0,2010.0,683587.9235500002,global,-231.2381243724868,71.29354455724742,-0.3392890923913098,0.1001020384598227
+2010.0,2011.0,681310.7266500002,global,-231.1966727048064,72.2582027545506,-0.3403621001158775,0.101352981542154
+2011.0,2012.0,679033.5297499998,global,-365.9472468839626,68.11267549573648,-0.540545313270877,0.0950926143458494
+2012.0,2013.0,676756.3328500001,global,-188.0208512243996,67.35045471659744,-0.2786624991943321,0.0941254547446842
+2013.0,2014.0,674479.1359500001,global,-304.73798136525033,66.47051377096227,-0.4531718327704068,0.0925856747213776
+2014.0,2015.0,672201.9390499997,global,-149.889416279315,65.94044282966604,-0.2236536803279121,0.0920570437100916
+2015.0,2016.0,669924.74215,global,-284.97423508815865,66.77259130583126,-0.4266624477275931,0.0932270670335857
+2016.0,2017.0,667647.5452499996,global,-340.6076946742656,68.35959222730513,-0.5116960211749099,0.0952916518024702
+2017.0,2018.0,665370.3483500001,global,-217.68675972042345,66.39070274109359,-0.3281507593734814,0.0924077513562398
+2018.0,2019.0,663093.1514499999,global,-243.81282612823085,66.54077158950466,-0.3687965484035694,0.0924649491234518
+2019.0,2020.0,660815.9545499999,global,-412.9645781490086,69.99144862252744,-0.6268117422048606,0.0969733224466875
+2020.0,2021.0,658538.75765,global,-405.0394156368366,76.20680182507151,-0.6169085501621713,0.1065416966938755
+2021.0,2022.0,656261.5607500002,global,-217.7163545547422,81.6846283807594,-0.3327506622695744,0.1151000186974428
+2022.0,2023.0,653984.3638500002,global,-460.2989143829609,100.8285184125692,-0.7059556646949124,0.138700930079604
+2023.0,2024.0,651707.1669499998,global,-548.025110248126,120.16099017378784,-0.8434372990227316,0.1662574332317422
diff --git a/glacier_data/10_north_asia.csv b/glacier_data/10_north_asia.csv
new file mode 100644
index 0000000000000000000000000000000000000000..960b00c4c20bfa7b0e4edb0a81ca7d334e1ec447
--- /dev/null
+++ b/glacier_data/10_north_asia.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,2487.7225,north_asia,-0.9197019532932548,1.0265275291265996,-0.3708087865014635,0.4267978293382843
+2001.0,2002.0,2477.3595,north_asia,-1.5411560324271425,0.5757372429047373,-0.6239681453842844,0.2374580820623789
+2002.0,2003.0,2466.9965,north_asia,-2.008519104670919,0.5971520843045376,-0.8166054524398674,0.2449868095663878
+2003.0,2004.0,2456.6335,north_asia,-1.3367036448471714,0.5605964144603081,-0.5457573636092294,0.2316484965833838
+2004.0,2005.0,2446.2705,north_asia,-0.6073020718796399,0.5800062732919948,-0.2490033135176266,0.2410596415169421
+2005.0,2006.0,2435.9075,north_asia,-0.4421699496148141,0.543997009186656,-0.1820678539590347,0.2262170617791567
+2006.0,2007.0,2425.5445,north_asia,-1.4369095884292484,0.5547031793605927,-0.5941895884796716,0.2289152797255827
+2007.0,2008.0,2415.1815,north_asia,-1.5576011706781698,0.555112921025605,-0.6468615442700755,0.2287454249490515
+2008.0,2009.0,2404.8185,north_asia,-1.7288465569663265,0.5495905128318924,-0.7210725895012671,0.2258850833242974
+2009.0,2010.0,2394.4555,north_asia,0.4721992168201645,0.5558080553432801,0.1977986548721905,0.2311109134930584
+2010.0,2011.0,2384.0925,north_asia,-1.278298719425217,0.549382943810827,-0.5377916984722222,0.2270930475136839
+2011.0,2012.0,2373.7295,north_asia,-2.1266620946428576,0.5504841757070587,-0.8986117746265077,0.2247891996692553
+2012.0,2013.0,2363.3665,north_asia,-2.082237426114749,0.5503336578162555,-0.8836982900957205,0.2249054279600158
+2013.0,2014.0,2353.0035,north_asia,-0.9064403927766193,0.5632256664521381,-0.3863861215956616,0.2336466676687554
+2014.0,2015.0,2342.6405,north_asia,-0.7676348462089759,0.5665440381989155,-0.3286653160182816,0.2352461601417673
+2015.0,2016.0,2332.2775,north_asia,-1.9092539350345972,0.578671943989981,-0.8210853690566785,0.2375356175403869
+2016.0,2017.0,2321.9145,north_asia,-1.0968359067228153,0.5699045112972384,-0.4738056959762406,0.2360857122049479
+2017.0,2018.0,2311.5515,north_asia,-2.229459832807573,0.5802175682894745,-0.9673884998110736,0.2369800852580313
+2018.0,2019.0,2301.1885,north_asia,-1.4296283286683342,0.5770101437116635,-0.6231258843095254,0.2382938770019798
+2019.0,2020.0,2290.8255,north_asia,-0.8149763258916679,0.551439985831076,-0.356827096488514,0.2288743209514384
+2020.0,2021.0,2280.4625,north_asia,-1.0545339240245566,0.6479196117270417,-0.4638125139790883,0.2687609048907057
+2021.0,2022.0,2270.0995,north_asia,-1.2541491015757211,0.6493331246844912,-0.5541267553189984,0.2689804421564722
+2022.0,2023.0,2259.7365,north_asia,-2.084194149188092,1.143432150387618,-0.9250926140395432,0.4739003462856356
+2023.0,2024.0,2249.3735,north_asia,-2.383431710308152,1.1452951255418866,-1.0627863806836724,0.4740687462418848
diff --git a/glacier_data/11_central_europe.csv b/glacier_data/11_central_europe.csv
new file mode 100644
index 0000000000000000000000000000000000000000..bd1f9847b9b1ed4c2d0cb2874a6a7f9927e64956
--- /dev/null
+++ b/glacier_data/11_central_europe.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,2140.639,central_europe,-0.5934003711822097,0.6009122609745883,-0.2780412432778796,0.2877558756683069
+2001.0,2002.0,2121.1834,central_europe,0.4019665729881813,0.43422767182019,0.1900713070317529,0.2079672547923675
+2002.0,2003.0,2101.7278,central_europe,-0.7554326466468112,0.4131614181633634,-0.3605156499993134,0.1972606323468862
+2003.0,2004.0,2082.2722,central_europe,-4.0975870621061805,0.4666085336252875,-1.9737653955826773,0.2009964215508334
+2004.0,2005.0,2062.8166,central_europe,-1.4388937785429576,0.4052201289287214,-0.6996373060453491,0.1911960977374946
+2005.0,2006.0,2043.3609999999999,central_europe,-1.8171159119364328,0.3967507632924834,-0.8919538265265944,0.185167216048449
+2006.0,2007.0,2023.9054,central_europe,-2.3588428656706264,0.4113774504090245,-1.1689976654708405,0.188954974992967
+2007.0,2008.0,2004.4497999999999,central_europe,-1.5790536047853114,0.3998663881665397,-0.7901445173856915,0.1879416409450789
+2008.0,2009.0,1984.9942,central_europe,-1.5093602965005972,0.4222234187900853,-0.7626732624750852,0.1991750171850177
+2009.0,2010.0,1965.5386,central_europe,-1.5827261116565263,0.4393865775364854,-0.8076608505112504,0.2072188617200432
+2010.0,2011.0,1946.083,central_europe,-1.034331703816414,0.398186173317034,-0.5330934168399737,0.1892932158400928
+2011.0,2012.0,1926.6274,central_europe,-2.494022407325491,0.4078106827608884,-1.2983968712841736,0.186159434025528
+2012.0,2013.0,1907.1718,central_europe,-2.7965827240695345,0.4694817685252441,-1.4707629995479157,0.2148774843126121
+2013.0,2014.0,1887.7161999999998,central_europe,-0.5687006031528772,0.4564944870767174,-0.3021703361283248,0.2184411828692258
+2014.0,2015.0,1868.2606,central_europe,-0.3477905848183993,0.451926949278947,-0.186717578964476,0.2165158298651822
+2015.0,2016.0,1848.805,central_europe,-2.9636622375676023,0.4827475994928006,-1.607838564640458,0.2202794156836196
+2016.0,2017.0,1829.3494,central_europe,-1.3798379610635585,0.4567721102063791,-0.7565476178887021,0.2164867944346277
+2017.0,2018.0,1809.8937999999998,central_europe,-2.5871083005234867,0.4748642787961008,-1.4337266526145749,0.2190635878951354
+2018.0,2019.0,1790.4382,central_europe,-2.4371975090104008,0.4971035872454163,-1.3653255958889576,0.2310640492610557
+2019.0,2020.0,1770.9826,central_europe,-1.919024957544504,0.4848397371601196,-1.0868539056291902,0.2278587125306085
+2020.0,2021.0,1751.527,central_europe,-1.275594599025034,0.4984105265630102,-0.7304671282362125,0.2369982104164882
+2021.0,2022.0,1732.0714,central_europe,-1.582979860184506,0.4776207527388756,-0.9166730017324138,0.225829019772788
+2022.0,2023.0,1712.6158,central_europe,-6.237435177272426,0.7282044209005228,-3.653010668614841,0.3154975406797529
+2023.0,2024.0,1693.1602,central_europe,-4.375191438019658,0.7192057205016613,-2.5918141163147377,0.3284847569957036
diff --git a/glacier_data/12_caucasus_middle_east.csv b/glacier_data/12_caucasus_middle_east.csv
new file mode 100644
index 0000000000000000000000000000000000000000..0f3770a30fb62dbd2af5ce6d557103406c42212e
--- /dev/null
+++ b/glacier_data/12_caucasus_middle_east.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,1282.75515,caucasus_middle_east,-1.5256898932375544,0.5341164210035886,-1.1929640161209925,0.4056858681162848
+2001.0,2002.0,1275.82805,caucasus_middle_east,-0.7523721686565512,0.2997816663979696,-0.5914872908517828,0.2282378760579874
+2002.0,2003.0,1268.90095,caucasus_middle_east,0.3736522375370595,0.310850456310781,0.2953552578227448,0.2381195007360484
+2003.0,2004.0,1261.97385,caucasus_middle_east,0.3913096299000091,0.3083443211841409,0.311010478682684,0.2361506457964048
+2004.0,2005.0,1255.04675,caucasus_middle_east,0.6360925487896292,0.3221332080012991,0.5083528310759058,0.2460014374442763
+2005.0,2006.0,1248.11965,caucasus_middle_east,0.2166234935187321,0.2961202263031932,0.1740821238389793,0.2270945002864954
+2006.0,2007.0,1241.19255,caucasus_middle_east,-1.0808310207835916,0.2704380588544544,-0.8734207038185797,0.2033518293413582
+2007.0,2008.0,1234.26545,caucasus_middle_east,-1.5967452192637428,0.3109973504342477,-1.2975732804238778,0.2306652590398946
+2008.0,2009.0,1227.33835,caucasus_middle_east,-0.5404262217384886,0.2846319554419407,-0.4416486935938358,0.2174437842698564
+2009.0,2010.0,1220.41125,caucasus_middle_east,-0.4336528707431656,0.2690367155284728,-0.3564026011519403,0.2057907085417107
+2010.0,2011.0,1213.48415,caucasus_middle_east,-0.8591613718604939,0.2778774221375575,-0.7101424536081338,0.2106831749917226
+2011.0,2012.0,1206.55705,caucasus_middle_east,-0.7173569958488278,0.2980699256326609,-0.5963377715759539,0.2270806307108563
+2012.0,2013.0,1199.62995,caucasus_middle_east,-1.8119059633143595,0.3142384285775557,-1.5149321984055495,0.230911402262183
+2013.0,2014.0,1192.70285,caucasus_middle_east,-0.2524468555698191,0.2793540268735304,-0.2122963611555078,0.2141610117065099
+2014.0,2015.0,1185.77575,caucasus_middle_east,-1.3141644056080215,0.2920850704691671,-1.111608802839578,0.2184043865861738
+2015.0,2016.0,1178.84865,caucasus_middle_east,-1.5419156322181675,0.3044411268041288,-1.3119201503199795,0.2260167187025248
+2016.0,2017.0,1171.92155,caucasus_middle_east,-0.7850001980956869,0.2834659727622445,-0.6718557952539899,0.2154400867179049
+2017.0,2018.0,1164.99445,caucasus_middle_east,-0.835159306231931,0.3310436165272817,-0.7190354625307749,0.2520180075719367
+2018.0,2019.0,1158.06735,caucasus_middle_east,-0.7279796066933246,0.3574528230998834,-0.6305074718188524,0.2728881075487028
+2019.0,2020.0,1151.14025,caucasus_middle_east,-0.9227565189113288,0.3001090948682106,-0.8040142096205283,0.2275697374597438
+2020.0,2021.0,1144.21315,caucasus_middle_east,-1.5198827979446523,0.3347845918920333,-1.3323183415991893,0.2502115501631488
+2021.0,2022.0,1137.28605,caucasus_middle_east,-0.4267280863623179,0.3368468015773312,-0.3763451795882921,0.2579815819120272
+2022.0,2023.0,1130.35895,caucasus_middle_east,-0.9122480213138148,0.4835624946461259,-0.8094711864003545,0.3694376748924867
+2023.0,2024.0,1123.43185,caucasus_middle_east,-0.7397455813287596,0.4807692861578052,-0.6604508282511381,0.367855205728308
diff --git a/glacier_data/13_central_asia.csv b/glacier_data/13_central_asia.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5bffab66d3a0efd33704a4db0804792e02a79c0c
--- /dev/null
+++ b/glacier_data/13_central_asia.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,49702.3543,central_asia,2.9975381821101768,13.602258608119822,0.0604912563604096,0.2767044591854465
+2001.0,2002.0,49613.6089,central_asia,-14.36815509049936,12.801266303535042,-0.2904725049798621,0.2600156281964412
+2002.0,2003.0,49524.8635,central_asia,-10.731484657993787,12.798345532189735,-0.2173408511454381,0.2601377052145498
+2003.0,2004.0,49436.1181,central_asia,12.160601523846324,12.850242776470784,0.2467263525522605,0.2611296101843573
+2004.0,2005.0,49347.3727,central_asia,8.206079680365974,12.529275712212222,0.1667925067944912,0.254756026597588
+2005.0,2006.0,49258.6273,central_asia,3.2325794931738434,12.859307764986244,0.0658221024443991,0.2615861694868336
+2006.0,2007.0,49169.8819,central_asia,-25.270664773678984,12.778722011017765,-0.5154924907058607,0.2586934650789088
+2007.0,2008.0,49081.1365,central_asia,-21.34492309243656,12.567643553393616,-0.436199160630047,0.2547497309987812
+2008.0,2009.0,48992.3911,central_asia,-31.48646052430057,12.485617654744583,-0.6446144682395528,0.2519772786017513
+2009.0,2010.0,48903.6457,central_asia,23.07038904132115,12.982794977448638,0.4731714401963555,0.2630744478198715
+2010.0,2011.0,48814.9003,central_asia,-10.75649385006233,12.954730567358318,-0.2210157219425151,0.2633208769516786
+2011.0,2012.0,48726.1549,central_asia,4.677905826930605,12.832668637676116,0.0962928797044756,0.2610215269130811
+2012.0,2013.0,48637.4095,central_asia,-12.448555179098824,12.38624788468882,-0.2567162467555985,0.2516646552314548
+2013.0,2014.0,48548.6641,central_asia,-9.558388235951202,12.600793882425195,-0.1974750461775573,0.256163241022585
+2014.0,2015.0,48459.9187,central_asia,-2.956071807406667,12.431821317438994,-0.0611838976842785,0.2528922722986518
+2015.0,2016.0,48371.1733,central_asia,-19.779397061203014,12.763411416052037,-0.4101391892970858,0.2588752950892952
+2016.0,2017.0,48282.4279,central_asia,-1.7738837045089502,12.98186721589857,-0.036850287899768,0.264093992338661
+2017.0,2018.0,48193.6825,central_asia,-11.729947005651477,12.7270330392278,-0.2441241698816651,0.2586408015457544
+2018.0,2019.0,48104.9371,central_asia,-25.09731281921282,13.502632894589192,-0.523289974599141,0.2735056689341798
+2019.0,2020.0,48016.1917,central_asia,-20.872552300354226,12.931279821236304,-0.4360062227817344,0.2622128741092664
+2020.0,2021.0,47927.4463,central_asia,4.568755389673656,12.875546575333429,0.0956133333223047,0.2618959640611981
+2021.0,2022.0,47838.7009,central_asia,-11.633133913436737,17.499856769876416,-0.2439058358380714,0.3558164017008777
+2022.0,2023.0,47749.9555,central_asia,-40.61362594960092,18.95295451369369,-0.8531072547271961,0.3833550749370691
+2023.0,2024.0,47661.2101,central_asia,-40.1200731250466,18.813340791317803,-0.8443091442107833,0.3805524099644328
diff --git a/glacier_data/14_south_asia_west.csv b/glacier_data/14_south_asia_west.csv
new file mode 100644
index 0000000000000000000000000000000000000000..3a5e582f756024d81de15fc06ecfbac7165575ff
--- /dev/null
+++ b/glacier_data/14_south_asia_west.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,33507.5776,south_asia_west,6.851964677244642,9.262411269403446,0.2051053199536034,0.276570688173286
+2001.0,2002.0,33386.7328,south_asia_west,-4.64241326904263,7.977766708936824,-0.1394680469090855,0.2382740783384383
+2002.0,2003.0,33265.888,south_asia_west,-2.352745468347903,7.767363942734289,-0.0709382819775451,0.2320615647961203
+2003.0,2004.0,33145.0432,south_asia_west,-13.091190343162353,7.948071287325642,-0.3961552262943089,0.2366809815458294
+2004.0,2005.0,33024.1984,south_asia_west,-11.446097131719313,7.656436904146613,-0.3476401942874471,0.2281336850467191
+2005.0,2006.0,32903.3536,south_asia_west,4.807317498760151,7.162216286356067,0.1465438114886275,0.2138858717126563
+2006.0,2007.0,32782.5088,south_asia_west,-23.39682475507553,7.153717839152524,-0.715845958512445,0.2108750617770052
+2007.0,2008.0,32661.664,south_asia_west,-20.770993357775385,6.947664078299761,-0.6378576988390201,0.2052631736287435
+2008.0,2009.0,32540.8192,south_asia_west,-15.082436168591911,7.219169733217031,-0.4648874859141326,0.2145280433070819
+2009.0,2010.0,32419.9744,south_asia_west,9.726773430882623,7.774406202181495,0.3009268741294648,0.2318436332203859
+2010.0,2011.0,32299.1296,south_asia_west,8.545261399182058,7.461524248546874,0.2653623929899493,0.2225838979918782
+2011.0,2012.0,32178.2848,south_asia_west,7.573331993465979,7.420272297090443,0.2360635565799196,0.2214282283926683
+2012.0,2013.0,32057.44,south_asia_west,-7.838206686315059,6.961496332973971,-0.2452407947266708,0.2076790404320982
+2013.0,2014.0,31936.5952,south_asia_west,-12.28292520262717,7.145590003205553,-0.3857607481338138,0.2127195721543782
+2014.0,2015.0,31815.7504,south_asia_west,-0.6933992166120448,6.993684942578593,-0.0218597916091566,0.2089681522803515
+2015.0,2016.0,31694.9056,south_asia_west,-0.9024996256509292,7.083757272243927,-0.0285602766226672,0.2116577790781218
+2016.0,2017.0,31574.0608,south_asia_west,-10.96446277745992,7.477681157988901,-0.3483066436259154,0.2228311992339319
+2017.0,2018.0,31453.216,south_asia_west,-2.3260157023337524,7.304017322445805,-0.074174124088725,0.2182157573670954
+2018.0,2019.0,31332.3712,south_asia_west,-3.924469396591872,7.358358141701729,-0.1256297586339628,0.2197889353135883
+2019.0,2020.0,31211.5264,south_asia_west,4.378411912846257,8.15168415770309,0.1407040019953926,0.2434837871452853
+2020.0,2021.0,31090.6816,south_asia_west,5.577242329699477,8.046897458142928,0.1799260780087948,0.2402962007209694
+2021.0,2022.0,30969.8368,south_asia_west,-9.815571924051932,10.792231609503926,-0.3178934170485942,0.32213736997399
+2022.0,2023.0,30848.992,south_asia_west,-34.3384991492528,13.96238444044143,-1.1164651546190605,0.4140286390696801
+2023.0,2024.0,30728.1472,south_asia_west,-8.254232398376997,13.74011743408555,-0.2694295088250096,0.4103683109101171
diff --git a/glacier_data/15_south_asia_east.csv b/glacier_data/15_south_asia_east.csv
new file mode 100644
index 0000000000000000000000000000000000000000..bee8e16bee599fada34accf6f4d5284c6021595e
--- /dev/null
+++ b/glacier_data/15_south_asia_east.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,14907.1245,south_asia_east,-2.327916651477616,5.478577160246203,-0.1566312413721902,0.3728669767408168
+2001.0,2002.0,14837.8747,south_asia_east,-8.137158352811356,5.297867355594772,-0.5500547381397778,0.3595843599372022
+2002.0,2003.0,14768.6249,south_asia_east,-6.998749077267797,5.2984576149315705,-0.4753190327676427,0.3599021000268251
+2003.0,2004.0,14699.3751,south_asia_east,-8.198889903697747,5.3297633827095385,-0.5594496724866971,0.3617459092622265
+2004.0,2005.0,14630.1253,south_asia_east,-8.98001140526133,5.390556783969636,-0.6156497171469637,0.3656840434382815
+2005.0,2006.0,14560.8755,south_asia_east,-5.8649778560322,5.331118780068185,-0.4040021998149696,0.3623635463025686
+2006.0,2007.0,14491.6257,south_asia_east,-10.705225792838034,5.330634260539739,-0.740940894378711,0.3610459971910599
+2007.0,2008.0,14422.375900000001,south_asia_east,-5.000839525910631,5.339591824794993,-0.3477850821703412,0.363091047201434
+2008.0,2009.0,14353.1261,south_asia_east,-5.511233648377613,5.325547088289289,-0.3851298359091711,0.362048073552001
+2009.0,2010.0,14283.8763,south_asia_east,-6.207572947749696,5.2792950995509615,-0.4358937008477362,0.3587635010514385
+2010.0,2011.0,14214.6265,south_asia_east,-4.663836245068104,5.284357474628559,-0.3290884818276441,0.3593793285545597
+2011.0,2012.0,14145.3767,south_asia_east,0.8262841166758295,5.286064056891564,0.0585894915021745,0.3598349415723019
+2012.0,2013.0,14076.1269,south_asia_east,-9.263476118598678,5.270056695685486,-0.6600786022400804,0.3573679890146167
+2013.0,2014.0,14006.8771,south_asia_east,-4.762808642776319,5.430590923475173,-0.3410567558249808,0.3693289032395563
+2014.0,2015.0,13937.6273,south_asia_east,-7.233284672588605,5.320519997990309,-0.5205369368755304,0.361353753021102
+2015.0,2016.0,13868.3775,south_asia_east,-6.492342790490154,5.3590451850896,-0.4695486855450435,0.3641441850391824
+2016.0,2017.0,13799.127700000001,south_asia_east,-3.767927807121404,5.296852272899367,-0.2738771381855682,0.3603521850804552
+2017.0,2018.0,13729.8779,south_asia_east,-17.122102144399964,6.222615527630999,-1.2508212482676402,0.4195730174854195
+2018.0,2019.0,13660.6281,south_asia_east,-4.530994315133016,5.395884008163018,-0.3326807644907786,0.366997966307237
+2019.0,2020.0,13591.3783,south_asia_east,-8.507998145090227,5.343388879407178,-0.6278685467768913,0.3625937138609445
+2020.0,2021.0,13522.1285,south_asia_east,-5.707608395472385,5.4117991791636335,-0.4233640246580628,0.3678927006155137
+2021.0,2022.0,13452.878700000001,south_asia_east,-4.153046594747883,7.938420838696924,-0.3096395438710932,0.540218762755367
+2022.0,2023.0,13383.6289,south_asia_east,-15.619011518634077,8.923206806807814,-1.1705352609766329,0.6051115944085789
+2023.0,2024.0,13314.3791,south_asia_east,-17.589780221019534,8.953095982384424,-1.3250868263213045,0.6065293659463733
diff --git a/glacier_data/16_low_latitudes.csv b/glacier_data/16_low_latitudes.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2f701d40fc6971a31ea057706a3856fdaa517eaa
--- /dev/null
+++ b/glacier_data/16_low_latitudes.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,2354.92895,low_latitudes,0.3705258618555614,0.5346473022213154,0.157814011419829,0.228933800352463
+2001.0,2002.0,2327.07105,low_latitudes,-0.3070070498935514,0.5172510572472317,-0.1323255009428327,0.2215202773884822
+2002.0,2003.0,2299.21315,low_latitudes,-1.2859863528499784,0.5250969807283328,-0.5609988445881208,0.2232863959982013
+2003.0,2004.0,2271.35525,low_latitudes,-1.5816633780124076,0.4893433831894396,-0.6984476100558282,0.2069046767967312
+2004.0,2005.0,2243.49735,low_latitudes,-2.4619022051780592,0.4967700282785205,-1.100652129401808,0.2062049127766357
+2005.0,2006.0,2215.63945,low_latitudes,-2.769504894430206,0.4947088906345829,-1.253741176010918,0.2034866435691645
+2006.0,2007.0,2187.78155,low_latitudes,-0.6472329547886849,0.453868358783612,-0.2967300351707955,0.1939664213532102
+2007.0,2008.0,2159.92365,low_latitudes,0.2943631715954311,0.4533688289494152,0.1366941458094977,0.1941449555565516
+2008.0,2009.0,2132.06575,low_latitudes,1.0742074293211157,0.4546635712035953,0.5053501509354559,0.1934380523884974
+2009.0,2010.0,2104.2078500000002,low_latitudes,-1.8409386137271275,0.4694606379390745,-0.8775169467553976,0.1972377637248387
+2010.0,2011.0,2076.34995,low_latitudes,-1.8410246444614369,0.4540162630694458,-0.8893319440077325,0.1904846125109849
+2011.0,2012.0,2048.49205,low_latitudes,-0.1241596044782535,0.4465345728623108,-0.0607926225979373,0.1913006929043157
+2012.0,2013.0,2020.6341499999999,low_latitudes,-0.0184015312558621,0.4444848617975117,-0.0091342126241642,0.1904405696905319
+2013.0,2014.0,1992.77625,low_latitudes,-0.5516197398382917,0.4911311260759708,-0.2776425996516236,0.2100946439094557
+2014.0,2015.0,1964.91835,low_latitudes,-0.239795478092252,0.4889898652342481,-0.1224056099734584,0.2094463020263459
+2015.0,2016.0,1937.06045,low_latitudes,-1.6897583338338864,0.500517508508474,-0.8749561029038354,0.2113710409333535
+2016.0,2017.0,1909.20255,low_latitudes,-2.36942463411635,0.5050237682774874,-1.244788981141562,0.2103411186413965
+2017.0,2018.0,1881.34465,low_latitudes,-0.6457522446867621,0.5558366147801133,-0.3442725556313132,0.2377478680751023
+2018.0,2019.0,1853.48675,low_latitudes,-0.1008118792306184,0.6414614071574477,-0.0545540586709532,0.2748277306916271
+2019.0,2020.0,1825.62885,low_latitudes,-0.900957994194518,0.6712927059312396,-0.4949905350137911,0.2869691962872982
+2020.0,2021.0,1797.77095,low_latitudes,-0.562694930155122,0.948935574874308,-0.3139377096055741,0.4063957799277559
+2021.0,2022.0,1769.91305,low_latitudes,0.0949249570660994,1.3349790454063797,0.053793935714863,0.5719724779712119
+2022.0,2023.0,1742.0551500000001,low_latitudes,0.0057083128047794,1.4142485234769082,0.0032866291704928,0.6059393450220042
+2023.0,2024.0,1714.1972500000002,low_latitudes,-2.3020962323277,1.9925253299197072,-1.3469997704373884,0.8522782557620759
diff --git a/glacier_data/17_southern_andes.csv b/glacier_data/17_southern_andes.csv
new file mode 100644
index 0000000000000000000000000000000000000000..0336cb75131cdae1428b9886066fc82d65baa3f2
--- /dev/null
+++ b/glacier_data/17_southern_andes.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,29402.5139,southern_andes,1.6621530202778638,40.09978572586517,0.0567010864920992,1.3666913821962534
+2001.0,2002.0,29349.5417,southern_andes,-13.891168790717536,39.98689045112812,-0.4747252218183336,1.3626409786393447
+2002.0,2003.0,29296.5695,southern_andes,-4.276535598304034,31.99366956425893,-0.1464131767964585,1.0903945998300746
+2003.0,2004.0,29243.5973,southern_andes,-27.16845138254913,31.62169392415089,-0.9318348118722956,1.0767462436447068
+2004.0,2005.0,29190.6251,southern_andes,2.950386466804427,33.43610211740283,0.1013772144120057,1.1395693311838286
+2005.0,2006.0,29137.6529,southern_andes,-49.94872117965508,32.49739236357843,-1.7193910026417452,1.1043114675484875
+2006.0,2007.0,29084.6807,southern_andes,-25.498355751885686,31.467914845836017,-0.8793316749346434,1.0716194145881497
+2007.0,2008.0,29031.7085,southern_andes,-34.04845631063346,31.689762903926432,-1.1763313563770008,1.0785014487142162
+2008.0,2009.0,28978.7363,southern_andes,-24.53194697778392,31.821476455445747,-0.8490972144494688,1.0837441928380966
+2009.0,2010.0,28925.7641,southern_andes,6.37479807413442,31.30006389621053,0.2210479208802284,1.0667239385800849
+2010.0,2011.0,28872.7919,southern_andes,-48.57203133766705,31.20220977664176,-1.687338933626059,1.0602179969833798
+2011.0,2012.0,28819.8197,southern_andes,-60.086977800912216,26.95585631552635,-2.0911921646874583,0.9129944853533032
+2012.0,2013.0,28766.8475,southern_andes,-26.839376086207103,25.51747696661394,-0.9358041925064672,0.868491687338202
+2013.0,2014.0,28713.8753,southern_andes,7.61001311639548,25.398830645018155,0.2658266002830811,0.8655543012579553
+2014.0,2015.0,28660.9031,southern_andes,4.985710861841842,25.789676607401983,0.1744785564989532,0.8789313255613701
+2015.0,2016.0,28607.9309,southern_andes,-37.60738322194243,26.956754246306343,-1.3185345346493396,0.9165111860790248
+2016.0,2017.0,28554.9587,southern_andes,-67.135862594548,28.34976142048762,-2.358185032963037,0.959428867336088
+2017.0,2018.0,28501.9865,southern_andes,-22.636310348294185,25.603237901943995,-0.7965909189926688,0.8717650854945556
+2018.0,2019.0,28449.0143,southern_andes,-40.53808128665813,25.94977050271366,-1.4292256681480646,0.881726695833653
+2019.0,2020.0,28396.0421,southern_andes,-28.156311429256267,28.340548702909857,-0.9945412263230456,0.9647195865873284
+2020.0,2021.0,28343.0699,southern_andes,-27.999018663858664,35.820039400687854,-0.9908336876827328,1.2198978217195289
+2021.0,2022.0,28290.0977,southern_andes,-24.094368057838505,43.24273954227486,-0.8542518629700595,1.4732414613178697
+2022.0,2023.0,28237.1255,southern_andes,-41.30439245425599,47.95914134907887,-1.4671705336906609,1.6330432871909653
+2023.0,2024.0,28184.1533,southern_andes,-50.03848428365572,47.54480191289456,-1.780754273642474,1.61819269968553
diff --git a/glacier_data/18_new_zealand.csv b/glacier_data/18_new_zealand.csv
new file mode 100644
index 0000000000000000000000000000000000000000..cb5ba70ed08b964b00d8e874059b746bcef5bd5b
--- /dev/null
+++ b/glacier_data/18_new_zealand.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,981.5995,new_zealand,0.0879743435703125,0.5917289805148116,0.0898931394653015,0.5107513858148645
+2001.0,2002.0,973.5817,new_zealand,-0.94077364134553,0.6310131979549193,-0.96920931721463,0.5431591794045684
+2002.0,2003.0,965.5639,new_zealand,-1.020883713895824,0.6429659917476624,-1.060474175388845,0.5532402934275195
+2003.0,2004.0,957.5461,new_zealand,-1.4815955888514936,0.666833418053626,-1.5519396404014374,0.5720309054022729
+2004.0,2005.0,949.5283000000001,new_zealand,-0.534730129084154,0.5203010387611173,-0.5648479845453,0.4485173553901526
+2005.0,2006.0,941.5105,new_zealand,0.1857570750016101,0.467644549311449,0.1978905419226048,0.4035793331168855
+2006.0,2007.0,933.4927,new_zealand,0.8406476913557156,0.5402074032023204,0.9032499375997152,0.4648797474144066
+2007.0,2008.0,925.4748999999999,new_zealand,-0.5992142058732299,0.67534105918383,-0.6494149734867671,0.5823633948807986
+2008.0,2009.0,917.4571,new_zealand,-2.1815863332370538,0.6538954777020072,-2.385017005802053,0.5565174671799532
+2009.0,2010.0,909.4393,new_zealand,-0.1010482490554054,0.5867978499081477,-0.1114448275693885,0.5064902957687418
+2010.0,2011.0,901.4214999999999,new_zealand,-1.489786079497439,0.6848185589572584,-1.6576805480631496,0.5876107819897949
+2011.0,2012.0,893.4037000000001,new_zealand,-1.8505679072267331,0.6501157133600923,-2.077600883201244,0.5554507115523012
+2012.0,2013.0,885.3859,new_zealand,-0.2441112063576637,0.5695291275046163,-0.2765412726681429,0.4914902400830283
+2013.0,2014.0,877.3681,new_zealand,0.0497800113362103,0.5597612749575636,0.0569086119479675,0.4831670063638937
+2014.0,2015.0,869.3503000000001,new_zealand,-0.2056041796257262,0.5558625201204962,-0.2372149042454311,0.479724414282972
+2015.0,2016.0,861.3325,new_zealand,-0.1545894695964328,0.6856278160308884,-0.1800171635192258,0.591778990383012
+2016.0,2017.0,853.3147,new_zealand,-1.3500601973377886,0.6161128462469087,-1.5868970322823306,0.5286114578306013
+2017.0,2018.0,845.2969,new_zealand,-0.5357355420070528,0.7189885870435461,-0.6356909445206018,0.6201819115796665
+2018.0,2019.0,837.2791,new_zealand,-2.020976853697841,0.8250098284441189,-2.421006361894361,0.7067658328912777
+2019.0,2020.0,829.2613,new_zealand,-1.8455830286413584,0.7683584298466601,-2.2322715867184737,0.6584270724927886
+2020.0,2021.0,821.2435,new_zealand,-1.3979458572570234,0.7189742168527151,-1.7073527086663358,0.617660650032283
+2021.0,2022.0,813.2257,new_zealand,-0.0666513400570155,0.9327021431578773,-0.0822058325803627,0.8050797741487655
+2022.0,2023.0,805.2079,new_zealand,-1.8364658742589812,0.9694595669524252,-2.287597836295951,0.8330509638861755
+2023.0,2024.0,797.1901,new_zealand,-1.2971385849938588,0.915939434460759,-1.6320344546730214,0.7886312255365956
diff --git a/glacier_data/19_antarctic_and_subantarctic.csv b/glacier_data/19_antarctic_and_subantarctic.csv
new file mode 100644
index 0000000000000000000000000000000000000000..151f8b3482e6284cc5ccd75bcbd66ab0f1550a2d
--- /dev/null
+++ b/glacier_data/19_antarctic_and_subantarctic.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,127665.25695,antarctic_and_subantarctic,-18.995791012237024,55.08026072784176,-0.1492414640992307,0.4157374254838302
+2001.0,2002.0,127306.51605,antarctic_and_subantarctic,-31.129658086054757,53.47723243260334,-0.2452610364264661,0.4035270065256567
+2002.0,2003.0,126947.77515,antarctic_and_subantarctic,-16.125234566354507,54.28703506190431,-0.1274047994519427,0.409766011449231
+2003.0,2004.0,126589.03425,antarctic_and_subantarctic,-29.725715486761946,38.141852438751904,-0.2355272014382316,0.287713020149573
+2004.0,2005.0,126230.29334999999,antarctic_and_subantarctic,10.490007275767162,37.79291875859271,0.0833521947268958,0.2852701420831864
+2005.0,2006.0,125871.55245,antarctic_and_subantarctic,-0.2061686008879221,40.36237708961583,-0.0016428570536097,0.3046943729820781
+2006.0,2007.0,125512.81155,antarctic_and_subantarctic,-82.18509811946437,39.66497333125076,-0.6567647898839575,0.2978185128188883
+2007.0,2008.0,125154.07065,antarctic_and_subantarctic,-11.470246634669804,38.17883128629401,-0.0919247840495395,0.2881783410682529
+2008.0,2009.0,124795.32975,antarctic_and_subantarctic,-9.881790656837852,38.91017947159705,-0.0794222448259163,0.2937081040695881
+2009.0,2010.0,124436.58885,antarctic_and_subantarctic,-20.936619711003868,38.1472073897723,-0.1687575877864798,0.2878636827253949
+2010.0,2011.0,124077.84795,antarctic_and_subantarctic,54.21030700577958,38.65199727371667,0.4382202640196784,0.2910644458993552
+2011.0,2012.0,123719.10704999999,antarctic_and_subantarctic,-23.802465555915493,38.415496505553065,-0.1929700948271887,0.2898582392998091
+2012.0,2013.0,123360.36615,antarctic_and_subantarctic,-7.772400110473913,37.8848645988477,-0.063195236170208,0.2859766677595218
+2013.0,2014.0,123001.62525,antarctic_and_subantarctic,-50.85851340701423,38.22463497018672,-0.4147225530352715,0.2879173926747373
+2014.0,2015.0,122642.88435000001,antarctic_and_subantarctic,20.7809251461336,37.3194935400524,0.1699524242530717,0.2816145322009629
+2015.0,2016.0,122284.14345,antarctic_and_subantarctic,3.1301780762685625,37.44048198949635,0.0256746032501989,0.2826346143761225
+2016.0,2017.0,121925.40255,antarctic_and_subantarctic,32.89845255203744,38.232161340406,0.2706363415381443,0.2883461956685147
+2017.0,2018.0,121566.66165,antarctic_and_subantarctic,-47.9765486112687,39.08530865491247,-0.3958397038478239,0.2944976047514639
+2018.0,2019.0,121207.92075,antarctic_and_subantarctic,-26.68093690435365,37.37653091461051,-0.2207877208062065,0.2819745399160574
+2019.0,2020.0,120849.17985,antarctic_and_subantarctic,45.08614127117214,39.50329539223523,0.3742003607089095,0.2977232362651528
+2020.0,2021.0,120490.43895,antarctic_and_subantarctic,-77.34985364357878,41.07037544759855,-0.6438901055055252,0.3086613434056207
+2021.0,2022.0,120131.69805,antarctic_and_subantarctic,-31.329553932028546,41.89878316579056,-0.2615781339840414,0.3160715321041902
+2022.0,2023.0,119772.95715,antarctic_and_subantarctic,-47.739787569614585,45.09507993888022,-0.3997850518401797,0.3399441788771001
+2023.0,2024.0,119414.21625,antarctic_and_subantarctic,-60.08931641518733,64.35166346523269,-0.5047148378832496,0.4852590435105063
diff --git a/glacier_data/1_alaska.csv b/glacier_data/1_alaska.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7d14f2b83998bd8e10d6f840e7fd908bfdc8e6f2
--- /dev/null
+++ b/glacier_data/1_alaska.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,89847.1,alaska,45.88379869548132,50.97137265990765,0.5122242597518045,0.5889067195856142
+2001.0,2002.0,89430.82,alaska,-27.10431231414758,45.315105856652586,-0.3039877071899747,0.5238527511556423
+2002.0,2003.0,89014.54,alaska,-49.090521732004326,43.73940940981681,-0.5531482434367275,0.5050664792014296
+2003.0,2004.0,88598.26,alaska,-60.38343349383753,32.762711072604006,-0.6835927576961328,0.3773014296801541
+2004.0,2005.0,88181.98,alaska,-139.61243654977957,34.0179893706625,-1.587994895921324,0.3850590263517239
+2005.0,2006.0,87765.7,alaska,-75.9364588983793,34.00214171122874,-0.8678214126892201,0.3907888797724588
+2006.0,2007.0,87349.42,alaska,-33.62467247388402,33.41346150038564,-0.3861027357016897,0.3859504506333436
+2007.0,2008.0,86933.14,alaska,-49.64964952566811,33.02440892276953,-0.5728430684278183,0.3808597452132063
+2008.0,2009.0,86516.86,alaska,36.92273833725146,32.58004055973452,0.4280534436504274,0.3761956743143984
+2009.0,2010.0,86100.58,alaska,-91.88170145027088,32.24465731114693,-1.0703548800508138,0.3691178034732737
+2010.0,2011.0,85684.3,alaska,-73.86920837996944,32.343385894189225,-0.8647031349786927,0.3716170832318943
+2011.0,2012.0,85268.02,alaska,-45.5027751725263,29.157521312501565,-0.5352498422655079,0.3361901459132969
+2012.0,2013.0,84851.74,alaska,55.42475171089546,30.148080936014395,0.6551607107852443,0.3471983372878921
+2013.0,2014.0,84435.46,alaska,-119.81656842938212,29.00415627332505,-1.4233012969736627,0.3282110128846671
+2014.0,2015.0,84019.18,alaska,-96.90050239940116,28.81743768287512,-1.1567844227390354,0.3285408285541129
+2015.0,2016.0,83602.9,alaska,-73.32394274102282,28.97833324745177,-0.879689298701769,0.3324529143498325
+2016.0,2017.0,83186.62,alaska,-92.27650551738216,30.48923159059384,-1.112608830860618,0.3485592328227158
+2017.0,2018.0,82770.34,alaska,-83.06911803362412,27.636962973575063,-1.0066296122427711,0.3160022218517191
+2018.0,2019.0,82354.06,alaska,-108.99297703385028,28.924411356939945,-1.3274505209993352,0.3285311496484349
+2019.0,2020.0,81937.78,alaska,-144.96724967946653,31.31208913455925,-1.7745594286255435,0.3523003152746206
+2020.0,2021.0,81521.5,alaska,-49.20877235678205,34.77656659343751,-0.6054457153688091,0.4011968972178538
+2021.0,2022.0,81105.22,alaska,-31.22685347401838,34.534193732586914,-0.3861750935609784,0.3989932363358637
+2022.0,2023.0,80688.94,alaska,-64.91355586052026,36.826519796080056,-0.8069121060215241,0.424255912990561
+2023.0,2024.0,80272.66,alaska,-100.73996979950844,54.88197386901296,-1.2587486087641648,0.632052865019273
diff --git a/glacier_data/2_western_canada_us.csv b/glacier_data/2_western_canada_us.csv
new file mode 100644
index 0000000000000000000000000000000000000000..099edc4a3159c9ed1f4f21c0416d59d0235722b9
--- /dev/null
+++ b/glacier_data/2_western_canada_us.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,14563.2148,western_canada_us,6.971917908706984,7.770347074198091,0.4801753386554795,0.5360700473304427
+2001.0,2002.0,14484.7852,western_canada_us,-1.6612808463881623,5.303001415060549,-0.115036547828441,0.3661736265380721
+2002.0,2003.0,14406.3556,western_canada_us,2.0771861792514,6.15785539194263,0.1446192601769147,0.4251931970750917
+2003.0,2004.0,14327.926,western_canada_us,-17.056030773498726,5.474498668109094,-1.1939866825104142,0.3734466454119415
+2004.0,2005.0,14249.4964,western_canada_us,-16.80729443592748,5.098743955840538,-1.1830500929175032,0.347297298648853
+2005.0,2006.0,14171.0668,western_canada_us,-21.028659163977256,5.243764511689932,-1.4883801810096542,0.3547734336073986
+2006.0,2007.0,14092.6372,western_canada_us,-8.342113934146381,5.466772582464278,-0.5937295810672717,0.3764279011476983
+2007.0,2008.0,14014.2076,western_canada_us,1.7805033372420636,5.552152255552618,0.1274321724763139,0.3833753034934106
+2008.0,2009.0,13935.778,western_canada_us,3.3868051381654745,5.504732963272803,0.2437607808150438,0.379969961381111
+2009.0,2010.0,13857.3484,western_canada_us,-12.903706819800696,5.4242856469661485,-0.9339834757326232,0.3719350392218095
+2010.0,2011.0,13778.9188,western_canada_us,6.207456521254985,5.395873637429762,0.4518594685406727,0.3720152371686145
+2011.0,2012.0,13700.4892,western_canada_us,12.22074313575233,5.865486060445464,0.8946772267665255,0.4028590751552044
+2012.0,2013.0,13622.0596,western_canada_us,1.0773388501318926,5.4324703928133085,0.0793257865284641,0.3751410746323647
+2013.0,2014.0,13543.63,western_canada_us,-16.240657004636397,4.116542259273677,-1.2027444327245012,0.2786973168327323
+2014.0,2015.0,13465.2004,western_canada_us,-18.67077997041907,4.10333494994411,-1.3907673333237582,0.2759400863487337
+2015.0,2016.0,13386.7708,western_canada_us,-28.95006204561516,3.9570944448424368,-2.169094698051759,0.2543324559840723
+2016.0,2017.0,13308.341199999999,western_canada_us,-8.864805714406188,3.834622506304549,-0.6681133299220492,0.2630391524026073
+2017.0,2018.0,13229.9116,western_canada_us,-4.836844783972129,3.8206528631956047,-0.3666992741595396,0.2633203269213112
+2018.0,2019.0,13151.482,western_canada_us,-8.838275285155387,3.6040232205551264,-0.6740586266125677,0.2470111787232015
+2019.0,2020.0,13073.0524,western_canada_us,-12.641308163481227,3.749470174141536,-0.9698841413721778,0.2552280312239809
+2020.0,2021.0,12994.6228,western_canada_us,-11.421484744557484,4.360827162444375,-0.8815840580968515,0.2985597391276979
+2021.0,2022.0,12916.1932,western_canada_us,-21.53130021966725,4.240476025698885,-1.672016526132686,0.283247273278867
+2022.0,2023.0,12837.7636,western_canada_us,-12.492387413580618,4.953338050467668,-0.9760249320697468,0.3393406442048285
+2023.0,2024.0,12759.333999999999,western_canada_us,-33.28211098254605,8.20220532634242,-2.616300957072955,0.5546535170279333
diff --git a/glacier_data/3_arctic_canada_north.csv b/glacier_data/3_arctic_canada_north.csv
new file mode 100644
index 0000000000000000000000000000000000000000..4e3e6589dd78b8c5395495949c8d2bc5239a0fd3
--- /dev/null
+++ b/glacier_data/3_arctic_canada_north.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,105000.63345,arctic_canada_north,-48.492413102801386,24.61363628578008,-0.4632193777214072,0.2337303111634003
+2001.0,2002.0,104927.05575,arctic_canada_north,-27.438732411778343,20.570402035249757,-0.2622897984124593,0.1958535232213091
+2002.0,2003.0,104853.47805,arctic_canada_north,2.272794777893257,18.71927441499457,0.0217411355476733,0.1786231244989666
+2003.0,2004.0,104779.90035,arctic_canada_north,-10.868112073559915,10.60807895900747,-0.1040353586966476,0.1010934132165193
+2004.0,2005.0,104706.32265,arctic_canada_north,9.330261455013746,10.070840801759664,0.0893769948896869,0.0959966199880589
+2005.0,2006.0,104632.74495,arctic_canada_north,-27.634643373576694,10.277201295551182,-0.2649055683009518,0.0971785722489175
+2006.0,2007.0,104559.16725,arctic_canada_north,-14.49033741307888,10.209223938194809,-0.1390020560896461,0.0971746583110996
+2007.0,2008.0,104485.58955,arctic_canada_north,-59.606055889383214,10.648915968014064,-0.572188111138054,0.0975552330347633
+2008.0,2009.0,104412.01185,arctic_canada_north,-59.05425797773865,10.559345915306942,-0.5672906094784383,0.0967416898766393
+2009.0,2010.0,104338.43415,arctic_canada_north,-44.75125504827651,10.522538217880888,-0.430195384397921,0.098113629688844
+2010.0,2011.0,104264.85645,arctic_canada_north,-30.430679211817186,11.217123705505449,-0.2927376202191681,0.1060487667637724
+2011.0,2012.0,104191.27875,arctic_canada_north,-83.30383705815383,12.264318449494825,-0.8019337276809586,0.1100748435976027
+2012.0,2013.0,104117.70105,arctic_canada_north,-72.92247186119154,11.314321234997632,-0.7024924370806889,0.1022058080659538
+2013.0,2014.0,104044.12335,arctic_canada_north,7.95057993093942,10.05571359062613,0.0766453998986307,0.0958804225274752
+2014.0,2015.0,103970.54565,arctic_canada_north,-18.520099173347603,10.295458005816563,-0.1786643182179695,0.0978449765793506
+2015.0,2016.0,103896.96795,arctic_canada_north,-52.64644712831746,11.40563559537043,-0.508242567183192,0.1058986588860505
+2016.0,2017.0,103823.39025,arctic_canada_north,-24.18813350213283,10.667766016672696,-0.2336748606693229,0.1011395726357474
+2017.0,2018.0,103749.81255,arctic_canada_north,6.945037312449323,10.1698508645907,0.067141664612123,0.0969879855691196
+2018.0,2019.0,103676.23485,arctic_canada_north,14.803773171172445,10.16628960815724,0.1432181458656539,0.0967531216960545
+2019.0,2020.0,103602.65715,arctic_canada_north,-58.8923231836455,11.265762722417737,-0.5701546022459565,0.1037650472645306
+2020.0,2021.0,103529.07945,arctic_canada_north,-54.56558148027142,10.682792272718984,-0.5286415283841236,0.0985587561036122
+2021.0,2022.0,103455.50175,arctic_canada_north,-2.239494795578432,10.465258776084385,-0.0217120738681897,0.0998577518759501
+2022.0,2023.0,103381.92405,arctic_canada_north,-37.476242418283874,12.149010669089307,-0.3635936339165448,0.1145432517219781
+2023.0,2024.0,103308.34635,arctic_canada_north,-44.019049041281086,17.25111324799982,-0.4273759585924965,0.1632713966012603
diff --git a/glacier_data/4_arctic_canada_south.csv b/glacier_data/4_arctic_canada_south.csv
new file mode 100644
index 0000000000000000000000000000000000000000..df8e76d0139f868181ea795171c59496367fa520
--- /dev/null
+++ b/glacier_data/4_arctic_canada_south.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,40871.6448,arctic_canada_south,-31.828658494953373,19.01202496888099,-0.7810899695018965,0.464740462916506
+2001.0,2002.0,40838.9344,arctic_canada_south,-22.03994632267151,16.849655046641296,-0.5413036711855436,0.4124479714691877
+2002.0,2003.0,40806.224,arctic_canada_south,-5.5967058673044985,15.24414578075768,-0.1375659386378159,0.373885722658753
+2003.0,2004.0,40773.5136,arctic_canada_south,-8.486024053557571,8.946814501292303,-0.2087521525186098,0.2192241867067371
+2004.0,2005.0,40740.8032,arctic_canada_south,-1.4671494901073976,8.59092279276655,-0.0361201563806028,0.2107331971725344
+2005.0,2006.0,40708.0928,arctic_canada_south,-24.2248536106406,8.725038571651284,-0.5968775538212927,0.2119583882585402
+2006.0,2007.0,40675.3824,arctic_canada_south,-17.097984159188556,8.645932099210997,-0.4216169939820462,0.2110509425988943
+2007.0,2008.0,40642.672,arctic_canada_south,-33.1540408077942,8.83618271629957,-0.81819921225744,0.2129086895089758
+2008.0,2009.0,40609.9616,arctic_canada_south,-37.1628977737753,8.797203770357678,-0.917871390934634,0.2109323021447836
+2009.0,2010.0,40577.2512,arctic_canada_south,-36.847830118826685,8.868505347550203,-0.91082330972531,0.2128038512392997
+2010.0,2011.0,40544.5408,arctic_canada_south,-29.970014139117,9.346079604885425,-0.7414116458136544,0.2262992912443442
+2011.0,2012.0,40511.8304,arctic_canada_south,-41.75154929339208,9.168044648899084,-1.0337025116470615,0.2189902013587939
+2012.0,2013.0,40479.12,arctic_canada_south,-38.5652621599766,9.021169077331509,-0.955586635238395,0.2161806777361513
+2013.0,2014.0,40446.4096,arctic_canada_south,-9.379093521828558,8.627619895231184,-0.2325871581994081,0.2113282088759408
+2014.0,2015.0,40413.6992,arctic_canada_south,-14.425387850746011,8.662105003298494,-0.3580170714351818,0.2117491125998163
+2015.0,2016.0,40380.9888,arctic_canada_south,-27.71112564848519,8.874598208655275,-0.6883067998575911,0.2150299999338045
+2016.0,2017.0,40348.2784,arctic_canada_south,-29.15938862497677,8.997741085196106,-0.7248668635889515,0.217803495617139
+2017.0,2018.0,40315.568,arctic_canada_south,-6.698300058839619,8.503286781702817,-0.1666466766663182,0.2084292559501653
+2018.0,2019.0,40282.8576,arctic_canada_south,-1.1632489212322985,8.567773169735982,-0.0289639126480072,0.2101681622145529
+2019.0,2020.0,40250.1472,arctic_canada_south,-50.54712713038396,10.165852904921715,-1.2596034631346231,0.2415453254081635
+2020.0,2021.0,40217.4368,arctic_canada_south,-35.23772265203272,9.16363701489153,-0.8788166707276093,0.2205958442176915
+2021.0,2022.0,40184.7264,arctic_canada_south,1.5608686349126528,8.899877803175794,0.0389592133917171,0.2183113519143489
+2022.0,2023.0,40152.016,arctic_canada_south,-26.803353366935987,10.423143011124177,-0.6695555556434637,0.2535641347498348
+2023.0,2024.0,40119.3056,arctic_canada_south,-24.485635912166988,12.66816791489078,-0.6121570023816206,0.3093037277003338
diff --git a/glacier_data/5_greenland_periphery.csv b/glacier_data/5_greenland_periphery.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1ef1dc5fc632ed5722ccd4e976f37d23ace4752d
--- /dev/null
+++ b/glacier_data/5_greenland_periphery.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,89349.1603,greenland_periphery,-41.2912682002374,58.14795528438563,-0.4635243868595238,0.6496667371457514
+2001.0,2002.0,88613.4809,greenland_periphery,-30.259115172023737,34.40693590362891,-0.3425005468781988,0.3842871129956297
+2002.0,2003.0,87877.8015,greenland_periphery,-4.633022444104562,34.04614316389751,-0.0528798314794764,0.3806168114081556
+2003.0,2004.0,87142.12210000001,greenland_periphery,21.19402971840975,32.97931816599432,0.2439440607539797,0.3685084528285934
+2004.0,2005.0,86406.4427,greenland_periphery,-21.61789893283536,32.04279733381595,-0.2509413314403678,0.3580249460205689
+2005.0,2006.0,85670.7633,greenland_periphery,-73.56189179697199,32.43937331644711,-0.8612417898409994,0.3603237111698206
+2006.0,2007.0,84935.0839,greenland_periphery,-11.901237733591891,31.784423148203988,-0.1405432046701326,0.3552779938021395
+2007.0,2008.0,84199.4045,greenland_periphery,-54.51899453837374,31.52191269045421,-0.6494469170430045,0.351085292767621
+2008.0,2009.0,83463.7251,greenland_periphery,-31.569572236755583,31.10083677864067,-0.3793811730380011,0.3472498733233991
+2009.0,2010.0,82728.0457,greenland_periphery,-44.34081127000205,31.25895903949679,-0.5375956073372805,0.3485856675493938
+2010.0,2011.0,81992.3663,greenland_periphery,-63.50411891699192,31.72351046941193,-0.7768431063146872,0.3528783271181387
+2011.0,2012.0,81256.6869,greenland_periphery,-73.61889642826725,30.440425465101285,-0.9087303519054896,0.3378175210506762
+2012.0,2013.0,80521.0075,greenland_periphery,-45.04805361014524,30.60922366116791,-0.561140574693076,0.3412741518299132
+2013.0,2014.0,79785.3281,greenland_periphery,-37.84487762507106,29.86548229667335,-0.4757610802722418,0.3332162495829455
+2014.0,2015.0,79049.6487,greenland_periphery,2.5817383158773253,29.81869955577704,0.0327579803196074,0.3333609525033675
+2015.0,2016.0,78313.9693,greenland_periphery,-9.433257622014974,29.670775706494453,-0.1208167921283485,0.3316684179185126
+2016.0,2017.0,77578.2899,greenland_periphery,-53.45383656825312,29.42922714128744,-0.6911041823581543,0.3276502727966965
+2017.0,2018.0,76842.6105,greenland_periphery,7.709968424686927,29.677298979337728,0.1006364551926869,0.331755268082732
+2018.0,2019.0,76106.9311,greenland_periphery,12.001662332086804,30.323396520363502,0.1581692427362111,0.338940048560673
+2019.0,2020.0,75371.2517,greenland_periphery,-73.00240051873962,29.982633840146075,-0.971485348423586,0.3327035796072279
+2020.0,2021.0,74635.5723,greenland_periphery,-39.04193946889865,30.614652227436416,-0.5246749842643712,0.341566096060466
+2021.0,2022.0,73899.8929,greenland_periphery,-52.79326670883994,30.855775976776048,-0.7165385631847668,0.3436936655801365
+2022.0,2023.0,73164.2135,greenland_periphery,-46.25762631952477,57.29462709790465,-0.6341463203159325,0.6400145477932303
+2023.0,2024.0,72428.5341,greenland_periphery,-86.27339719312873,57.41429456246441,-1.1947362632274197,0.6400603014062028
diff --git a/glacier_data/6_iceland.csv b/glacier_data/6_iceland.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b0521810db32881113dad67ae223dad4c6677ccc
--- /dev/null
+++ b/glacier_data/6_iceland.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,11000.276,iceland,-12.119282301800888,9.310404630398684,-1.1050404144816226,0.8425515454197151
+2001.0,2002.0,10960.46,iceland,-7.880169982482089,8.367888437940389,-0.7211268165172067,0.7580251780053338
+2002.0,2003.0,10920.644,iceland,-6.477842569043585,8.36938280349822,-0.5949589211736843,0.7584338186598918
+2003.0,2004.0,10880.828,iceland,-13.226291076562983,6.088712128121142,-1.2192168964160424,0.5489063786494442
+2004.0,2005.0,10841.012,iceland,-15.987179419707129,5.99819936892382,-1.4791317706809777,0.5391125340226701
+2005.0,2006.0,10801.196,iceland,-15.450873871967536,6.0079084461037215,-1.4347824046408535,0.5403218303854511
+2006.0,2007.0,10761.38,iceland,-6.918354403676182,5.999031661951444,-0.6448217532913516,0.5431348438999175
+2007.0,2008.0,10721.564,iceland,-10.334411364747451,5.992230026517656,-0.9667906555809106,0.5413990246239699
+2008.0,2009.0,10681.748,iceland,-11.515369917058456,6.043201735721196,-1.081285570207182,0.5455526542318289
+2009.0,2010.0,10641.932,iceland,-2.9374468586318327,6.003653475507725,-0.2768562809628148,0.5442962410559665
+2010.0,2011.0,10602.116,iceland,-30.63731167132132,6.136665909617718,-2.8984308577492293,0.5389037664877039
+2011.0,2012.0,10562.3,iceland,-8.189141762992667,5.100400734518575,-0.7776509957423721,0.4610521151421801
+2012.0,2013.0,10522.484,iceland,-6.796645559090764,5.067236920459668,-0.6478600347256107,0.4585028792083223
+2013.0,2014.0,10482.668,iceland,-1.841311036856554,4.978535555370219,-0.1761814446123304,0.4514161128619584
+2014.0,2015.0,10442.852,iceland,-3.320306207595209,5.065130682758505,-0.3189068559902873,0.4590996573038974
+2015.0,2016.0,10403.036,iceland,6.969062312583269,5.069503127034173,0.6719223513032837,0.4586556648546741
+2016.0,2017.0,10363.22,iceland,-8.874125262517493,5.087582446639774,-0.8588863061630226,0.4596245253399423
+2017.0,2018.0,10323.404,iceland,-2.088827327397081,4.983430441185526,-0.2029478518319404,0.4518379636422231
+2018.0,2019.0,10283.588,iceland,-1.3218772112160089,5.069432087275889,-0.1289292001529657,0.459697466013012
+2019.0,2020.0,10243.772,iceland,-10.104679798740069,5.126351603463311,-0.9893899487319486,0.4626350902766832
+2020.0,2021.0,10203.956,iceland,-9.140112202280346,6.022850703712587,-0.8984373362078995,0.5446254855752175
+2021.0,2022.0,10164.14,iceland,-12.546547907083468,6.130173165829964,-1.2381077798526985,0.5530143876508594
+2022.0,2023.0,10124.324,iceland,1.975963970068084,6.617995812759047,0.19575723763538,0.6001057699684678
+2023.0,2024.0,10084.508,iceland,-10.314387865321638,9.371491575966754,-1.0258729665081174,0.8485937583402879
diff --git a/glacier_data/7_svalbard.csv b/glacier_data/7_svalbard.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e93946d9d463a7f2ff53cb862a1cfe4791abb7f1
--- /dev/null
+++ b/glacier_data/7_svalbard.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,34444.6137,svalbard,5.85973224228223,11.083688554617016,0.1706323196560655,0.3272521256079329
+2001.0,2002.0,34356.3203,svalbard,-11.143703096330642,10.105549871997376,-0.3253327103465396,0.2980222964142529
+2002.0,2003.0,34268.0269,svalbard,-10.250925533265024,9.845739411238746,-0.3000397681432435,0.2904082953939729
+2003.0,2004.0,34179.7335,svalbard,-16.59267211556013,7.089062030575299,-0.486914267933249,0.2079429079141126
+2004.0,2005.0,34091.4401,svalbard,-13.80339462074514,6.085182907824757,-0.4061116036272124,0.1785715036483082
+2005.0,2006.0,34003.1467,svalbard,-9.303333767132411,6.088282675861296,-0.2744254181153053,0.1792971736745494
+2006.0,2007.0,33914.8533,svalbard,-4.636312178454609,6.065740312949929,-0.1371158213842746,0.1790261098857296
+2007.0,2008.0,33826.5599,svalbard,-4.167827196014192,6.03418694957874,-0.1235824249724236,0.1781187216019453
+2008.0,2009.0,33738.2665,svalbard,8.898909088510552,6.130919812299276,0.2645567503283372,0.1806046177541355
+2009.0,2010.0,33649.9731,svalbard,-7.622036302257484,6.094954749331444,-0.22719100527023,0.1796676115583862
+2010.0,2011.0,33561.6797,svalbard,-0.3143960034536954,7.094889280341375,-0.0093958953294677,0.2095533003652641
+2011.0,2012.0,33473.3863,svalbard,-16.06662024252455,6.1302030159850505,-0.4814261991156349,0.1794995669355213
+2012.0,2013.0,33385.0929,svalbard,-3.3211945074716787,5.868641311831714,-0.0997807039706257,0.1732660929034964
+2013.0,2014.0,33296.7995,svalbard,-28.17079520779257,6.396883247663932,-0.8485969317703638,0.1843004289753631
+2014.0,2015.0,33208.5061,svalbard,-11.484639850071742,6.178035926857084,-0.3468749063180213,0.1816838179402434
+2015.0,2016.0,33120.212700000004,svalbard,-12.732022496611268,5.976228809156995,-0.3855752260039856,0.1755088876268902
+2016.0,2017.0,33031.9193,svalbard,-26.151076923306224,6.115742545145028,-0.7940733320322727,0.1764570851401571
+2017.0,2018.0,32943.6259,svalbard,-17.7612648718528,5.987427632022826,-0.5407634561212445,0.1748879258532447
+2018.0,2019.0,32855.3325,svalbard,-18.7418685432444,6.226761519791363,-0.5721525823317762,0.1818182828455348
+2019.0,2020.0,32767.0391,svalbard,-19.3136979603446,6.26384483144987,-0.5911981653705852,0.1827963437063611
+2020.0,2021.0,32678.7457,svalbard,-39.71242876629833,7.367721383032264,-1.2188939228447218,0.2095604170708659
+2021.0,2022.0,32590.4523,svalbard,-7.953819778136595,7.091334393209247,-0.2447880429461956,0.2091191890331557
+2022.0,2023.0,32502.1589,svalbard,-42.11223980325151,8.2780330820747,-1.2995738776377503,0.2364572527522733
+2023.0,2024.0,32413.8655,svalbard,-24.48600796123645,11.62016898695594,-0.7576907796542612,0.3413016777956906
diff --git a/glacier_data/8_scandinavia.csv b/glacier_data/8_scandinavia.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7cc62d4abb91e948de45e937ff7722b80f8e7b98
--- /dev/null
+++ b/glacier_data/8_scandinavia.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,2960.94345,scandinavia,0.8445266836084478,0.923866344543825,0.2860804002421115,0.3138955147419732
+2001.0,2002.0,2952.98115,scandinavia,-2.1991190686074744,0.5545600353244062,-0.7469523730077972,0.1848713060535852
+2002.0,2003.0,2945.01885,scandinavia,-4.026071661226791,0.6161477892966664,-1.3711919772216228,0.1980630886630486
+2003.0,2004.0,2937.05655,scandinavia,-4.215089346015239,0.599647084746878,-1.4394590611499332,0.1909391788779985
+2004.0,2005.0,2929.09425,scandinavia,-0.6708575916169709,0.6414623711386273,-0.2297216008934517,0.2178746381510352
+2005.0,2006.0,2921.13195,scandinavia,-1.028301421986082,0.5977995076624393,-0.3530808010273277,0.2025691758323705
+2006.0,2007.0,2913.16965,scandinavia,-5.233164247312704,0.6179085420780166,-1.80178692313833,0.1903891125248742
+2007.0,2008.0,2905.20735,scandinavia,0.2174491141998074,0.6653668679534063,0.0750732729879769,0.2262732691494355
+2008.0,2009.0,2897.24505,scandinavia,0.2234919590341321,0.6348393161658972,0.0773715887067633,0.2158870506175567
+2009.0,2010.0,2889.28275,scandinavia,-1.850892814863128,0.5767912450269116,-0.6425339304253037,0.1936356938535793
+2010.0,2011.0,2881.32045,scandinavia,-2.7932180431987925,0.5553297789362552,-0.9723399255832847,0.1828072071542048
+2011.0,2012.0,2873.35815,scandinavia,-3.1497490108565325,0.6042335330282362,-1.099489352181635,0.1984076463935409
+2012.0,2013.0,2865.39585,scandinavia,1.616198486336387,0.5930602138415199,0.5657374255464349,0.1998293525020472
+2013.0,2014.0,2857.43355,scandinavia,-3.2996106704306336,0.6122441452849038,-1.158220910612434,0.2005326732987237
+2014.0,2015.0,2849.47125,scandinavia,-2.818199598557766,0.6439089028393591,-0.9920014590321544,0.2136969474310804
+2015.0,2016.0,2841.50895,scandinavia,1.7778450224721014,0.6138097811187486,0.627551993559962,0.2065671284000276
+2016.0,2017.0,2833.5466499999998,scandinavia,-1.1893070315883585,0.5968325053068001,-0.4209867829966101,0.2019836056580751
+2017.0,2018.0,2825.58435,scandinavia,-0.0301437619599587,0.5534288605776797,-0.0107002522703053,0.1882306152989854
+2018.0,2019.0,2817.62205,scandinavia,-4.212927232509297,0.5456267605424232,-1.4997057694956732,0.1711902790282569
+2019.0,2020.0,2809.65975,scandinavia,-1.4351922971850946,0.6018051979337271,-0.5123434713666368,0.2032246455536964
+2020.0,2021.0,2801.69745,scandinavia,0.4944919959301292,0.7062267943630811,0.177028371046039,0.2400534477469109
+2021.0,2022.0,2793.73515,scandinavia,-2.4255083424878463,0.6364868968277927,-0.8708079442592027,0.2125148760206184
+2022.0,2023.0,2785.77285,scandinavia,-1.4723308948231677,0.873194474676976,-0.5301082528527918,0.2959321300617251
+2023.0,2024.0,2777.81055,scandinavia,-3.1568268459350413,0.8714005955469484,-1.1398638483122103,0.2914766887650764
diff --git a/glacier_data/9_russian_arctic.csv b/glacier_data/9_russian_arctic.csv
new file mode 100644
index 0000000000000000000000000000000000000000..422d94da271f21b99f69eeb5e0ad375a5e7e60b2
--- /dev/null
+++ b/glacier_data/9_russian_arctic.csv
@@ -0,0 +1,25 @@
+start_dates,end_dates,glacier_area,region,combined_gt,combined_gt_errors,combined_mwe,combined_mwe_errors
+2000.0,2001.0,51612.6368,russian_arctic,8.519843072055021,16.83852313593046,0.1655695201874821,0.3272558751828727
+2001.0,2002.0,51571.3632,russian_arctic,-10.13503584712864,14.884953959372003,-0.1971158374278154,0.2892132239895944
+2002.0,2003.0,51530.0896,russian_arctic,-7.559339588150589,14.936792206722348,-0.1471389998453962,0.2902957850505115
+2003.0,2004.0,51488.816,russian_arctic,-8.908960921205653,10.754602498668811,-0.1735477511443126,0.2089026706976959
+2004.0,2005.0,51447.5424,russian_arctic,-25.41459065221258,9.031469650025716,-0.4954768032562778,0.1738357193832817
+2005.0,2006.0,51406.2688,russian_arctic,-14.261778926584304,9.041293367543714,-0.278267482537093,0.1752258005348916
+2006.0,2007.0,51364.9952,russian_arctic,-5.90635950470559,8.928674158972823,-0.1153340300595766,0.1734889302574243
+2007.0,2008.0,51323.7216,russian_arctic,-16.05897200870474,8.71637492039037,-0.313837215779299,0.1687360206283844
+2008.0,2009.0,51282.448,russian_arctic,2.617551605043185,8.804955433054952,0.0511954477818475,0.171159755662064
+2009.0,2010.0,51241.1744,russian_arctic,3.355955051219893,8.983269267720505,0.0656903993764133,0.1746148274010283
+2010.0,2011.0,51199.9008,russian_arctic,1.8542126867048536,10.862218761176116,0.0363241341063991,0.2111665883159242
+2011.0,2012.0,51158.6272,russian_arctic,-28.4607306217242,8.85990229576888,-0.5579971804035616,0.1700106293831719
+2012.0,2013.0,51117.3536,russian_arctic,-8.370259542081753,8.583246633777788,-0.1642386643372891,0.1666699074808103
+2013.0,2014.0,51076.08,russian_arctic,-24.013597848216985,8.93582131366647,-0.4715682059872326,0.17214747028107
+2014.0,2015.0,51034.8064,russian_arctic,1.6598696379314568,8.698154515198176,0.0326221327768831,0.1690946339724458
+2015.0,2016.0,50993.5328,russian_arctic,-19.01366050987852,8.974493519796871,-0.3739861131815193,0.1734929891098213
+2016.0,2017.0,50952.2592,russian_arctic,-38.72567230076549,9.224829587638965,-0.7623253513645547,0.175346330997787
+2017.0,2018.0,50910.9856,russian_arctic,-9.23312758170906,8.55164055408476,-0.1819039683381615,0.1660114921498525
+2018.0,2019.0,50869.712,russian_arctic,-19.85869850503244,8.902138807527425,-0.391558219685465,0.1719880927857434
+2019.0,2020.0,50828.4384,russian_arctic,-27.58499190115624,9.0339738741464,-0.5443408603484208,0.1735720720989747
+2020.0,2021.0,50787.1648,russian_arctic,-60.4847308697026,10.989710164137534,-1.1945288007668282,0.2054038172990117
+2021.0,2022.0,50745.8912,russian_arctic,-4.299174110625859,10.867987304658904,-0.0849745731128615,0.2112450946969196
+2022.0,2023.0,50704.6176,russian_arctic,-40.067190725521854,12.697161647787336,-0.7925856833103166,0.2437557760189884
+2023.0,2024.0,50663.344,russian_arctic,-34.07823465673737,18.704402660586183,-0.674664842251638,0.3621235566221768
diff --git a/glacier_data/__MACOSX/._0_global.csv b/glacier_data/__MACOSX/._0_global.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._0_global.csv differ
diff --git a/glacier_data/__MACOSX/._10_north_asia.csv b/glacier_data/__MACOSX/._10_north_asia.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._10_north_asia.csv differ
diff --git a/glacier_data/__MACOSX/._11_central_europe.csv b/glacier_data/__MACOSX/._11_central_europe.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._11_central_europe.csv differ
diff --git a/glacier_data/__MACOSX/._12_caucasus_middle_east.csv b/glacier_data/__MACOSX/._12_caucasus_middle_east.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._12_caucasus_middle_east.csv differ
diff --git a/glacier_data/__MACOSX/._13_central_asia.csv b/glacier_data/__MACOSX/._13_central_asia.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._13_central_asia.csv differ
diff --git a/glacier_data/__MACOSX/._14_south_asia_west.csv b/glacier_data/__MACOSX/._14_south_asia_west.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._14_south_asia_west.csv differ
diff --git a/glacier_data/__MACOSX/._15_south_asia_east.csv b/glacier_data/__MACOSX/._15_south_asia_east.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._15_south_asia_east.csv differ
diff --git a/glacier_data/__MACOSX/._16_low_latitudes.csv b/glacier_data/__MACOSX/._16_low_latitudes.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._16_low_latitudes.csv differ
diff --git a/glacier_data/__MACOSX/._17_southern_andes.csv b/glacier_data/__MACOSX/._17_southern_andes.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._17_southern_andes.csv differ
diff --git a/glacier_data/__MACOSX/._18_new_zealand.csv b/glacier_data/__MACOSX/._18_new_zealand.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._18_new_zealand.csv differ
diff --git a/glacier_data/__MACOSX/._19_antarctic_and_subantarctic.csv b/glacier_data/__MACOSX/._19_antarctic_and_subantarctic.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._19_antarctic_and_subantarctic.csv differ
diff --git a/glacier_data/__MACOSX/._1_alaska.csv b/glacier_data/__MACOSX/._1_alaska.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._1_alaska.csv differ
diff --git a/glacier_data/__MACOSX/._2_western_canada_us.csv b/glacier_data/__MACOSX/._2_western_canada_us.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._2_western_canada_us.csv differ
diff --git a/glacier_data/__MACOSX/._3_arctic_canada_north.csv b/glacier_data/__MACOSX/._3_arctic_canada_north.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._3_arctic_canada_north.csv differ
diff --git a/glacier_data/__MACOSX/._4_arctic_canada_south.csv b/glacier_data/__MACOSX/._4_arctic_canada_south.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._4_arctic_canada_south.csv differ
diff --git a/glacier_data/__MACOSX/._5_greenland_periphery.csv b/glacier_data/__MACOSX/._5_greenland_periphery.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._5_greenland_periphery.csv differ
diff --git a/glacier_data/__MACOSX/._6_iceland.csv b/glacier_data/__MACOSX/._6_iceland.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._6_iceland.csv differ
diff --git a/glacier_data/__MACOSX/._7_svalbard.csv b/glacier_data/__MACOSX/._7_svalbard.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._7_svalbard.csv differ
diff --git a/glacier_data/__MACOSX/._8_scandinavia.csv b/glacier_data/__MACOSX/._8_scandinavia.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._8_scandinavia.csv differ
diff --git a/glacier_data/__MACOSX/._9_russian_arctic.csv b/glacier_data/__MACOSX/._9_russian_arctic.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7bf122a362ec34729644d0962a6ccac2620995d8
Binary files /dev/null and b/glacier_data/__MACOSX/._9_russian_arctic.csv differ
diff --git a/glacier_summary.csv b/glacier_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..aab318422c3a6709bc558383ec586a2826592a09
--- /dev/null
+++ b/glacier_summary.csv
@@ -0,0 +1,21 @@
+Region,Rows,Columns,Missing Values,Start Date Range,End Date Range,Glacier Area Range (km²),Combined Mass Change (Gt)
+12_caucasus_middle_east,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,1123.43185 - 1282.75515,-1.8119059633143595 - 0.6360925487896292
+17_southern_andes,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,28184.1533 - 29402.5139,-67.135862594548 - 7.61001311639548
+1_alaska,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,80272.66 - 89847.1,-144.96724967946653 - 55.42475171089546
+19_antarctic_and_subantarctic,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,119414.21625 - 127665.25695,-82.18509811946437 - 54.21030700577958
+9_russian_arctic,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,50663.344 - 51612.6368,-60.4847308697026 - 8.519843072055021
+11_central_europe,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,1693.1602 - 2140.639,-6.237435177272426 - 0.4019665729881813
+8_scandinavia,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,2777.81055 - 2960.94345,-5.233164247312704 - 1.7778450224721014
+7_svalbard,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,32413.8655 - 34444.6137,-42.11223980325151 - 8.898909088510552
+14_south_asia_west,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,30728.1472 - 33507.5776,-34.3384991492528 - 9.726773430882623
+4_arctic_canada_south,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,40119.3056 - 40871.6448,-50.54712713038396 - 1.5608686349126528
+3_arctic_canada_north,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,103308.34635 - 105000.63345,-83.30383705815383 - 14.803773171172445
+10_north_asia,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,2249.3735 - 2487.7225,-2.383431710308152 - 0.4721992168201645
+15_south_asia_east,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,13314.3791 - 14907.1245,-17.589780221019534 - 0.8262841166758295
+18_new_zealand,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,797.1901 - 981.5995,-2.1815863332370538 - 0.8406476913557156
+16_low_latitudes,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,1714.1972500000002 - 2354.92895,-2.769504894430206 - 1.0742074293211157
+5_greenland_periphery,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,72428.5341 - 89349.1603,-86.27339719312873 - 21.19402971840975
+13_central_asia,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,47661.2101 - 49702.3543,-40.61362594960092 - 23.07038904132115
+2_western_canada_us,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,12759.334 - 14563.2148,-33.28211098254605 - 12.22074313575233
+0_global,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,651707.1669499998 - 704082.6956499998,-548.025110248126 - -78.04414729402814
+6_iceland,24,"['start_dates', 'end_dates', 'glacier_area', 'region', 'combined_gt', 'combined_gt_errors', 'combined_mwe', 'combined_mwe_errors']","{'start_dates': 0, 'end_dates': 0, 'glacier_area': 0, 'region': 0, 'combined_gt': 0, 'combined_gt_errors': 0, 'combined_mwe': 0, 'combined_mwe_errors': 0}",2000.0 - 2023.0,2001.0 - 2024.0,10084.508 - 11000.276,-30.63731167132132 - 6.969062312583269
diff --git a/gtn_summary.csv b/gtn_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9cc38798da374d3e8707194cf73cd26d5753f75b
--- /dev/null
+++ b/gtn_summary.csv
@@ -0,0 +1,2 @@
+Columns,Rows,Missing Values
+"['station_name', 'station_no', 'station_id', 'station_latitude', 'station_longitude', 'station_status', 'river_name', 'station_elevation', 'CATCHMENT_SIZE', 'NAT_STA_ID', 'GRDCCOUNTRY']",324,"{'station_name': 0, 'station_no': 0, 'station_id': 0, 'station_latitude': 0, 'station_longitude': 0, 'station_status': 0, 'river_name': 0, 'station_elevation': 72, 'CATCHMENT_SIZE': 0, 'NAT_STA_ID': 18, 'GRDCCOUNTRY': 0}"
diff --git a/index.html b/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..fa4252480636315fbb72668c8043921d4ab55108
--- /dev/null
+++ b/index.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>🌍 GlacierH2O</title>
+  <link rel="stylesheet" href="css/styles.css">
+  <script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
+  <script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
+  <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
+  <script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
+</head>
+<body>
+  <h1>🌍 GlacierH2O</h1>
+
+  <div id="controls">
+    <div class="year-control">
+      <label for="year-input">Year:</label>
+      <input type="number" id="year-input" min="2000" max="2025" value="2000" step="1">
+      <input type="range" id="year-slider" min="2000" max="2025" value="2000" step="1">
+    </div>
+    <select id="basemap-select">
+      <option value="OpenStreetMap">OpenStreetMap</option>
+      <option value="Satellite">Satellite</option>
+    </select>
+    <button id="dark-mode-toggle">🌙 Dark Mode</button>
+  </div>
+
+  <div id="container">
+    <div id="map-container">
+      <div id="map"></div>
+    </div>
+    <div id="chart-container">
+      <canvas id="region-chart"></canvas>
+    </div>
+  </div>
+
+  <script type="module" src="js/main.js"></script>
+</body>
+</html>
\ No newline at end of file
diff --git a/js/chart.js b/js/chart.js
new file mode 100644
index 0000000000000000000000000000000000000000..8ec6c716a009c9dae7a4e86ee8bb4738c0e31680
--- /dev/null
+++ b/js/chart.js
@@ -0,0 +1,91 @@
+let chartInstance = null;
+
+export function updateChart(region, darkMode = false) {
+  d3.json("data/glacier_data.json").then((data) => {
+    // Filter data for the selected region
+    const regionData = data
+      .filter(d => d.region === region)
+      .sort((a, b) => new Date(a.end_date) - new Date(b.end_date));
+    
+    const ctx = document.getElementById("region-chart").getContext("2d");
+
+    // Destroy existing chart if it exists
+    if (chartInstance) {
+      chartInstance.destroy();
+    }
+
+    // Determine text and grid colors based on dark mode
+    const textColor = darkMode ? "#ecf0f1" : "#34495e";
+    const gridColor = darkMode ? "rgba(255, 255, 255, 0.2)" : "rgba(0, 0, 0, 0.1)";
+
+    // Chart options
+    const options = {
+      responsive: true,
+      maintainAspectRatio: false,
+      plugins: {
+        legend: {
+          labels: {
+            color: textColor
+          }
+        },
+        title: {
+          display: true,
+          text: region === 'global' ? 'Global Glacier Mass Change' : `${region.replace(/_/g, ' ')} Glacier Mass Change`,
+          font: {
+            size: 14
+          },
+          color: textColor
+        }
+      },
+      scales: {
+        x: {
+          title: {
+            display: true,
+            text: "Year",
+            color: textColor
+          },
+          ticks: {
+            color: textColor
+          },
+          grid: {
+            color: gridColor
+          }
+        },
+        y: {
+          title: {
+            display: true,
+            text: "Mass Change (Gt)",
+            color: textColor
+          },
+          ticks: {
+            color: textColor
+          },
+          grid: {
+            color: gridColor
+          }
+        }
+      }
+    };
+
+    // Create the chart
+    chartInstance = new Chart(ctx, {
+      type: "line",
+      data: {
+        labels: regionData.map(d => d.end_date),
+        datasets: [{
+          label: region === 'global' ? "Global Glacier Mass Change" : `${region.replace(/_/g, ' ')} Glacier Mass Change`,
+          data: regionData.map(d => d.glacier_mass_change),
+          borderColor: "#3498db",
+          backgroundColor: "rgba(52, 152, 219, 0.2)",
+          fill: true,
+          tension: 0.4,
+          pointRadius: 3,
+          pointBackgroundColor: "#3498db"
+        }]
+      },
+      options: options
+    });
+  });
+}
+
+export { chartInstance };
\ No newline at end of file
diff --git a/js/controls.js b/js/controls.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/js/main.js b/js/main.js
new file mode 100644
index 0000000000000000000000000000000000000000..9473d0caced633647252242602f6d020c331bf24
--- /dev/null
+++ b/js/main.js
@@ -0,0 +1,154 @@
+import { updateChart, chartInstance } from "./chart.js";
+
+document.addEventListener("DOMContentLoaded", () => {
+  const yearSlider = document.getElementById("year-slider");
+  const yearInput = document.getElementById("year-input");
+  const baseMapSelector = document.getElementById("basemap-select");
+  const darkModeToggle = document.getElementById("dark-mode-toggle");
+
+  let glacierData = [];
+  let currentRegion = 'global'; // Default to global view
+
+  // Initialize the map
+  const map = L.map("map").setView([20, 0], 2);
+
+  // Define base map layers
+  const baseMaps = {
+    "OpenStreetMap": L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"),
+    "Satellite": L.tileLayer("https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}")
+  };
+
+  // Add initial base layer
+  let currentBaseLayer = baseMaps["OpenStreetMap"];
+  currentBaseLayer.addTo(map);
+
+  // Handle base map selection
+  baseMapSelector.addEventListener("change", (e) => {
+    map.removeLayer(currentBaseLayer);
+    currentBaseLayer = baseMaps[e.target.value];
+    currentBaseLayer.addTo(map);
+  });
+
+  // Create legend for map
+  const createLegend = () => {
+    const legend = L.control({ position: "topright" });
+
+    legend.onAdd = () => {
+      const div = L.DomUtil.create("div", "info legend");
+      div.setAttribute("id", "legend");
+      div.innerHTML = `
+        <div class="legend-title">Glacier Mass Change</div>
+        <div class="legend-item">
+          <div class="color-box" style="background-color: #003366;"></div>
+          <span>Freeze (&ge; 10 Gt)</span>
+        </div>
+        <div class="legend-item">
+          <div class="color-box" style="background-color: #33cc33;"></div>
+          <span>Stable (-10 to 10 Gt)</span>
+        </div>
+        <div class="legend-item">
+          <div class="color-box" style="background-color: #ff3300;"></div>
+          <span>Melting (&lt; -10 Gt)</span>
+        </div>
+      `;
+
+      // Prevent map interactions when clicking on legend
+      L.DomEvent.disableClickPropagation(div);
+      return div;
+    };
+
+    legend.addTo(map);
+  };
+
+  // Update map markers based on selected year
+  const updateMapMarkers = (year) => {
+    // Clear existing markers
+    map.eachLayer(layer => {
+      if (layer instanceof L.CircleMarker) {
+        map.removeLayer(layer);
+      }
+    });
+
+    // Add new markers for the selected year
+    glacierData
+      .filter(d => Math.round(d.end_date) === +year)
+      .forEach((data) => {
+        // Determine color based on mass change
+        let fillColor;
+        if (data.glacier_mass_change >= 10) {
+          fillColor = "#003366"; // Freeze
+        } else if (data.glacier_mass_change <= -10) {
+          fillColor = "#ff3300"; // Melting
+        } else {
+          fillColor = "#33cc33"; // Stable
+        }
+
+        // Create circle marker
+        const marker = L.circleMarker([data.latitude, data.longitude], {
+          radius: Math.max(data.glacier_area / 2000, 6),
+          fillColor,
+          color: "#222",
+          weight: 1,
+          fillOpacity: 0.8
+        });
+
+        // Add popup with region information
+        marker.bindPopup(`
+          <strong>Region:</strong> ${data.region.replace(/_/g, " ")}<br>
+          <strong>Mass Change:</strong> ${data.glacier_mass_change} Gt
+        `);
+
+        // Add click event to update charts
+        marker.on('click', function() {
+          currentRegion = data.region;
+          updateChart(data.region, document.body.classList.contains('dark-mode'));
+        });
+
+        // Add marker to map
+        marker.addTo(map);
+      });
+  };
+
+  // Handle year slider input
+  yearSlider.addEventListener("input", (e) => {
+    yearInput.value = e.target.value;
+    updateMapMarkers(e.target.value);
+  });
+
+  // Handle year input changes
+  yearInput.addEventListener("input", (e) => {
+    const year = Math.max(2000, Math.min(2025, e.target.value));
+    yearSlider.value = year;
+    updateMapMarkers(year);
+  });
+
+  // Toggle dark mode
+  darkModeToggle.addEventListener("click", () => {
+    document.body.classList.toggle("dark-mode");
+    darkModeToggle.textContent = document.body.classList.contains("dark-mode") 
+      ? "☀️ Light Mode" 
+      : "🌙 Dark Mode";
+    
+    // Update charts with new theme
+    updateChart(currentRegion, document.body.classList.contains('dark-mode'));
+  });
+
+  // Add window resize handler
+  window.addEventListener('resize', () => {
+    if (chartInstance) {
+      chartInstance.resize();
+    }
+  });
+
+  // Initialize the application
+  Promise.all([
+    d3.json("data/glacier_data.json")
+  ]).then(([data]) => {
+    glacierData = data;
+    updateMapMarkers(yearSlider.value);
+    createLegend();
+    updateChart('global', document.body.classList.contains('dark-mode'));
+  }).catch(error => {
+    console.error("Error loading data:", error);
+  });
+});
\ No newline at end of file
diff --git a/setup_project.sh b/setup_project.sh
new file mode 100644
index 0000000000000000000000000000000000000000..65adb963c1dab6f9503846a7c15d826ac16b4bf3
--- /dev/null
+++ b/setup_project.sh
@@ -0,0 +1,90 @@
+#!/bin/bash
+
+# Project name
+PROJECT_NAME="glacier-visualization"
+
+# Create base directories
+mkdir -p $PROJECT_NAME/{public,src/{components,data},src/styles}
+
+# Create essential files
+touch $PROJECT_NAME/public/index.html
+touch $PROJECT_NAME/src/{App.jsx,index.js,styles/styles.css}
+touch $PROJECT_NAME/src/components/{GlobeVisualization.jsx,RegionDetailChart.jsx,Controls.jsx}
+touch $PROJECT_NAME/src/data/{glacier_data.json,gtn_report.json}
+touch $PROJECT_NAME/data_preprocessing.py
+touch $PROJECT_NAME/package.json
+
+# Add basic content to files
+echo "<!DOCTYPE html>
+<html lang='en'>
+<head>
+  <meta charset='UTF-8'>
+  <title>Glacier Melt Visualization</title>
+</head>
+<body>
+  <div id='root'></div>
+</body>
+</html>" > $PROJECT_NAME/public/index.html
+
+echo "import React from 'react';
+import ReactDOM from 'react-dom';
+import App from './App';
+import './styles/styles.css';
+
+ReactDOM.render(<App />, document.getElementById('root'));" > $PROJECT_NAME/src/index.js
+
+echo "{
+  \"name\": \"glacier-visualization\",
+  \"version\": \"1.0.0\",
+  \"scripts\": {
+    \"start\": \"react-scripts start\",
+    \"build\": \"react-scripts build\"
+  },
+  \"dependencies\": {
+    \"react\": \"^18.0.0\",
+    \"react-dom\": \"^18.0.0\",
+    \"react-scripts\": \"5.0.1\",
+    \"d3\": \"^7.0.0\",
+    \"topojson-client\": \"^3.1.0\",
+    \"react-chartjs-2\": \"^4.0.0\",
+    \"chart.js\": \"^3.5.0\"
+  }
+}" > $PROJECT_NAME/package.json
+
+echo "# Python script to process data
+import zipfile
+import pandas as pd
+import os
+import json
+
+zip_path = 'Glacier.zip'
+xlsx_path = 'GTN Report.xlsx'
+extract_dir = 'glacier_data'
+
+with zipfile.ZipFile(zip_path, 'r') as zip_ref:
+    zip_ref.extractall(extract_dir)
+
+glacier_data = []
+for file in os.listdir(extract_dir):
+    if file.endswith('.csv') and file != '0_global.csv':
+        df = pd.read_csv(os.path.join(extract_dir, file))
+        region = file.replace('.csv', '')
+        for _, row in df.iterrows():
+            glacier_data.append({
+                \"region\": region,
+                \"start_dates\": row['start_dates'],
+                \"end_dates\": row['end_dates'],
+                \"glacier_area\": row['glacier_area'],
+                \"combined_gt\": row['combined_gt'],
+                \"combined_mwe\": row['combined_mwe']
+            })
+
+with open('src/data/glacier_data.json', 'w') as f:
+    json.dump(glacier_data, f, indent=4)
+
+pd.read_excel(xlsx_path).to_json('src/data/gtn_report.json', orient='records', indent=4)
+print('✅ Data converted!')" > $PROJECT_NAME/data_preprocessing.py
+
+# Display final structure
+echo "✅ Project structure created successfully!"
+tree $PROJECT_NAME