We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 543eb52 commit 07279f1Copy full SHA for 07279f1
vecorel_cli/conversion/base.py
@@ -186,7 +186,7 @@ def get_data(
186
for path, uri in paths:
187
# e.g. allow "*.shp" to identify the single relevant file without knowing the name in advance
188
if "*" in path:
189
- lst = glob(path)
+ lst = glob(path, recursive=True)
190
assert len(lst) == 1, f"Can not match {path} to a single file"
191
path = lst[0]
192
self.info(f"Reading {path} into GeoDataFrame(s)")
0 commit comments