|
31 | 31 | "* [Accessing local GIS Data](#Accessing-local-GIS-data)\n", |
32 | 32 | " * [Example: Reading a Shapefile](#Example:-Reading-a-Shapefile)\n", |
33 | 33 | " * [Example: Reading a Featureclass from FileGDB](#Example:-Reading-a-Featureclass-from-FileGDB)\n", |
34 | | - "* [Saving Spatiall Enabled DataFrames](#Saving-Spatially-Enabled-DataFrames)\n", |
| 34 | + "* [Saving Spatially Enabled DataFrames](#Saving-Spatially-Enabled-DataFrames)\n", |
35 | 35 | " * [Export Options](#Export-Options)\n", |
36 | 36 | " * [Exporting to a Feature Class](#Export-to-Feature-Class)\n", |
37 | 37 | " * [Example: Export a whole dataset to a Shapefile](#Example:-Export-a-whole-dataset-to-a-shapefile:)\n", |
|
58 | 58 | "metadata": {}, |
59 | 59 | "source": [ |
60 | 60 | "## Accessing GIS data\n", |
61 | | - "GIS users need to work with both published layers on remote servers (web layers) and local data, but the ability to manipulate these datasets without permanentently copying the data is lacking. The `Spatial Enabled DataFrame` solves this problem because it is an in-memory object that can read, write and manipulate geospatial data.\n", |
| 61 | + "GIS users need to work with both published layers on remote servers (web layers) and local data, but the ability to manipulate these datasets without permanently copying the data is lacking. The `Spatial Enabled DataFrame` solves this problem because it is an in-memory object that can read, write and manipulate geospatial data.\n", |
62 | 62 | "\n", |
63 | 63 | "The SEDF integrates with Esri's [`ArcPy` site-package](http://pro.arcgis.com/en/pro-app/arcpy/get-started/what-is-arcpy-.htm) as well as the open source [`pyshp`](https://github.com/GeospatialPython/pyshp/), [`shapely`](https://github.com/Toblerity/Shapely) and [`fiona`](https://github.com/Toblerity/Fiona) packages. This means the ArcGIS API for Python SEDF can use either of these geometry engines to provide you options for easily working with geospatial data regardless of your platform. The SEDF transforms data into the formats you desire so you can use Python functionality to analyze and visualize geographic information.\n", |
64 | 64 | "\n", |
|
633 | 633 | "metadata": {}, |
634 | 634 | "source": [ |
635 | 635 | "#### Example: Feature Layer Query Results to a Spatially Enabled DataFrame\n", |
636 | | - "We'll use the `AGE_45_54` column to query the dataframe and return a new `DataFrame` with a subset of records. We can use the built-in [`zip()`](https://docs.python.org/3/library/functions.html#zip) function to print the data frame attribute field names, and then use data frame syntax to view specific attribute fields in the output:" |
| 636 | + "We'll use the `AGE_45_54` column to query the data frame and return a new `DataFrame` with a subset of records. We can use the built-in [`zip()`](https://docs.python.org/3/library/functions.html#zip) function to print the data frame attribute field names, and then use data frame syntax to view specific attribute fields in the output:" |
637 | 637 | ] |
638 | 638 | }, |
639 | 639 | { |
|
775 | 775 | " * [`shapefiles`](http://desktop.arcgis.com/en/arcmap/latest/manage-data/shapefiles/what-is-a-shapefile.htm), \n", |
776 | 776 | " * [`ArcGIS Server Web Services`](https://enterprise.arcgis.com/en/server/latest/publish-services/windows/what-types-of-services-can-you-publish.htm) and [`ArcGIS Online Hosted Feature Layers`](https://doc.arcgis.com/en/arcgis-online/share-maps/publish-features.htm) \n", |
777 | 777 | " * [`OGC Services`](http://www.opengeospatial.org/standards) \n", |
778 | | - "* If the **ArcPy** module is not installed, the SEDF [`from_featureclass`](https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.features.toc.html?arcgis.features.GeoAccessor.from_featureclass#arcgis.features.GeoAccessor.from_featureclass) method only supports consuming an Esri [`shapefile`](http://desktop.arcgis.com/en/arcmap/latest/manage-data/shapefiles/what-is-a-shapefile.htm)\n", |
| 778 | + "* If the **`ArcPy`** module is not installed, the SEDF [`from_featureclass`](https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.features.toc.html?arcgis.features.GeoAccessor.from_featureclass#arcgis.features.GeoAccessor.from_featureclass) method only supports consuming an Esri [`shapefile`](http://desktop.arcgis.com/en/arcmap/latest/manage-data/shapefiles/what-is-a-shapefile.htm)\n", |
779 | 779 | "> Please note that you must install the `pyshp` package to read shapefiles in environments that don't have access to `ArcPy`.\n", |
780 | 780 | " \n", |
781 | 781 | "### Example: Reading a Shapefile\n", |
|
1016 | 1016 | "source": [ |
1017 | 1017 | "### Example: Reading a Featureclass from FileGDB\n", |
1018 | 1018 | "\n", |
1019 | | - "> You must have `fiona` installed if you use the `from_featureclass()` method to read a featureclass from FileGDB with a Python interpreter that does not have access to `ArcPy`.\n" |
| 1019 | + "> You must have `fiona` installed if you use the `from_featureclass()` method to read a feature class from FileGDB with a Python interpreter that does not have access to `ArcPy`.\n" |
1020 | 1020 | ] |
1021 | 1021 | }, |
1022 | 1022 | { |
|
0 commit comments