Skip to content

Commit 1507c70

Browse files
authored
Merge pull request #325 from jyaistMap/jy-fix-links-preview
Fixed various hyperlink errors in the guide
2 parents e699d03 + 2cfa1bc commit 1507c70

File tree

7 files changed

+35
-77
lines changed

7 files changed

+35
-77
lines changed

guide/02-api-overview/release-notes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
"#### New\n",
230230
"\n",
231231
"* Added full capabilities to install ```arcgis``` package with [```pip```](https://pip.pypa.io/en/stable/)\n",
232-
"* Added ```Upload Manager``` to aid in [upload](https://developers.arcgis.com/rest/services-reference/upload.htm\") operations to the server\n",
232+
"* Added ```Upload Manager``` to aid in [upload](https://developers.arcgis.com/rest/services-reference/upload.htm) operations to the server\n",
233233
"* Added [```shapely```](https://toblerity.org/shapely/manual.html) support to the [```Spatial DataFrame```](https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.features.toc.html#spatialdataframe)\n",
234234
"* Added ```is_empty``` property for checking ```geometry```\n",
235235
"* Added support for [```GeoJSON```](http://geojson.org/) [```LineStrings```](https://tools.ietf.org/html/rfc7946#section-3.1.4), and [```Polygons```](https://tools.ietf.org/html/rfc7946#section-3.1.6)\n",

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

