Spaces:
Runtime error
Runtime error
Commit ·
15ed431
1
Parent(s): 13eb1ca
v0.2.3 sample data loading from aws s3
Browse files
tomorrowcities/content/articles/welcome.md
CHANGED
|
@@ -18,6 +18,14 @@ TCDSE is a web application designed to conduct computational tasks to generate i
|
|
| 18 |
|
| 19 |
## What is New?
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
**Changelog: v0.2.2**
|
| 22 |
|
| 23 |
* Power and Road network analysis is completed.
|
|
|
|
| 18 |
|
| 19 |
## What is New?
|
| 20 |
|
| 21 |
+
**Changelog: v0.2.3**
|
| 22 |
+
|
| 23 |
+
* AWS S3 Sample Data Input mechanism is built
|
| 24 |
+
* popup functionality is implemented
|
| 25 |
+
* layout is now 3-column
|
| 26 |
+
* settings and data import is separated by tabs
|
| 27 |
+
* z-index of map is lowered
|
| 28 |
+
|
| 29 |
**Changelog: v0.2.2**
|
| 30 |
|
| 31 |
* Power and Road network analysis is completed.
|
tomorrowcities/pages/engine.py
CHANGED
|
@@ -33,7 +33,7 @@ layers = solara.reactive({
|
|
| 33 |
'datetime_analysis': datetime.datetime.utcnow(),
|
| 34 |
'road_water_height_threshold': solara.reactive(0.3),
|
| 35 |
'dialog_message_to_be_shown': solara.reactive(None),
|
| 36 |
-
'version': '0.2.
|
| 37 |
'layers' : {
|
| 38 |
'building': {
|
| 39 |
'render_order': 50,
|
|
|
|
| 33 |
'datetime_analysis': datetime.datetime.utcnow(),
|
| 34 |
'road_water_height_threshold': solara.reactive(0.3),
|
| 35 |
'dialog_message_to_be_shown': solara.reactive(None),
|
| 36 |
+
'version': '0.2.3',
|
| 37 |
'layers' : {
|
| 38 |
'building': {
|
| 39 |
'render_order': 50,
|