Skip to content

Commit 368489c

Browse files
committed
Feature Service > Feature Layer
1 parent 833acfc commit 368489c

File tree

4 files changed

+1218
-6
lines changed

4 files changed

+1218
-6
lines changed

Feature Layers.ipynb

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

guide/04 Feature data and analysis/Reading features from feature layers.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,7 @@
15281528
"metadata": {
15291529
"anaconda-cloud": {},
15301530
"kernelspec": {
1531-
"display_name": "Python 3",
1531+
"display_name": "Python [default]",
15321532
"language": "python",
15331533
"name": "python3"
15341534
},

guide/04 Feature data and analysis/Using attachments with feature layers.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Layer Attachments\n",
88
"\n",
9-
"Feature services support adding attachments to features, making them very useful during field data collection. On feature layers that support attachments, accessing `attachments` property, will return an `AttachmentManager` object. This object can be used to list, download, add, delete and update attachments."
9+
"Feature layers support adding attachments to features, making them very useful during field data collection. On feature layers that support attachments, accessing `attachments` property, will return an `AttachmentManager` object. This object can be used to list, download, add, delete and update attachments."
1010
]
1111
},
1212
{
@@ -20,7 +20,7 @@
2020
"# connect to web GIS\n",
2121
"from arcgis.gis import GIS\n",
2222
"gis = GIS(\"portal url\", \"username\",\"password\")\n",
23-
"search_result = gis.content.search(\"Chennai Rainfall\", \"Feature Service\")\n",
23+
"search_result = gis.content.search(\"Chennai Rainfall\", \"Feature Layer\")\n",
2424
"chennai_rainfall = search_result[0]"
2525
]
2626
},
@@ -32,7 +32,7 @@
3232
},
3333
"outputs": [],
3434
"source": [
35-
"#get feature layers from the item\n",
35+
"# get feature layers from the item\n",
3636
"cr_lyr = chennai_rainfall.layers[0]"
3737
]
3838
},
@@ -268,7 +268,7 @@
268268
"metadata": {
269269
"anaconda-cloud": {},
270270
"kernelspec": {
271-
"display_name": "Python 3",
271+
"display_name": "Python [default]",
272272
"language": "python",
273273
"name": "python3"
274274
},

guide/04 Feature data and analysis/features module.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@
6262
}
6363
],
6464
"metadata": {
65+
"anaconda-cloud": {},
6566
"kernelspec": {
66-
"display_name": "Python 3",
67+
"display_name": "Python [default]",
6768
"language": "python",
6869
"name": "python3"
6970
},

0 commit comments

Comments
 (0)