Skip to content
Snippets Groups Projects
Commit 04f97f0b authored by Sara Savanovic Djordjevic's avatar Sara Savanovic Djordjevic
Browse files

add: structs.py

parent fad1a5ce
No related branches found
No related tags found
No related merge requests found
# Auto-generated VScode
# Auto-generated by VScode
./vs
# Auto-generated by Android Studio
./idea
\ No newline at end of file
......@@ -37,13 +37,6 @@
</list>
</value>
</entry>
<entry key="cupertino_icons">
<value>
<list>
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/lib" />
</list>
</value>
</entry>
<entry key="fake_async">
<value>
<list>
......@@ -75,7 +68,7 @@
<entry key="http">
<value>
<list>
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.2.0/lib" />
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib" />
</list>
</value>
</entry>
......@@ -199,10 +192,9 @@
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.18.0/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.2.0/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1/lib" />
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/lib" />
......
......@@ -44,7 +44,7 @@ class DefaultPage extends StatelessWidget {
print('Response from server: ${response.body}');
},
child: const Text('Connected to server'),
child: const Text('Some text'),
),
],
),
......
# Geo data relating to a single measurement point using dictionary
point_template = {
"longitude": 0.0,
"latitude": 0.0,
"precipitation": None,
"thickness": 0.0,
"max_weight": 0.0,
"safety_level": 3.0,
"accuracy": 9
}
# Geo data relating to a single measurement point using class
class DataPoint:
def __init__(self, longitude, latitude, precipitation, thickness, max_weight, safety_level, accuracy):
self.longitude = longitude
self.latitude = latitude
self.precipitation = precipitation
self.thickness = thickness
self.max_weight = max_weight
self.safety_level = safety_level
self.accuracy = accuracy
# Test instance
test_instance = DataPoint(longitude=1.5, latitude=2.5, precipitation=10.0, thickness = 10.0, safety_level= 5, max_weight= 80)
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment