Spaces:
Sleeping
Sleeping
tidy code
Browse files
app.py
CHANGED
@@ -2,13 +2,14 @@
|
|
2 |
# coding: utf-8
|
3 |
|
4 |
|
5 |
-
import zipfile
|
6 |
import os
|
|
|
7 |
import tempfile
|
8 |
-
import
|
|
|
9 |
import requests
|
10 |
-
import shutil
|
11 |
import streamlit as st
|
|
|
12 |
|
13 |
|
14 |
def elevation_change(bcf_list, z_error_correction_in_metres: float):
|
@@ -115,9 +116,6 @@ def updateZValue(xml_data, xml_element_to_iterate, z_error_correction_in_metres)
|
|
115 |
location_data.find('Z').text = str(new_z)
|
116 |
|
117 |
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
st.markdown(
|
122 |
'''
|
123 |
# Adjust the height of all issues in a BCF file
|
|
|
2 |
# coding: utf-8
|
3 |
|
4 |
|
|
|
5 |
import os
|
6 |
+
import shutil
|
7 |
import tempfile
|
8 |
+
import zipfile
|
9 |
+
|
10 |
import requests
|
|
|
11 |
import streamlit as st
|
12 |
+
import xml.etree.ElementTree as ET
|
13 |
|
14 |
|
15 |
def elevation_change(bcf_list, z_error_correction_in_metres: float):
|
|
|
116 |
location_data.find('Z').text = str(new_z)
|
117 |
|
118 |
|
|
|
|
|
|
|
119 |
st.markdown(
|
120 |
'''
|
121 |
# Adjust the height of all issues in a BCF file
|