Skip to content

Commit 6f8cf21

Browse files
committed
merging andrews sedf changes
2 parents 4fe8ef0 + 2a44a42 commit 6f8cf21

25 files changed

+3912
-6524
lines changed

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

Lines changed: 34 additions & 1030 deletions
Large diffs are not rendered by default.

guide/04-feature-data-and-analysis/summarizing-feature-data.ipynb

Lines changed: 213 additions & 819 deletions
Large diffs are not rendered by default.

guide/04-feature-data-and-analysis/working-with-feature-layers-and-features.ipynb

Lines changed: 477 additions & 539 deletions
Large diffs are not rendered by default.

guide/05-working-with-the-spatial-dataframe/advanced-topics.ipynb

Lines changed: 841 additions & 637 deletions
Large diffs are not rendered by default.
Binary file not shown.

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

Lines changed: 181 additions & 280 deletions
Large diffs are not rendered by default.

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

Lines changed: 379 additions & 1116 deletions
Large diffs are not rendered by default.

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

Lines changed: 38 additions & 110 deletions
Large diffs are not rendered by default.

guide/11-performing-network-analyses/performing-network-analysis-tasks-asynchronously.ipynb

Lines changed: 42 additions & 172 deletions
Large diffs are not rendered by default.

labs/load_spatial_data_frame.ipynb

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@
1212
},
1313
{
1414
"cell_type": "code",
15-
"execution_count": null,
16-
"metadata": {
17-
"collapsed": true
18-
},
15+
"execution_count": 1,
16+
"metadata": {},
1917
"outputs": [],
2018
"source": [
2119
"from arcgis.gis import GIS\n",
22-
"from arcgis.features import SpatialDataFrame"
20+
"import pandas as pd\n",
21+
"from arcgis.features import GeoAccessor, GeoSeriesAccessor"
2322
]
2423
},
2524
{
@@ -32,9 +31,7 @@
3231
{
3332
"cell_type": "code",
3433
"execution_count": null,
35-
"metadata": {
36-
"collapsed": true
37-
},
34+
"metadata": {},
3835
"outputs": [],
3936
"source": [
4037
"gis = GIS(\"https://www.arcgis.com\", \"username\", \"password\")"
@@ -50,9 +47,7 @@
5047
{
5148
"cell_type": "code",
5249
"execution_count": null,
53-
"metadata": {
54-
"collapsed": true
55-
},
50+
"metadata": {},
5651
"outputs": [],
5752
"source": [
5853
"feature_service_srch_results = gis.content.search(query='title: \"Griffith*\" AND type: \"Feature Service\"')\n",
@@ -69,9 +64,7 @@
6964
{
7065
"cell_type": "code",
7166
"execution_count": null,
72-
"metadata": {
73-
"collapsed": true
74-
},
67+
"metadata": {},
7568
"outputs": [],
7669
"source": [
7770
"feature_service_item = feature_service_srch_results[0]\n",
@@ -83,18 +76,16 @@
8376
"cell_type": "markdown",
8477
"metadata": {},
8578
"source": [
86-
"Build the [Spatial Data Frame](https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.features.toc.html#spatialdataframe)!"
79+
"Build the [Spatially Enabled Data Frame](https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.features.toc.html#geoaccessor)!"
8780
]
8881
},
8982
{
9083
"cell_type": "code",
9184
"execution_count": null,
92-
"metadata": {
93-
"collapsed": true
94-
},
85+
"metadata": {},
9586
"outputs": [],
9687
"source": [
97-
"sdf = SpatialDataFrame.from_layer(feature_layer)\n",
88+
"sdf = pd.DataFrame.spatial.from_layer(feature_layer)\n",
9889
"sdf.head()"
9990
]
10091
}
@@ -115,7 +106,7 @@
115106
"name": "python",
116107
"nbconvert_exporter": "python",
117108
"pygments_lexer": "ipython3",
118-
"version": "3.6.3"
109+
"version": "3.6.5"
119110
}
120111
},
121112
"nbformat": 4,

0 commit comments

Comments
 (0)