Update app.py
Browse files
app.py
CHANGED
|
@@ -3,6 +3,10 @@ import geopandas as gpd
|
|
| 3 |
import pandas as pd
|
| 4 |
import pyarrow.parquet as pq
|
| 5 |
from huggingface_hub import hf_hub_download
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
# Set Streamlit Page Configuration
|
| 8 |
st.set_page_config(page_title="Optimized GADM Data Processing", layout="wide")
|
|
|
|
| 3 |
import pandas as pd
|
| 4 |
import pyarrow.parquet as pq
|
| 5 |
from huggingface_hub import hf_hub_download
|
| 6 |
+
import warnings
|
| 7 |
+
|
| 8 |
+
# Suppress specific RuntimeWarnings (USECOLS)
|
| 9 |
+
warnings.filterwarnings("ignore", category=RuntimeWarning, message=".*USECOLS.*")
|
| 10 |
|
| 11 |
# Set Streamlit Page Configuration
|
| 12 |
st.set_page_config(page_title="Optimized GADM Data Processing", layout="wide")
|