Skip to content

Commit

Permalink
fix DTM HH script
Browse files Browse the repository at this point in the history
  • Loading branch information
anikaweinmann committed Apr 24, 2024
1 parent bdcefc4 commit bc26a9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DTM/HH/HH_DTM_tindex.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ def create_tindex_by_filename(data_list):
with RemoteZip(URL) as zip:
for zip_info in zip.infolist():
file_name = zip_info.filename
data_list.append(file_name)
if file_name.endswith(FILE_EXTENSION):
data_list.append(file_name)

# create tindex
tindex_gpkg = create_tindex_by_filename(data_list)
Expand Down

0 comments on commit bc26a9d

Please sign in to comment.