Skip to content

Commit e29be67

Browse files
committed
update link endpoints and change interal api references to relative
1 parent acd19a9 commit e29be67

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"- Synchronize replica\n",
1212
"- Unregister replica\n",
1313
"\n",
14-
"To learn more about this feature, refer to the [documentation here](http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#//02r300000112000000)"
14+
"To learn more about this feature, refer to the [Sync Overview](https://developers.arcgis.com/rest/services-reference/enterprise/sync-overview/) documentation."
1515
]
1616
},
1717
{
@@ -204,7 +204,7 @@
204204
"cell_type": "markdown",
205205
"metadata": {},
206206
"source": [
207-
"As you can see, there are plenty of replicas on this layer. Let us view one of it"
207+
"As you can see, there are plenty of replicas on this layer. Let's view one:"
208208
]
209209
},
210210
{
@@ -233,7 +233,7 @@
233233
"metadata": {},
234234
"source": [
235235
"### Create a replica\n",
236-
"Now, we'll create our own replica of this feature layer. The `create()` method accepts a number of parameters allowing you to adjust what needs to be replicated and customize other options. For more information on this operation, scroll down on the [SyncManager documentation](https://developers.arcgis.com/python/api-reference/arcgis.features.managers.html#syncmanager) to the function.\n",
236+
"Now, we'll create our own replica of this feature layer. The `create()` method accepts a number of parameters allowing you to adjust what needs to be replicated and customize other options. For more information on this operation, scroll down on the [SyncManager documentation](/python/api-reference/arcgis.features.managers.html#arcgis.features.managers.SyncManager) to the function.\n",
237237
"\n",
238238
"The full capability of the sync operation allows you to check out data from a feature layer, make edits, and sync the deltas (changes) back to the server in order to update the features. This is popular in use cases which involve client applications such as ArcGIS Runtime or ArcGIS Desktop applications that check out data, go offline (such as in areas where network connectivity is limited), make edits, then synchronize the data back to the server and update the features. The capability allows multiple clients to do this in parallel, thus enabling a large data collection effort.\n",
239239
"\n",
@@ -706,7 +706,7 @@
706706
"name": "python",
707707
"nbconvert_exporter": "python",
708708
"pygments_lexer": "ipython3",
709-
"version": "3.10.14"
709+
"version": "3.11.0"
710710
},
711711
"toc": {
712712
"base_numbering": 1,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Editing Features\n",
88
"\n",
9-
"The ArcGIS API for Python makes programmatic editing of features a breeze. In this guide, we'll cover the `edit_features()` method on the `FeatureLayer` object, which is a great way to add, update and delete features from a point feature layer. For more about the function, refer to the [reference page for the FeatureLayer class](https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html#featurelayer) and scroll down to `edit_features()`."
9+
"The ArcGIS API for Python makes programmatic editing of features a breeze. In this guide, we'll cover the `edit_features()` method on the `FeatureLayer` object, which is a great way to add, update and delete features from a point feature layer. For more about the function, refer to the [reference page for the FeatureLayer class](/python/api-reference/arcgis.features.toc.html#arcgis.features.FeatureLayer) and scroll down to `edit_features()`."
1010
]
1111
},
1212
{
@@ -1457,7 +1457,7 @@
14571457
"name": "python",
14581458
"nbconvert_exporter": "python",
14591459
"pygments_lexer": "ipython3",
1460-
"version": "3.10.14"
1460+
"version": "3.11.0"
14611461
},
14621462
"toc": {
14631463
"base_numbering": 1,

0 commit comments

Comments
 (0)