Skip to content

Commit a77b510

Browse files
authored
Merge pull request #1912 from Esri/geoenrich_part2
Second part of Geoenrichment changes
2 parents 9f83060 + 5a7e658 commit a77b510

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

guide/12-enrich-data-with-thematic-information/part3_where_to_enrich_named_stat_areas.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@
275275
"outputs": [],
276276
"source": [
277277
"# Plot on a map\n",
278-
"state_map.draw(us_state.geometry)"
278+
"state_map.content.draw(us_state.geometry)"
279279
]
280280
},
281281
{
@@ -381,7 +381,7 @@
381381
],
382382
"source": [
383383
"# Create a map\n",
384-
"county_map = gis.map('California',6)\n",
384+
"county_map = gis.map('California')\n",
385385
"county_map"
386386
]
387387
},
@@ -392,7 +392,7 @@
392392
"outputs": [],
393393
"source": [
394394
"# Plot on a map\n",
395-
"county_map.draw(sb_county.geometry)"
395+
"county_map.content.draw(sb_county.geometry)"
396396
]
397397
},
398398
{
@@ -653,7 +653,7 @@
653653
"outputs": [],
654654
"source": [
655655
"# Plot on a map\n",
656-
"zip_map.draw(zip_92373.geometry)"
656+
"zip_map.content.draw(zip_92373.geometry)"
657657
]
658658
},
659659
{
@@ -1017,7 +1017,7 @@
10171017
],
10181018
"source": [
10191019
"# Create a map\n",
1020-
"district_map = gis.map('New Delhi, India', 9)\n",
1020+
"district_map = gis.map('New Delhi, India')\n",
10211021
"district_map"
10221022
]
10231023
},
@@ -1028,7 +1028,7 @@
10281028
"outputs": [],
10291029
"source": [
10301030
"# Plot on a map\n",
1031-
"district_map.draw(district.geometry)"
1031+
"district_map.content.draw(district.geometry)"
10321032
]
10331033
},
10341034
{
@@ -1198,7 +1198,7 @@
11981198
}
11991199
],
12001200
"source": [
1201-
"usamap = gis.map('United States', zoomlevel=4)\n",
1201+
"usamap = gis.map('United States')\n",
12021202
"usamap"
12031203
]
12041204
},
@@ -1213,7 +1213,7 @@
12131213
"outputs": [],
12141214
"source": [
12151215
"for riverside in riversides_in_usa:\n",
1216-
" usamap.draw(riverside.geometry)"
1216+
" usamap.content.draw(riverside.geometry)"
12171217
]
12181218
},
12191219
{

guide/12-enrich-data-with-thematic-information/part4_what_to_enrich_datacollections_analysisvariables.ipynb

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)