Skip to content

Commit 4fcd87c

Browse files
authored
Merge pull request #2228 from xlt208/master
match variable names in the "Editing Features" guide
2 parents 6862e74 + ea4817d commit 4fcd87c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

guide/04-feature-data-and-analysis/editing-features.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898
],
9999
"source": [
100100
"# access the item's feature layers\n",
101-
"ports_layer = portal_item.layers[0]\n",
102-
"ports_layer"
101+
"ports_flayer = portal_item.layers[0]\n",
102+
"ports_flayer"
103103
]
104104
},
105105
{
@@ -118,7 +118,7 @@
118118
"source": [
119119
"# query all the features and display it on a map\n",
120120
"# an empty query string will return all features or the first 1000, whichever is smaller\n",
121-
"ports_fset = ports_layer.query()"
121+
"ports_fset = ports_flayer.query()"
122122
]
123123
},
124124
{
@@ -658,7 +658,7 @@
658658
}
659659
],
660660
"source": [
661-
"ports_layer.properties.capabilities"
661+
"ports_flayer.properties.capabilities"
662662
]
663663
},
664664
{

0 commit comments

Comments
 (0)