Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]

- Declare the beautifulsoup4 dependency the ES-PV and ES-VC converters import
- ES-MD: find RECINTO.shp wherever the archive puts it
- Update vecorel-cli to v0.2.17:
- GeoJSON is read as UTF-8 as the format mandates, instead of the platform locale (cp1252 on Windows mangled umlauts)
- GeoJSON files with a byte order mark no longer fail to read
Expand Down
4 changes: 2 additions & 2 deletions fiboa_cli/datasets/es_md.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from .es_base import ESBaseConverter


class ESMDConverter(ESBaseConverter):
class ESCLConverter(ESBaseConverter):
sources = {
"https://idem.comunidad.madrid/recursos_cat_geo/Catalogo/recursos/UsoDelSuelo/spacm_sigpac.cm.zip": [
"2024_SIGPAC_shape_toda_la_com/RECINTO.shp"
"**/RECINTO.shp"
]
}
id = "es_md"
Expand Down
Loading