Skip to content
Merged
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
2 changes: 1 addition & 1 deletion vecorel_cli/conversion/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def get_data(
for path, uri in paths:
# e.g. allow "*.shp" to identify the single relevant file without knowing the name in advance
if "*" in path:
lst = glob(path)
lst = glob(path, recursive=True)
assert len(lst) == 1, f"Can not match {path} to a single file"
path = lst[0]
self.info(f"Reading {path} into GeoDataFrame(s)")
Expand Down
Loading