Initial commit — QGIS S-57 Converter

This commit is contained in:
2026-05-04 23:03:19 -04:00
commit eb12a58cb7
41 changed files with 8896 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import geopandas as gpd
path = r"C:\Users\aerom\CO1CO01M.000"
for layer in ["COALNE", "LNDARE", "LNDMRK", "M_COVR"]:
try:
gdf = gpd.read_file(path, layer=layer)
nulls = gdf.geometry.isna().sum()
print(f"{layer}: {len(gdf)} features, {nulls} sin geometria")
except Exception as e:
print(f"{layer}: ERROR - {e}")