Skip to content

Commit eb76295

Browse files
committed
Merge 'upstream/next' into jy-24upd-offline
2 parents 26aecec + 9e40c19 commit eb76295

File tree

37 files changed

+12993
-4795
lines changed

37 files changed

+12993
-4795
lines changed

guide/03-the-gis/working-with-different-authentication-schemes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@
535535
"## Storing your credentials locally\n",
536536
"If you are signing in frequently to a particular GIS and would like to store the credentials locally on your computer, then you could do so using the `profile` parameter of your `GIS`.\n",
537537
"\n",
538-
"Persistent profiles for the GIS can be created by giving the GIS authorization credentials and specifying a profile name. The profile stores all of the authorization credentials (except the password) in the user’s home directory in an unencrypted config file named `.arcgisprofile.` The profile securely stores the password in an O.S. specific password manager through the [keyring](https://pypi.python.org/pypi/keyring) python module. (Note: Linux systems may need additional software installed and configured for proper security) Once a profile has been saved, passing the profile parameter by itself uses the authorization credentials saved in the configuration file/password manager by that profile name. Multiple profiles can be created and used in parallel.\n"
538+
"Persistent profiles for the GIS can be created by giving the GIS authorization credentials and specifying a profile name. The profile stores all of the authorization credentials (except the password) in the user’s home directory in an unencrypted config file named `.arcgisprofile.` The profile securely stores the password in an OS specific password manager through the [keyring](https://pypi.python.org/pypi/keyring) python module. (Note: Linux systems may need additional software installed and configured for proper security) Once a profile has been saved, passing the profile parameter by itself uses the authorization credentials saved in the configuration file/password manager by that profile name. Multiple profiles can be created and used in parallel.\n"
539539
]
540540
},
541541
{

guide/04-feature-data-and-analysis/analyzing-patterns-in-feature-data.ipynb

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"metadata": {},
4848
"outputs": [],
4949
"source": [
50-
"map1 = gis.map(\"Tamil Nadu\", zoomlevel = 8)"
50+
"map1 = gis.map(\"Tamil Nadu\")"
5151
]
5252
},
5353
{
@@ -63,7 +63,7 @@
6363
"metadata": {},
6464
"outputs": [],
6565
"source": [
66-
"map1.add_layer(chennai_rainfall, { \"renderer\":\"ClassedSizeRenderer\", \"field_name\":\"RAINFALL\" })"
66+
"map1.content.add(chennai_rainfall)"
6767
]
6868
},
6969
{
@@ -87,6 +87,17 @@
8787
"![image-chennai-rainfall.png](attachment:image-chennai-rainfall.png)"
8888
]
8989
},
90+
{
91+
"cell_type": "code",
92+
"execution_count": null,
93+
"metadata": {},
94+
"outputs": [],
95+
"source": [
96+
"renderer_manager = map1.content.renderer(0)\n",
97+
"smart_map_manager = renderer_manager.smart_mapping()\n",
98+
"smart_map_manager.class_breaks_renderer(break_type=\"size\", field=\"RAINFALL\")"
99+
]
100+
},
90101
{
91102
"cell_type": "markdown",
92103
"metadata": {},
@@ -131,7 +142,7 @@
131142
"metadata": {},
132143
"outputs": [],
133144
"source": [
134-
"interpolated_map = gis.map(\"Tamil Nadu\", zoomlevel = 8)"
145+
"interpolated_map = gis.map(\"Tamil Nadu\")"
135146
]
136147
},
137148
{
@@ -140,7 +151,7 @@
140151
"metadata": {},
141152
"outputs": [],
142153
"source": [
143-
"interpolated_map.add_layer(interpolated_rf['result_layer'])"
154+
"interpolated_map.content.add(interpolated_rf['result_layer'])"
144155
]
145156
},
146157
{

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

Lines changed: 78 additions & 58 deletions
Large diffs are not rendered by default.

guide/09-finding-places-with-geocoding/part2_locating_addresses.ipynb

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

guide/09-finding-places-with-geocoding/part3_finding_point_of_interests.ipynb

Lines changed: 835 additions & 1013 deletions
Large diffs are not rendered by default.

guide/09-finding-places-with-geocoding/part4_batch_geocoding.ipynb

Lines changed: 324 additions & 331 deletions
Large diffs are not rendered by default.

guide/10-mapping-and-visualization/part4_visualizing_time_enabled_data_on_the_map_widget.ipynb

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

guide/13-managing-arcgis-applications/cloning-complex-apps.ipynb

Lines changed: 185 additions & 157 deletions
Large diffs are not rendered by default.

guide/14-deep-learning/feature_categorization.ipynb

Lines changed: 0 additions & 1 deletion
This file was deleted.

guide/17-working-with-knowledge-graphs/part3_edit_knowledge_graph.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
"source": [
193193
"#### Adds\n",
194194
"\n",
195-
"Adding new types involves forming the type objects and pushing them into the data model of the knowledge graph using [knowledge_graph.named_object_type_adds()](https://developers.arcgis.com/python/api-reference/arcgis.graph.html#arcgis.graph.KnowledgeGraph.named_object_type_adds). Named types (entity and relationship types) can be created in bluk or individually as needed. The following example shows creating these named types all at the same time:"
195+
"Adding new types involves forming the type objects and pushing them into the data model of the knowledge graph using [knowledge_graph.named_object_type_adds()](https://developers.arcgis.com/python/api-reference/arcgis.graph.html#arcgis.graph.KnowledgeGraph.named_object_type_adds). Named types (entity and relationship types) can be created in bulk or individually as needed. The following example shows creating these named types all at the same time:"
196196
]
197197
},
198198
{
@@ -456,7 +456,7 @@
456456
"name": "python",
457457
"nbconvert_exporter": "python",
458458
"pygments_lexer": "ipython3",
459-
"version": "3.9.11"
459+
"version": "3.10.14"
460460
},
461461
"vscode": {
462462
"interpreter": {
@@ -465,5 +465,5 @@
465465
}
466466
},
467467
"nbformat": 4,
468-
"nbformat_minor": 2
468+
"nbformat_minor": 4
469469
}

0 commit comments

Comments
 (0)