Lines changed: 23 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
{
3030
"cell_type": "code",
3131
"execution_count": null,
32-
"metadata": {
33-
"collapsed": false
34-
},
32+
"metadata": {},
3533
"outputs": [
3634
{
3735
"data": {
@@ -77,9 +75,7 @@
7775
{
7876
"cell_type": "code",
7977
"execution_count": null,
80-
"metadata": {
81-
"collapsed": false
82-
},
78+
"metadata": {},
8379
"outputs": [
8480
{
8581
"data": {
@@ -127,9 +123,7 @@
127123
{
128124
"cell_type": "code",
129125
"execution_count": null,
130-
"metadata": {
131-
"collapsed": false
132-
},
126+
"metadata": {},
133127
"outputs": [
134128
{
135129
"data": {
@@ -167,9 +161,7 @@
167161
{
168162
"cell_type": "code",
169163
"execution_count": null,
170-
"metadata": {
171-
"collapsed": false
172-
},
164+
"metadata": {},
173165
"outputs": [
174166
{
175167
"data": {
@@ -197,9 +189,7 @@
197189
{
198190
"cell_type": "code",
199191
"execution_count": null,
200-
"metadata": {
201-
"collapsed": false
202-
},
192+
"metadata": {},
203193
"outputs": [
204194
{
205195
"name": "stdout",
@@ -237,9 +227,7 @@
237227
{
238228
"cell_type": "code",
239229
"execution_count": null,
240-
"metadata": {
241-
"collapsed": false
242-
},
230+
"metadata": {},
243231
"outputs": [
244232
{
245233
"data": {
@@ -291,9 +279,7 @@
291279
{
292280
"cell_type": "code",
293281
"execution_count": null,
294-
"metadata": {
295-
"collapsed": false
296-
},
282+
"metadata": {},
297283
"outputs": [
298284
{
299285
"data": {
@@ -354,9 +340,7 @@
354340
{
355341
"cell_type": "code",
356342
"execution_count": null,
357-
"metadata": {
358-
"collapsed": false
359-
},
343+
"metadata": {},
360344
"outputs": [
361345
{
362346
"data": {
@@ -377,9 +361,7 @@
377361
{
378362
"cell_type": "code",
379363
"execution_count": null,
380-
"metadata": {
381-
"collapsed": false
382-
},
364+
"metadata": {},
383365
"outputs": [
384366
{
385367
"data": {
@@ -411,9 +393,7 @@
411393
{
412394
"cell_type": "code",
413395
"execution_count": null,
414-
"metadata": {
415-
"collapsed": false
416-
},
396+
"metadata": {},
417397
"outputs": [
418398
{
419399
"data": {
@@ -443,9 +423,7 @@
443423
{
444424
"cell_type": "code",
445425
"execution_count": null,
446-
"metadata": {
447-
"collapsed": false
448-
},
426+
"metadata": {},
449427
"outputs": [
450428
{
451429
"data": {
@@ -467,7 +445,7 @@
467445
"cell_type": "markdown",
468446
"metadata": {},
469447
"source": [
470-
"The method returns a dictionary with information on which users could not be added. As seen on the guide for [managing users](/accessing-and-managing-users), users could have custom privileges preventing them from joining groups. In such occasions, you would get the names of those users in this return list.\n",
448+
"The method returns a dictionary with information on which users could not be added. As seen on the guide for [managing users](https://developers.arcgis.com/python/guide/accessing-and-managing-users/), users could have custom privileges preventing them from joining groups. In such occasions, you would get the names of those users in this return list.\n",
471449
"\n",
472450
"### Removing users from a group\n",
473451
"You can remove users from a group by calling the `remove_users()` method and passing the list of usernames to be removed. The method returns you a dictionary containing those users who cannot be removed."
@@ -476,9 +454,7 @@
476454
{
477455
"cell_type": "code",
478456
"execution_count": null,
479-
"metadata": {
480-
"collapsed": false
481-
},
457+
"metadata": {},
482458
"outputs": [
483459
{
484460
"data": {
@@ -499,9 +475,7 @@
499475
{
500476
"cell_type": "code",
501477
"execution_count": null,
502-
"metadata": {
503-
"collapsed": false
504-
},
478+
"metadata": {},
505479
"outputs": [
506480
{
507481
"data": {
@@ -532,9 +506,7 @@
532506
{
533507
"cell_type": "code",
534508
"execution_count": null,
535-
"metadata": {
536-
"collapsed": false
537-
},
509+
"metadata": {},
538510
"outputs": [
539511
{
540512
"data": {
@@ -564,9 +536,7 @@
564536
{
565537
"cell_type": "code",
566538
"execution_count": null,
567-
"metadata": {
568-
"collapsed": false
569-
},
539+
"metadata": {},
570540
"outputs": [
571541
{
572542
"data": {
@@ -586,9 +556,7 @@
586556
{
587557
"cell_type": "code",
588558
"execution_count": null,
589-
"metadata": {
590-
"collapsed": false
591-
},
559+
"metadata": {},
592560
"outputs": [
593561
{
594562
"data": {
@@ -616,9 +584,7 @@
616584
{
617585
"cell_type": "code",
618586
"execution_count": null,
619-
"metadata": {
620-
"collapsed": false
621-
},
587+
"metadata": {},
622588
"outputs": [
623589
{
624590
"data": {
@@ -639,9 +605,7 @@
639605
{
640606
"cell_type": "code",
641607
"execution_count": null,
642-
"metadata": {
643-
"collapsed": false
644-
},
608+
"metadata": {},
645609
"outputs": [
646610
{
647611
"data": {
@@ -662,9 +626,7 @@
662626
{
663627
"cell_type": "code",
664628
"execution_count": null,
665-
"metadata": {
666-
"collapsed": false
667-
},
629+
"metadata": {},
668630
"outputs": [
669631
{
670632
"data": {
@@ -692,9 +654,7 @@
692654
{
693655
"cell_type": "code",
694656
"execution_count": null,
695-
"metadata": {
696-
"collapsed": false
697-
},
657+
"metadata": {},
698658
"outputs": [
699659
{
700660
"data": {
@@ -721,9 +681,7 @@
721681
{
722682
"cell_type": "code",
723683
"execution_count": null,
724-
"metadata": {
725-
"collapsed": false
726-
},
684+
"metadata": {},
727685
"outputs": [
728686
{
729687
"data": {
@@ -757,7 +715,7 @@
757715
"name": "python",
758716
"nbconvert_exporter": "python",
759717
"pygments_lexer": "ipython3",
760-
"version": "3.5.2"
718+
"version": "3.6.5"
761719
}
762720
},
763721
"nbformat": 4,

guide/03-the-gis/managing-your-content.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"source": [
2424
"<a id=\"properties-of-an-item\"></a>\n",
2525
"## Properties of an item\n",
26-
"An `Item` in your GIS is rich with multiple properties. You can access them as properties on the [`Item`]((https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#arcgis.gis.Item)) object;"
26+
"An `Item` in your GIS is rich with multiple properties. You can access them as properties on the [`Item`](https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#item) object;"
2727
]
2828
},
2929
{
@@ -880,7 +880,7 @@
880880
"name": "python",
881881
"nbconvert_exporter": "python",
882882
"pygments_lexer": "ipython3",
883-
"version": "3.6.2"
883+
"version": "3.6.5"
884884
}
885885
},
886886
"nbformat": 4,

guide/03-the-gis/the-gis-module.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
" * [**UserManager**](https://developers.arcgis.com/python/guide/accessing-and-managing-users/) : to manage users\n",
4141
" * [**RoleManager**](https://developers.arcgis.com/python/guide/accessing-and-managing-users#about-user-roles) : to create and manage roles\n",
4242
" * [**GroupManager**](https://developers.arcgis.com/python/guide/accessing-and-managing-groups/) : to manage groups in the GIS \n",
43-
" * [**ContentManager**](https://developers.arcgis.com/python/guide/accessing-and-creating-your-contents/) : to access, add, modify, delete GIS content\n",
43+
" * [**ContentManager**](https://developers.arcgis.com/python/guide/accessing-and-creating-content/) : to access, add, modify, delete GIS content\n",
4444
"\n",
45-
"This section of the guide helps you get familiar with the `gis` module through focused examples and narrative text. Refer to the sample notebooks for [Org administrators](https://developers.arcgis.com/python/sample-notebooks/Faces-of-GIS/) to observe how this module can be used to automate the management of your GIS."
45+
"This section of the guide helps you get familiar with the `gis` module through focused examples and narrative text. Refer to the sample notebooks for [Org administrators](https://developers.arcgis.com/python/sample-notebooks/) to observe how this module can be used to automate the management of your GIS."
4646
]
4747
}
4848
],
@@ -63,7 +63,7 @@
6363
"name": "python",
6464
"nbconvert_exporter": "python",
6565
"pygments_lexer": "ipython3",
66-
"version": "3.6.1"
66+
"version": "3.6.5"
6767
}
6868
},
6969
"nbformat": 4,

guide/05-working-with-the-spatially-enabled-dataframe/introduction-to-the-spatially-enabled-dataframe.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@
10511051
"name": "python",
10521052
"nbconvert_exporter": "python",
10531053
"pygments_lexer": "ipython3",
1054-
"version": "3.6.6"
1054+
"version": "3.6.5"
10551055
}
10561056
},
10571057
"nbformat": 4,

guide/05-working-with-the-spatially-enabled-dataframe/visualizing-data-with-the-spatially-enabled-dataframe.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"- Works on features and attributes simultaneously, eliminating to a great extent the need to iterate over all features (rows)\n",
1515
"- Handles reading and writing to multiple formats aiding data conversion\n",
1616
"\n",
17-
"Checkout the [Introduction to Spatially Enabled DataFrame](/python/guide/features-module/introduction-to-spatially-enabled-dataframe) guide to learn how to create a Spatially Enabled DataFrame."
17+
"Checkout the [Introduction to Spatially Enabled DataFrame](https://developers.arcgis.com/python/guide/introduction-to-the-spatially-enabled-dataframe/) guide to learn how to create a Spatially Enabled DataFrame."
1818
]
1919
},
2020
{
@@ -275,7 +275,7 @@
275275
"cell_type": "markdown",
276276
"metadata": {},
277277
"source": [
278-
"> Note: If the above cell looks new to you, please checkout the [Introduction to Spatially Enabled DataFrame](/python/guide/features-module/introduction-to-spatial-dataframe) guide."
278+
"> Note: If the above cell looks new to you, please checkout the [Introduction to Spatially Enabled DataFrame](https://developers.arcgis.com/python/guide/introduction-to-the-spatially-enabled-dataframe/) guide."
279279
]
280280
},
281281
{
@@ -1812,7 +1812,7 @@
18121812
"name": "python",
18131813
"nbconvert_exporter": "python",
18141814
"pygments_lexer": "ipython3",
1815-
"version": "3.6.6"
1815+
"version": "3.6.5"
18161816
}
18171817
},
18181818
"nbformat": 4,

guide/10-mapping-and-visualization/working-with-web-maps-and-web-scenes.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@
672672
"metadata": {},
673673
"source": [
674674
"### Updating a web scene\n",
675-
"The `WebScene` object provides an `update()` method that allows you to modify a web scene and save those changes back. To update a web scene, you modify its definition by changing the adding, removing or changing the values of its keys and then call the update() method. Refer to the sample notebook on [using and updating a web scene](https://developers.arcgis.com/python/sample-notebooks/using-and-updating-GIS-content/#Using-and-updating-a-web-scene) for an example."
675+
"The `WebScene` object provides an `update()` method that allows you to modify a web scene and save those changes back. To update a web scene, you modify its definition by changing the adding, removing or changing the values of its keys and then call the update() method. Refer to the sample notebook on [using and updating a web scene](https://developers.arcgis.com/python/sample-notebooks/using-and-updating-gis-content/#Using-and-updating-a-web-scene) for an example."
676676
]
677677
}
678678
],
@@ -693,7 +693,7 @@
693693
"name": "python",
694694
"nbconvert_exporter": "python",
695695
"pygments_lexer": "ipython3",
696-
"version": "3.5.2"
696+
"version": "3.6.5"
697697
}
698698
},
699699
"nbformat": 4,

0 commit comments

Comments
 (0)