We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8283510 + 1cf15d6 commit 3a8cdf5Copy full SHA for 3a8cdf5
src/opengeodeweb_back/routes/models/blueprint_models.py
@@ -27,11 +27,12 @@ def uuid_to_flat_index():
27
tree = ET.parse(vtm_file_path)
28
root = tree.find("vtkMultiBlockDataSet")
29
uuid_to_flat_index = {}
30
- current_index = 1
+ current_index = 0
31
32
for elem in root.iter():
33
if "uuid" in elem.attrib and elem.tag == "DataSet":
34
uuid_to_flat_index[elem.attrib["uuid"]] = current_index
35
+
36
current_index += 1
37
38
return flask.make_response(
0 commit comments