Skip to content

Commit 83c9b2a

Browse files
committed
Merge 'upstream/master' into jy-release-notes-182
2 parents 52064e7 + 4c52045 commit 83c9b2a

File tree

230 files changed

+16132
-1287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+16132
-1287
lines changed

guide/01-getting-started/install-and-set-up.ipynb

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

guide/01-getting-started/install-older-versions.ipynb

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

guide/01-getting-started/using-the-api.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"metadata": {},
4848
"outputs": [],
4949
"source": [
50-
"gis = GIS(profile='your_online_profile')"
50+
"gis = GIS('home')"
5151
]
5252
},
5353
{

guide/01-getting-started/using-the-jupyter-lab-environment.ipynb

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

guide/03-the-gis/accessing-and-creating-content.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"outputs": [],
7373
"source": [
7474
"# Log into ArcGIS Online\n",
75-
"gis = GIS(profile=\"your_online_profile\")"
75+
"gis = GIS('home')"
7676
]
7777
},
7878
{
@@ -284,7 +284,7 @@
284284
"outputs": [],
285285
"source": [
286286
"from arcgis.gis import GIS\n",
287-
"gis = GIS(profile=\"your_enterprise_profile\")"
287+
"gis = GIS(url='https://pythonapi.playground.esri.com/portal', username='arcgis_python', password='amazing_arcgis_123')"
288288
]
289289
},
290290
{
@@ -858,7 +858,7 @@
858858
"outputs": [],
859859
"source": [
860860
"# connect to ArcGIS Online\n",
861-
"gis2 = GIS(profile=\"your_online_profile\")"
861+
"gis2 = GIS('home')"
862862
]
863863
},
864864
{

guide/03-the-gis/accessing-and-managing-groups.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
],
324324
"source": [
325325
"# connect to GIS with credentials\n",
326-
"gis = GIS(profile='your_enterprise_profile')\n",
326+
"gis = GIS(url='https://pythonapi.playground.esri.com/portal', username='arcgis_python', password='amazing_arcgis_123')\n",
327327
"geocaching_group = gis.groups.create(title='Recreational geocaching',\n",
328328
" tags = 'hobby, geocaching, gps, hide n seek',\n",
329329
" description = 'Group to share your landmarks and games',\n",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"metadata": {},
117117
"outputs": [],
118118
"source": [
119-
"gis = GIS(profile=\"your_online_profile\")"
119+
"gis = GIS('home')"
120120
]
121121
},
122122
{

guide/04-feature-data-and-analysis/checking-out-data-from-feature-layers-using-replicas.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
"metadata": {},
263263
"outputs": [],
264264
"source": [
265-
"portal_gis = GIS(profile='your_enterprise_profile')\n",
265+
"portal_gis = GIS(url='https://pythonapi.playground.esri.com/portal', username='arcgis_python', password='amazing_arcgis_123')\n",
266266
"search_result = portal_gis.content.search(\"Ports in the Western US\", \"Feature Layer\")"
267267
]
268268
},

guide/06-imagery-and-raster-analysis/image_classfication_and_segmentation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"metadata": {},
4040
"outputs": [],
4141
"source": [
42-
"gis = GIS(profile=\"your_enterprise_profile\")"
42+
"gis = GIS(url='https://pythonapi.playground.esri.com/portal', username='arcgis_python', password='amazing_arcgis_123')"
4343
]
4444
},
4545
{

guide/06-imagery-and-raster-analysis/perform-analysis-concepts.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"from arcgis.raster.functions import *\n",
109109
"from IPython.display import display\n",
110110
"\n",
111-
"gis = GIS(profile=\"your_enterprise_profile\")"
111+
"gis = GIS(url='https://pythonapi.playground.esri.com/portal', username='arcgis_python', password='amazing_arcgis_123')"
112112
]
113113
},
114114
{

0 commit comments

Comments
 (0)