ArcGIS Notebooks Basics Flashcards
What bridges the gap between traditional ArcGIS users and data-focused Python developers?
ArcGIS Notebooks
ArcGIS users and Python developers can now create notebooks that use the spatial statistical capabilities found in both ArcGIS Pro and Python.
Combining ArcGIS Pro with what provides endless possibilities for performing complex data analysis and for displaying descriptive analysis visualizations?
ArcGIS Notebooks
What data types that can be loaded into a notebook?
Hosted GIS services, a local file system, tables, CSV files, and even websites
ArcGIS Notebooks provides access to a wide breadth of Python libraries and tools for performing GIS tasks. Numerous libraries are available like?
Analyzing patterns, enriching data, finding locations, summarizing data, discovering proximity, and analyzing elevation.
With Notebooks when performing complex tasks, it is important to follow the analysis workflow to ensure that analysis results accurately find answers for the initial analysis question. What is the analysis workflow? (five steps)
1) Data Wrangling 2) Cleaning 3) Engineering 4) Exploration 5) Visualization
What is the first and potentially the most important step in the analysis workflow? It is the process of transforming data from one format into another format so that it can be used to discover patterns. Just as the name implies, it is about finding, transforming, and storing the data in a database for future use.
Data wrangling
For example, data wrangling could be finding a table containing real-world coordinate fields and converting the table to a feature class in a geodatabase.
Data has a high probability of being unorganized, and you will have to work on the data before the data can be used. This step is known as _____ the data. This step may include actions such as correcting spelling errors, populating empty fields, identifying duplicate records, removing errors, and standardizing datasets.
cleaning
For example, standardizing datasets could involve renaming field names for many tables in a database.
This data step focuses on data collection and building mechanisms for performing analysis of the cleaned data. The data collection aspect of data it focuses on gathering the best data available for performing analysis. Mechanisms are designed and built for performing analysis of the data in real-world scenarios.
engineering
For example, ModelBuilder allows GIS analysts the ability to build a model (mechanism) to perform analysis based on a cleaned feature class.
Data what is the step in which the engineering mechanisms are used to perform analysis to identify the distribution of data values, the presence of outliers, and relationships between different data variables. It can be accomplished using ArcGIS Pro by displaying the analysis results in a map or chart.
exploration
The last step of the workflow is to ______ the exploration results. Two primary purposes for it include exploring the analysis results and communicating the results. Exploring thm allows you to discover other patterns or analyses to be performed. They could include charts, plots, graphs, maps, or even page layouts.
visualize
T/F: An ArcGIS notebook using the ArcPy API can only reference data located on the computer where the notebook is being run.
False
Which analysis workflow step is specific to performing GIS tasks?
Exploration
Which process is responsible for processing an ArcGIS notebook?
Jupyter kernel
Which two ArcGIS notebook output types can be used to share analysis results as a story?
Tabels, Maps
Before you can load data into your ArcGIS notebook using an ArcGIS Python API, you must first do what?
connect to the GIS where the data is located.
Using one of the imported libraries, you can use objects and methods to connect to a local files system to access data such as a file-based geodatabase or a GIS server hosting content.