Skip to content

Commit 1a53afb

Browse files
committed
make variable names unique
1 parent 8ad93e1 commit 1a53afb

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

samples/04_gis_analysts_data_scientists/calculate_post_fire_landslide_risk.ipynb

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@
220220
"map2.layout = Layout(flex=\"1 1\", height=\"500px\", padding=\"10px\")\n",
221221
"map1.content.add(infrared_before)\n",
222222
"map2.content.add(infrared_after)\n",
223-
"box = HBox([map1, map2])\n",
224-
"box"
223+
"box1 = HBox([map1, map2])\n",
224+
"box1"
225225
]
226226
},
227227
{
@@ -644,17 +644,13 @@
644644
"source": [
645645
"# Create three maps to compare before and after imageries\n",
646646
"# and the landslide risk map side by side\n",
647-
"map1 = gis.map(location=\"-122.58, 38.45\")\n",
648-
"map2 = gis.map(location=\"-122.58, 38.45\")\n",
649647
"map3 = gis.map(location=\"-122.58, 38.45\")\n",
650648
"map1.layout = Layout(flex=\"1 1\", height=\"500px\", padding=\"5px\")\n",
651649
"map2.layout = Layout(flex=\"1 1\", height=\"500px\", padding=\"5px\")\n",
652650
"map3.layout = Layout(flex=\"1 1\", height=\"500px\", padding=\"5px\")\n",
653-
"map1.content.add(infrared_before)\n",
654-
"map2.content.add(infrared_after)\n",
655651
"map3.content.add(landslide_risk)\n",
656-
"box = HBox([map1, map2, map3])\n",
657-
"box"
652+
"box2 = HBox([map1, map2, map3])\n",
653+
"box2"
658654
]
659655
},
660656
{

0 commit comments

Comments
 (0)