feat: AR-QGISS57Converter initial commit
This commit is contained in:
+14
@@ -4,13 +4,27 @@ __pycache__/
|
||||
*.pyo
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
.env
|
||||
.env.*
|
||||
*.egg-info/
|
||||
|
||||
# PyInstaller — carpeta de build intermedia (no necesaria)
|
||||
build/
|
||||
dist/
|
||||
*.spec
|
||||
|
||||
# S-57 output files (large binary charts)
|
||||
*.000
|
||||
|
||||
# Logs
|
||||
build_log.txt
|
||||
*.log
|
||||
|
||||
# Large source documents (PDFs)
|
||||
*.pdf
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.bak
|
||||
|
||||
Binary file not shown.
+2
-1
@@ -1,6 +1,7 @@
|
||||
import geopandas as gpd
|
||||
|
||||
path = r"C:\Users\aerom\CO1CO01M.000"
|
||||
import sys as _sys
|
||||
path = _sys.argv[1] if len(_sys.argv) > 1 else "CO1CO01M.000"
|
||||
for layer in ["COALNE", "LNDARE", "LNDMRK", "M_COVR"]:
|
||||
try:
|
||||
gdf = gpd.read_file(path, layer=layer)
|
||||
|
||||
Reference in New Issue
Block a user