Skip to content

Commit e3d2ca3

Browse files
committed
Minor changes to features guides
1 parent 9ffa22b commit e3d2ca3

File tree

5 files changed

+16
-39
lines changed

5 files changed

+16
-39
lines changed

guide/04-feature-data-and-analysis/discovering-suitable-locations-in-feature-data.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"metadata": {},
9999
"outputs": [],
100100
"source": [
101-
"map1.add_layer(bigbear_item)"
101+
"map1.content.add(bigbear_item)"
102102
]
103103
},
104104
{
@@ -137,7 +137,7 @@
137137
"metadata": {},
138138
"outputs": [],
139139
"source": [
140-
"map1.add_layer(trace1)"
140+
"map1.content.add(trace1)"
141141
]
142142
}
143143
],

guide/04-feature-data-and-analysis/part4_query_parcels.ipynb

Lines changed: 0 additions & 23 deletions
Large diffs are not rendered by default.

guide/04-feature-data-and-analysis/part5_merge_parcels.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@
275275
"outputs": [],
276276
"source": [
277277
"map = gis.map(\"Keowns, WI\")\n",
278-
"map.draw(parcels_subset)\n",
278+
"map.content.draw(parcels_subset)\n",
279279
"map.zoom_to_layer(parcels_subset)"
280280
]
281281
},
@@ -299,7 +299,7 @@
299299
],
300300
"source": [
301301
"# Two parcels to be merged:\n",
302-
"map.take_screenshot()"
302+
"map"
303303
]
304304
},
305305
{
@@ -430,7 +430,7 @@
430430
"outputs": [],
431431
"source": [
432432
"map1 = gis.map(\"Keowns, WI\")\n",
433-
"map1.draw(merged_parcel)\n",
433+
"map1.content.draw(merged_parcel)\n",
434434
"map1.zoom_to_layer(merged_parcel)"
435435
]
436436
},
@@ -454,7 +454,7 @@
454454
],
455455
"source": [
456456
"# Two features merged into one\n",
457-
"map1.take_screenshot()"
457+
"map1"
458458
]
459459
},
460460
{

guide/04-feature-data-and-analysis/performing-proximity-analysis-on-feature-data.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"metadata": {},
121121
"outputs": [],
122122
"source": [
123-
"map1.add_layer(ports_item)"
123+
"map1.content.add(ports_item)"
124124
]
125125
},
126126
{
@@ -256,7 +256,7 @@
256256
"metadata": {},
257257
"outputs": [],
258258
"source": [
259-
"map2.add_layer(ports_buffer50.layers[0])"
259+
"map2.content.add(ports_buffer50.layers[0])"
260260
]
261261
},
262262
{
@@ -538,7 +538,7 @@
538538
"metadata": {},
539539
"outputs": [],
540540
"source": [
541-
"map3.add_layer(ports_buffer_lat.layers[0])"
541+
"map3.content.add(ports_buffer_lat.layers[0])"
542542
]
543543
},
544544
{
@@ -600,7 +600,7 @@
600600
"metadata": {},
601601
"outputs": [],
602602
"source": [
603-
"map4.add_layer(stops_item)"
603+
"map4.content.add(stops_item)"
604604
]
605605
},
606606
{
@@ -609,7 +609,7 @@
609609
"metadata": {},
610610
"outputs": [],
611611
"source": [
612-
"map4.add_layer(airport_item)"
612+
"map4.content.add(airport_item)"
613613
]
614614
},
615615
{
@@ -706,7 +706,7 @@
706706
}
707707
],
708708
"source": [
709-
"map4.add_layer(route1['routes_layer'])\n",
709+
"map4.content.add(route1['routes_layer'])\n",
710710
"map4"
711711
]
712712
},

guide/04-feature-data-and-analysis/summarizing-feature-data.ipynb

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)