Top 200 ArcGIS Interview Questions & Answers
Basic Questions (1-80)
Q1. What is ArcGIS?
ArcGIS is a geographic information system (GIS) platform developed by Esri that allows users to create, manage, analyze, and visualize geographic data. It includes desktop applications (ArcGIS Pro, ArcMap), online services (ArcGIS Online), and enterprise solutions (ArcGIS Enterprise).
Q2. What is the difference between ArcGIS Pro and ArcMap?
ArcGIS Pro is the modern 64-bit desktop GIS application that supports 2D and 3D workflows, Python 3, and ribbon-based UI, while ArcMap is the older 32-bit application with a classic toolbar UI. Esri has shifted focus to ArcGIS Pro and ArcMap is being retired.
Q3. What are shapefiles in ArcGIS?
Shapefiles are a popular geospatial vector data format developed by Esri that stores the geometry (points, lines, polygons) and attribute data of geographic features. A shapefile actually consists of multiple files (.shp, .shx, .dbf, and optionally .prj, .cpg).
Q4. What is a geodatabase in ArcGIS?
A geodatabase is Esri's native data format for ArcGIS that stores geographic datasets in a central repository. Types include File Geodatabase (single user), Personal Geodatabase (Microsoft Access-based), and Enterprise Geodatabase (multiuser, RDBMS-backed like Oracle or SQL Server).
Q5. What is the difference between vector and raster data?
Vector data represents geographic features using discrete geometric shapes (points, lines, polygons) with associated attributes, while raster data represents continuous phenomena as a grid of cells (pixels) where each cell has a value. Vector is precise for discrete features; raster is better for continuous surfaces like elevation.
Q6. What is a feature class?
A feature class is a collection of geographic features with the same geometry type (point, line, polygon), the same attributes, and the same spatial reference. Feature classes are stored in geodatabases and are the fundamental unit of geographic data in ArcGIS.
Q7. What is a spatial reference system?
A spatial reference system (SRS) defines how geographic coordinates are mapped to locations on the Earth's surface. It includes a coordinate system (geographic or projected), a datum, and projection parameters that ensure spatial data from different sources can be overlaid correctly.
Q8. What is WGS84?
WGS84 (World Geodetic System 1984) is a global geographic coordinate system and datum used as the standard for GPS and most worldwide mapping. It defines the Earth's shape as an ellipsoid and provides a framework for expressing locations in latitude/longitude.
Q9. What is a map projection?
A map projection is a mathematical method that transforms the three-dimensional Earth's surface onto a two-dimensional flat map. All projections introduce some distortion in shape, area, distance, or direction, so the choice of projection depends on the purpose of the map.
Q10. What is ArcGIS Online?
ArcGIS Online is Esri's cloud-based GIS platform that allows users to create, share, and use maps, apps, and data through a web browser. It provides collaboration tools, hosted feature layers, web maps, and access to Esri's basemaps and Living Atlas content.
Q11. What is a basemap in ArcGIS?
A basemap is a background map layer that provides geographic context (streets, imagery, topography, etc.) for operational data layers placed on top of it. ArcGIS includes standard basemaps from Esri such as World Imagery, World Street Map, and OpenStreetMap.
Q12. What is the attribute table in ArcGIS?
The attribute table is a tabular representation of the non-spatial data associated with a feature class or layer. Each row corresponds to one geographic feature and each column (field) stores a specific attribute value such as name, area, population, or category.
Q13. What is a layer file (.lyrx)?
A layer file stores the display properties (symbology, labeling, definition queries, visibility ranges) of a layer independently from the data source. In ArcGIS Pro, .lyrx files are used to save and share layer styling configurations.
Q14. What is geoprocessing in ArcGIS?
Geoprocessing is the execution of tools that manipulate geographic data to perform spatial analysis, data management, and data conversion tasks. ArcGIS provides hundreds of geoprocessing tools accessible through the Geoprocessing pane, toolboxes, or Python scripting.
Q15. What is ModelBuilder in ArcGIS?
ModelBuilder is a visual programming environment in ArcGIS that allows users to create, edit, and manage geoprocessing workflows. Models chain together tools and datasets into a flowchart-style diagram that can be run, shared, and parameterized as custom tools.
Q16. What is ArcPy?
ArcPy is a Python site package that provides access to ArcGIS geoprocessing tools, extensions, and data management functions through Python scripting. It enables automation of repetitive tasks, custom tool development, and batch processing of spatial data.
Q17. What is a topology in ArcGIS?
A topology defines and enforces spatial relationships (rules) between feature classes in a geodatabase, such as polygons must not overlap, lines must not have dangles, or points must be covered by polygon boundaries. It helps maintain data integrity and identify errors.
Q18. What is a TIN in ArcGIS?
A TIN (Triangulated Irregular Network) is a vector-based surface model that represents terrain using a network of non-overlapping triangles. Each triangle vertex stores an elevation value, making TINs useful for detailed terrain analysis and 3D visualization.
Q19. What is a DEM?
A DEM (Digital Elevation Model) is a raster representation of terrain elevation where each cell stores a height value above a reference datum. DEMs are used for slope analysis, viewshed analysis, watershed delineation, and hydrological modeling.
Q20. What is the Select by Attributes tool?
Select by Attributes is a query tool that selects features in a layer based on their attribute values using a SQL-like expression. Selected features are highlighted on the map and can be used in subsequent operations, exported, or further analyzed.
Q21. What is the Select by Location tool?
Select by Location selects features in one layer based on their spatial relationship to features in another layer, using criteria such as intersects, contains, within, touches, or is within a distance. It is fundamental to spatial query and analysis workflows.
Q22. What is a feature dataset?
A feature dataset is a container within a geodatabase that groups related feature classes that share the same spatial reference. Feature datasets are required to store network datasets, topologies, and geometric networks that involve relationships between feature classes.
Q23. What is symbology in ArcGIS?
Symbology refers to the visual representation of geographic features on a map using colors, sizes, shapes, and patterns. ArcGIS supports multiple symbology methods: single symbol, unique values, graduated colors, graduated symbols, proportional symbols, and heat maps.
Q24. What are map extents in ArcGIS?
Map extent refers to the geographic area visible in the map view, defined by the minimum and maximum X and Y coordinates. The extent determines which features are displayed and affects query results when using the current extent as a spatial filter.
Q25. What is a raster catalog?
A raster catalog is a collection of raster datasets stored as a table in a geodatabase where each row represents one raster. It allows multiple raster files (such as aerial imagery tiles) to be managed and displayed as a seamless mosaic.
Q26. What is the Clip tool in ArcGIS?
The Clip tool extracts features from one layer that fall within the boundary of another (clip) layer. It is useful for limiting analysis to a specific study area by cutting input features to the shape of the clip polygon.
Q27. What is the Dissolve tool?
The Dissolve tool merges features in a layer that share the same attribute values into single features, eliminating internal boundaries. It is commonly used to aggregate polygons by category (e.g., merging counties into states) or simplify datasets.
Q28. What is the Buffer tool?
The Buffer tool creates polygon features that represent a specified distance around input features (points, lines, or polygons). Buffers are used in proximity analysis to identify areas within a certain distance of features such as roads, rivers, or schools.
Q29. What is the Intersect tool?
The Intersect tool computes the geometric intersection of two or more input feature layers, producing output features that represent overlapping areas. The output inherits attributes from all input layers, making it useful for overlay analysis.
Q30. What is the Union tool?
The Union tool combines the geometric extents of two input polygon feature classes into a single output layer that contains all features from both inputs, including non-overlapping areas. Each output feature retains attributes from both input layers.
Q31. What is spatial analysis in GIS?
Spatial analysis is the process of examining geographic patterns, relationships, and processes in data using statistical and analytical methods. It includes operations like proximity analysis, overlay analysis, network analysis, terrain analysis, and spatial statistics.
Q32. What is a definition query in ArcGIS?
A definition query is a SQL expression applied to a layer that limits which features are displayed and available for operations, acting like a filter without modifying the underlying data. It allows different views of the same dataset to be shown in different maps.
Q33. What is labeling in ArcGIS?
Labeling automatically generates text annotations on the map based on feature attribute values. ArcGIS Pro uses the Maplex Label Engine, which provides advanced placement options to minimize label overlap and position labels optimally relative to features.
Q34. What is ArcGIS Enterprise?
ArcGIS Enterprise is Esri's on-premises server GIS platform that provides the functionality of ArcGIS Online within an organization's own infrastructure. It includes Portal for ArcGIS, ArcGIS Server, ArcGIS Data Store, and ArcGIS Web Adaptor components.
Q35. What is ArcGIS Server?
ArcGIS Server is a software platform that enables organizations to publish GIS capabilities (maps, data, analysis tools) as web services accessible over the internet or intranet. It powers the backend of ArcGIS Enterprise deployments.
Q36. What is a map service in ArcGIS?
A map service is a web service that exposes a map document or map data as an OGC-compliant or Esri REST service, allowing clients like web browsers, mobile apps, and other GIS software to consume map images or data. Types include dynamic map services and cached tile services.
Q37. What is a feature service?
A feature service is a web service that exposes vector geographic data (feature classes) over the web, supporting CRUD operations (create, read, update, delete) on individual features. Feature services enable data editing through ArcGIS web clients and mobile apps.
Q38. What is geocoding?
Geocoding is the process of converting address or place name text into geographic coordinates (latitude/longitude). ArcGIS provides geocoding tools and services (locators) that match input addresses against reference datasets to assign spatial locations.
Q39. What is reverse geocoding?
Reverse geocoding converts geographic coordinates back into human-readable address or place name information. It is used in applications that receive GPS coordinates and need to display the corresponding address to the user.
Q40. What is network analysis in ArcGIS?
Network analysis solves routing and location problems on networks such as road, utility, or pipeline networks. Common network analysis tasks include finding shortest routes, closest facilities, service area delineation, and origin-destination cost matrix computation.
Q41. What is a network dataset?
A network dataset is a topologically connected collection of edges, junctions, and turns that represents a transportation or utility network. It stores impedance attributes (travel time, distance) and restrictions used by network analysis solvers.
Q42. What is a mosaic dataset?
A mosaic dataset is a data model in ArcGIS for managing large collections of raster and image data. It stores references to rasters in a geodatabase table, allowing seamless display, dynamic mosaicking, and on-the-fly processing of raster collections.
Q43. What is the Spatial Join tool?
Spatial Join joins attributes from one feature class to another based on spatial relationships. The target layer receives attributes from the join layer based on criteria like intersects, contains, or nearest feature, enabling enrichment of features with contextual data.
Q44. What is a map layout in ArcGIS Pro?
A map layout (print layout) is a page view in ArcGIS Pro used to compose maps for printing or export. It allows adding map frames, legends, scale bars, north arrows, titles, logos, and other cartographic elements to produce publication-quality maps.
Q45. What is cartography?
Cartography is the science and art of making maps, including the design of map symbology, color schemes, typography, and layout to communicate spatial information effectively. Good cartography balances aesthetics with clarity and accuracy.
Q46. What is a scale bar?
A scale bar is a map element that shows the relationship between a distance on the map and the corresponding distance on the ground. It provides a visual indicator of map scale that remains valid even when the map is printed at different sizes.
Q47. What is the difference between a geographic coordinate system and a projected coordinate system?
A geographic coordinate system (GCS) uses longitude and latitude to reference locations on a three-dimensional ellipsoidal Earth, while a projected coordinate system (PCS) uses a mathematical transformation to flatten the Earth onto a two-dimensional plane with X/Y coordinates in linear units like meters or feet.
Q48. What is the Erase tool in ArcGIS?
The Erase tool removes the area of one input layer that overlaps with an erase layer, leaving only the portions of the input layer that do not intersect the erase features. It is the complement of the Clip tool and useful for creating exclusion zones.
Q49. What is attribute join in ArcGIS?
An attribute join connects the fields of one table to another based on a common field (key). In ArcGIS, joining a table to a layer adds the joined table's fields to the layer's attribute table, enabling display and analysis of combined attributes.
Q50. What is a relate in ArcGIS?
A relate establishes a connection between two tables based on a common field without physically merging them, allowing access to related records without duplicating data. Unlike joins, relates support one-to-many relationships and both tables remain independent.
Q51. What is the Field Calculator?
The Field Calculator is a tool that computes values for a field in a table based on expressions using Python, Arcade, or SQL. It can perform mathematical calculations, string manipulations, conditional logic, and reference geometry properties to populate attribute values.
Q52. What is Arcade in ArcGIS?
Arcade is a lightweight, portable expression language developed by Esri for use across ArcGIS products. It is used for labeling, popups, symbology, and field calculations, providing consistent expressions that work across web, mobile, and desktop environments.
Q53. What is a domain in ArcGIS geodatabase?
A domain is a rule that constrains the valid values that can be entered in a geodatabase attribute field. Coded value domains specify a list of valid codes and descriptions, while range domains specify minimum and maximum numeric values, ensuring data integrity.
Q54. What is a subtypes in ArcGIS?
Subtypes are a mechanism for categorizing records in a feature class or table based on a coded integer field, allowing different default values, domains, and relationships to be applied to each category. They provide efficient classification within a single feature class.
Q55. What is GIS metadata?
GIS metadata is structured information that describes the content, quality, origin, spatial reference, and other characteristics of a geographic dataset. It helps users understand what the data represents, when it was created, who created it, and how it can be used.
Q56. What is the ArcGIS Living Atlas?
The ArcGIS Living Atlas of the World is a curated collection of global geographic information maintained by Esri, including maps, apps, and data layers covering topics like demographics, land cover, weather, and natural hazards. It is accessible to ArcGIS subscribers.
Q57. What is a web map?
A web map is a JSON-based configuration document stored in ArcGIS Online or Portal that defines the layers, basemap, extent, symbology, and popups of an interactive map. Web maps are the building blocks for web mapping applications.
Q58. What is the ArcGIS API for JavaScript?
The ArcGIS API for JavaScript is a web mapping SDK that enables developers to build interactive 2D and 3D web mapping applications using the same data and services available in ArcGIS. It is based on modern JavaScript and provides widgets, layers, and analysis capabilities.
Q59. What is reclassification in raster analysis?
Reclassification reassigns the values of a raster dataset to new values based on ranges, individual values, or lookup tables. It is used to simplify complex datasets, create suitability layers, or standardize raster values for overlay analysis.
Q60. What is a hillshade?
A hillshade is a raster surface derived from a DEM that simulates how terrain would appear illuminated from a light source at a specified azimuth and altitude. It provides a visual three-dimensional representation of terrain and is often used as a base layer under transparent thematic data.
Q61. What is slope analysis in ArcGIS?
Slope analysis calculates the rate of change in elevation across a raster surface, expressing results in degrees or percent rise. It is used in terrain analysis, land suitability studies, erosion modeling, and transportation planning to identify steep or flat areas.
Q62. What is aspect in terrain analysis?
Aspect identifies the downslope direction of the maximum rate of change in value from each cell to its neighbors, expressed as compass direction (0-360 degrees). It determines which direction a slope faces, which affects solar radiation, moisture, and vegetation.
Q63. What is viewshed analysis?
Viewshed analysis determines which areas are visible from one or more observer locations on a terrain surface. It considers observer height, target height, and the DEM to compute line-of-sight visibility, useful for tower placement, military planning, and scenic analysis.
Q64. What is a flow direction raster?
A flow direction raster indicates the direction in which water would flow from each cell to its steepest downslope neighbor based on a DEM. It is a foundational dataset for hydrological analysis, used to delineate watersheds and stream networks.
Q65. What is watershed delineation?
Watershed delineation identifies the drainage basin that contributes surface runoff to a specific pour point (outlet) on a stream network. In ArcGIS, it uses flow direction and flow accumulation rasters computed from a DEM.
Q66. What is the Zonal Statistics tool?
Zonal Statistics calculates statistics (mean, sum, maximum, minimum, range, etc.) for raster cell values that fall within each zone defined by another dataset (raster or feature class). It is used to summarize raster data by administrative boundaries or land cover classes.
Q67. What is the Extract by Mask tool?
Extract by Mask extracts the cells of a raster that correspond to the area defined by a mask dataset (raster or feature), setting all areas outside the mask to NoData. It is equivalent to clipping a raster to a specific study area boundary.
Q68. What is a hot spot analysis?
Hot spot analysis (Getis-Ord Gi*) identifies statistically significant spatial clusters of high values (hot spots) and low values (cold spots) in a dataset. It accounts for both the feature value and its spatial context to determine clustering significance.
Q69. What is Kernel Density analysis?
Kernel Density calculates a magnitude-per-unit-area surface from point or line features using a kernel function to fit a smoothly tapered surface to each feature. It is used to visualize the density of point events like crime incidents, fire locations, or customer addresses.
Q70. What is the Euclidean Distance tool?
The Euclidean Distance tool calculates the straight-line distance from each cell in a raster to the nearest source feature. It is used in cost analysis, proximity modeling, and suitability analysis to measure how far each location is from features of interest.
Q71. What is a lookup table in raster analysis?
A lookup table is used with the Lookup tool to select a field from a raster attribute table and assign the values from that field to a new output raster. It converts categorical raster codes to their associated numeric values for further analysis.
Q72. What is land suitability analysis?
Land suitability analysis evaluates the appropriateness of land for a specific use (agriculture, development, conservation) by combining multiple spatial criteria using overlay techniques such as weighted overlay or weighted sum. Each criterion is reclassified and weighted according to its importance.
Q73. What is the Tabulate Intersection tool?
Tabulate Intersection computes the intersection between two feature class inputs and cross-tabulates the area, length, or count of the intersection for each pair of intersecting features. It is used to compute coverage statistics for overlay analysis.
Q74. What is a locator in ArcGIS?
A locator (address locator) is a dataset that contains a reference address database and the configuration to match input addresses to locations on the map. It is used for geocoding (converting addresses to coordinates) and reverse geocoding operations.
Q75. What is LIDAR data?
LIDAR (Light Detection And Ranging) data is point cloud data collected by laser scanning that provides highly accurate three-dimensional elevation measurements of the Earth's surface and features on it. ArcGIS Pro can display, classify, and analyze LIDAR point clouds in LAS or ZLAS formats.
Q76. What is a scene in ArcGIS Pro?
A scene is a 3D view in ArcGIS Pro that allows users to visualize, explore, and analyze geographic data in three dimensions. Local scenes use projected coordinates for small areas, while global scenes use WGS84 for worldwide data with a spherical perspective.
Q77. What are multipatch features?
Multipatch is a geometry type in ArcGIS used to represent 3D surfaces of real-world objects such as buildings, trees, and terrain. Each multipatch stores a collection of rings, fans, and strips that together define a closed 3D solid or shell.
Q78. What is the Identify tool in ArcGIS?
The Identify tool retrieves and displays attribute information about features at a clicked location on the map. It queries the visible layers at the click point and returns attribute values for all features found, providing quick access to feature data.
Q79. What is a map package (.mpkx)?
A map package (.mpkx) is a compressed file that bundles a map document (.aprx project) along with all referenced data into a single file for easy sharing. It can be shared directly in ArcGIS Online or passed between users to ensure complete data delivery.
Q80. What is the Calculate Geometry Attributes tool?
Calculate Geometry Attributes computes geometric properties such as area, perimeter, length, centroid coordinates, and extent for features and stores them in attribute fields. It is used to add metric information to feature classes for reporting and analysis.
Intermediate Questions (81-150)
Q81. What is a relationship class in ArcGIS?
A relationship class defines and enforces relationships between objects in two tables or feature classes stored in a geodatabase. It supports cardinalities (one-to-one, one-to-many, many-to-many) and can store attributed information about the relationship itself in an intermediate table.
Q82. What is versioning in ArcGIS Enterprise?
Versioning is a geodatabase mechanism that supports concurrent multiuser editing by allowing different users or workflows to work on separate named versions of the data simultaneously. Changes are isolated until reconciled and posted back to the default version.
Q83. What is the difference between traditional versioning and branch versioning?
Traditional (compressed) versioning uses delta tables within the database to track changes, requiring the same DBMS. Branch versioning stores edits as features in the feature service itself, supporting web editing clients and offline workflows without requiring direct database access.
Q84. What is replica in ArcGIS?
A replica is a copy of geodatabase data created for disconnected editing. Check-out/check-in replicas allow a portion of data to be exported, edited offline, and synchronized back. Geodatabase replicas support two-way, one-way, and check-out replication types.
Q85. What is the role of ArcGIS Data Store in Enterprise?
ArcGIS Data Store manages data repositories for ArcGIS Enterprise, providing hosting services for feature data (relational data store), raster/scene tile caches (tile cache data store), spatiotemporal big data (spatiotemporal data store), and graph data. It simplifies administration of backend data storage.
Q86. What is ArcGIS Insights?
ArcGIS Insights is a web-based analytics workbook application for spatial and non-spatial data analysis. It supports drag-and-drop analysis, combining maps, charts, and tables in a workbook, and uses a link analysis approach to guide users through exploratory data analysis.
Q87. What is spatial autocorrelation?
Spatial autocorrelation measures the degree to which similar values cluster or disperse in geographic space. Positive autocorrelation means nearby features have similar values (clustering); negative autocorrelation means dissimilar values cluster together. Moran's I is the most common statistic used to measure it.
Q88. What is Moran's I?
Moran's I is a statistic that measures global spatial autocorrelation, ranging from -1 (perfect dispersion) to +1 (perfect clustering), with 0 indicating random distribution. The tool in ArcGIS evaluates whether the pattern is statistically significant using a z-score and p-value.
Q89. What is Ordinary Kriging in ArcGIS?
Ordinary Kriging is a geostatistical interpolation method that estimates values at unsampled locations by computing a weighted average of neighboring measured values, where weights are determined by a fitted semivariogram model. It also provides prediction standard errors for uncertainty quantification.
Q90. What is IDW interpolation?
Inverse Distance Weighting (IDW) is an interpolation method that estimates values at unsampled locations as a weighted average of known values, where the weight of each known point is inversely proportional to its distance from the estimation location. Closer points have more influence than distant ones.
Q91. What is a semivariogram?
A semivariogram is a function that describes the spatial correlation structure of a dataset by plotting half the average squared difference between values against the separation distance (lag) between sample pairs. It is used in geostatistical interpolation to model spatial dependence.
Q92. What is the Weighted Overlay tool?
Weighted Overlay combines multiple raster layers representing different criteria into a single suitability raster. Each input layer is reclassified to a common scale and assigned a percentage weight reflecting its importance, then all weighted layers are summed to produce the output.
Q93. What is cost-distance analysis?
Cost-distance analysis calculates the accumulated cost of traveling from a source to each cell in a raster, considering both distance and resistance (friction) provided by a cost raster. It is used in least-cost path modeling for wildlife corridors, pipeline routing, and utility planning.
Q94. What is the Least Cost Path tool?
The Least Cost Path tool determines the most cost-efficient route between a source and destination across a cost surface. It uses cost distance and cost back-link rasters produced by the Cost Distance tool to trace the minimum cumulative cost path.
Q95. What is a geometric network?
A geometric network is a geodatabase structure used to represent connected infrastructure networks such as water distribution or electrical systems. It enforces geometric connectivity between features, supports flow direction analysis, and has been largely superseded by the utility network data model.
Q96. What is the Utility Network in ArcGIS?
The Utility Network is a modern data model in ArcGIS for managing infrastructure networks (electric, gas, water, telecommunications). It supports subnetworks, associations, rules, trace operations, and advanced connectivity modeling compared to the older geometric network.
Q97. What is spatial ETL in ArcGIS?
Spatial ETL (Extract, Transform, Load) refers to the process of reading data from a source format, transforming it to meet target requirements, and loading it into a destination format. In ArcGIS, Data Interoperability extension uses FME-based workbenches for spatial ETL workflows.
Q98. What is the ArcGIS Data Interoperability extension?
The Data Interoperability extension provides tools for reading and writing over 450 spatial data formats, transforming data between formats, and building complex ETL workflows using Safe Software's FME technology integrated into ArcGIS Pro and ArcGIS Server.
Q99. What is OGC and what standards does it define relevant to ArcGIS?
OGC (Open Geospatial Consortium) is a standards organization that defines interoperability standards for geographic data and services. Key OGC standards supported by ArcGIS include WMS (Web Map Service), WFS (Web Feature Service), WCS (Web Coverage Service), and WMTS (Web Map Tile Service).
Q100. What is the difference between WMS and WFS?
WMS (Web Map Service) returns pre-rendered map images from geographic data, suitable for display but not for data access. WFS (Web Feature Service) returns actual vector feature data (geometries and attributes) in formats like GML or GeoJSON, allowing client-side rendering and data querying.
Q101. What is ArcGIS Experience Builder?
ArcGIS Experience Builder is a low-code/no-code web application builder that allows users to create multi-screen web apps with customizable widgets, 2D/3D maps, and data-driven content. It replaces Web AppBuilder and uses React-based technology.
Q102. What is ArcGIS Dashboards?
ArcGIS Dashboards (formerly Operations Dashboard) is a web application for creating real-time monitoring dashboards that combine maps, charts, gauges, lists, and indicators. It is used for situational awareness, operational monitoring, and reporting of dynamic spatial data.
Q103. What is ArcGIS Survey123?
ArcGIS Survey123 is a form-centric data collection application that uses XLSForm-based surveys to capture field data with geolocation on mobile devices. Collected data is submitted directly to hosted feature layers in ArcGIS Online or Enterprise.
Q104. What is ArcGIS Field Maps?
ArcGIS Field Maps is a mobile GIS application that combines map navigation, data collection, asset inspection, and real-time location tracking for field workers. It replaces Collector for ArcGIS and supports offline workflows with downloadable map areas.
Q105. What is ArcGIS StoryMaps?
ArcGIS StoryMaps is a web authoring tool for creating narrative map-based stories that combine maps, media, and text. Stories are used for public communication, education, journalism, and organizational reporting to contextualize geographic information for broad audiences.
Q106. What is ModelBuilder iterator?
ModelBuilder iterators loop over collections of data (feature classes, rows, values, files) and run the model once for each item. Common iterators include Iterate Feature Classes, Iterate Rows, Iterate Files, and Iterate Field Values, enabling batch processing without scripting.
Q107. What is the Merge tool vs the Append tool?
Merge combines two or more feature classes or tables into a new output dataset, while Append loads records from one or more input datasets into an existing target dataset. Append modifies an existing dataset; Merge creates a new one.
Q108. What is the Spatial Statistics toolbox used for?
The Spatial Statistics toolbox provides tools for analyzing the spatial distribution of features and values, including measuring central tendency, dispersion, clustering, and correlation. Key tools include Average Nearest Neighbor, Spatial Autocorrelation, Hot Spot Analysis, and Cluster and Outlier Analysis.
Q109. What is the Near tool?
The Near tool calculates the distance and optionally the angle and X/Y coordinates from each feature in an input layer to the nearest feature in a near layer. Results are stored in fields (NEAR_DIST, NEAR_FID) added to the input layer's attribute table.
Q110. What is ArcGIS Image Server?
ArcGIS Image Server is a component of ArcGIS Enterprise (and available as ArcGIS Server with Image extension) that serves, processes, and analyzes large raster and imagery collections as web services. It supports on-the-fly processing, mosaicking, and image analysis workflows.
Q111. What is image classification in ArcGIS?
Image classification categorizes pixels in raster imagery into land cover classes using spectral information. ArcGIS supports supervised classification (training samples) and unsupervised classification (ISO Cluster) in the Image Classification wizard and via the Spatial Analyst and Image Analyst toolboxes.
Q112. What is NDVI and how is it calculated?
NDVI (Normalized Difference Vegetation Index) measures vegetation density and health using near-infrared and red spectral bands: NDVI = (NIR - Red) / (NIR + Red). Values range from -1 to 1, where higher values indicate denser green vegetation. ArcGIS can calculate NDVI using the Raster Calculator or band ratio functions.
Q113. What is change detection in remote sensing?
Change detection identifies differences in the state of land cover or features between two or more image dates. ArcGIS supports change detection methods including image differencing, band ratio, and the Change Detection wizard in ArcGIS Pro for comparing classified images.
Q114. What is the Role of Attribute Rules in ArcGIS?
Attribute rules are Arcade-based rules configured in a geodatabase that automatically calculate, constrain, or validate attribute values. Types include calculation rules (auto-populate fields), constraint rules (prevent invalid edits), and validation rules (flag existing errors for batch correction).
Q115. What is the ArcGIS Notebooks interface?
ArcGIS Notebooks is a Jupyter Notebook-based environment integrated into ArcGIS Online and Enterprise that allows Python-based spatial analysis, data science, and automation workflows using ArcPy, ArcGIS API for Python, and open-source libraries.
Q116. What is the ArcGIS API for Python?
The ArcGIS API for Python (arcgis package) is a Python library for working with ArcGIS platforms programmatically. It provides modules for managing users, groups, content, and services in ArcGIS Online or Enterprise, as well as spatial data access and analysis through GIS object interactions.
Q117. What is ArcGIS GeoAnalytics Server?
ArcGIS GeoAnalytics Server is a component of ArcGIS Enterprise that performs large-scale spatial analysis using distributed processing across Apache Spark. It enables fast analysis of big spatiotemporal data, such as aggregating millions of GPS tracks or detecting patterns in sensor data.
Q118. What is the Space Time Cube?
A Space Time Cube (netCDF format) is a data structure used in ArcGIS Space Time Pattern Mining tools that aggregates point data into equal-size space-time bins. It stores time series of statistics for each location, enabling emerging hot spot analysis and time series clustering.
Q119. What is Emerging Hot Spot Analysis?
Emerging Hot Spot Analysis evaluates space-time cube data to identify statistically significant hot and cold spots that are new, intensifying, persistent, diminishing, or sporadic over time. It classifies each location into one of 17 pattern types based on space-time statistical trends.
Q120. What is the Aggregate Points tool?
Aggregate Points summarizes point features by computing count and statistics for points that fall within each polygon. It can also generate polygon areas using a regular grid or a specified polygon layer, producing an output polygon feature class with aggregated statistics.
Q121. What is the Generate Tessellation tool?
Generate Tessellation creates a mesh of regular polygon shapes (squares, hexagons, transverse hexagons, triangles, diamonds) covering a specified extent. Tessellated grids are used as uniform analysis zones for aggregating point data or comparing spatial patterns.
Q122. What is the difference between Clip (raster) and Extract by Mask?
Clip (in the Data Management toolbox) crops a raster to a rectangular extent or to the shape of a feature class but may create a rectangular output. Extract by Mask sets all cells outside the mask to NoData, providing a more precise extraction to the exact shape of the mask polygon.
Q123. What is the Feature to Raster tool?
Feature to Raster converts vector feature class data (points, lines, or polygons) to a raster dataset, assigning raster cell values based on a specified attribute field. It is used to create continuous raster surfaces from classified vector data for raster-based analysis.
Q124. What is raster resampling?
Raster resampling changes the cell size of a raster and computes new cell values for the changed resolution. ArcGIS supports Nearest Neighbor (for categorical data), Bilinear (for continuous data), Cubic Convolution, and Majority resampling methods.
Q125. What is the Polygon to Raster cell size consideration?
When converting polygons to raster, the cell size must be small enough to capture the minimum polygon size without losing features, but not so small as to create unnecessarily large output files. A commonly used guideline is to set cell size to approximately 1/10 of the smallest polygon width.
Q126. What are topology rules examples?
Common topology rules include: polygons must not overlap (for exclusive land use), lines must not have dangles (for connected road networks), points must be covered by line endpoints (for street address ranges), and polygons must not have gaps (for contiguous coverage datasets).
Q127. What is the Role of indexes in geodatabase performance?
Attribute indexes speed up queries on frequently searched fields, while spatial indexes improve the performance of spatial queries by organizing feature geometries into a spatial grid or tree structure. Rebuilding indexes after large edits is a geodatabase maintenance best practice.
Q128. What is compress in versioned geodatabase?
Compress is a maintenance operation on versioned geodatabases that moves all states in the delta tables that no longer belong to any version back to the base tables, reducing delta table size and improving query performance. It should be run regularly when all users are disconnected.
Q129. What is ArcGIS Velocity (formerly ArcGIS IoT)?
ArcGIS Velocity is a SaaS component of ArcGIS Online for real-time data processing and analysis of high-velocity streaming data from IoT sensors, feeds, and event sources. It uses Apache Kafka-backed pipelines to filter, transform, aggregate, and visualize live spatial data.
Q130. What is ArcGIS Urban?
ArcGIS Urban is a 3D urban planning and design platform that allows planners and designers to create, visualize, and evaluate urban design scenarios. It integrates zoning rules, land use plans, and building designs in a collaborative web environment.
Q131. What is the Indoors data model?
The ArcGIS Indoors data model is a geodatabase schema for managing indoor building data including floors, units (rooms), pathways, and points of interest. It powers indoor mapping apps for wayfinding, space management, and occupancy analysis in buildings.
Q132. What is the ArcGIS Location Platform?
ArcGIS Location Platform (formerly ArcGIS for Developers) is Esri's pay-as-you-go service for embedding location capabilities (maps, geocoding, routing, demographics) into custom applications. It provides API keys for accessing Esri basemaps and services without requiring a full ArcGIS Online subscription.
Q133. What is a parcel fabric in ArcGIS?
A parcel fabric is a specialized geodatabase structure for managing land parcel records, including legal descriptions, dimensions, and survey control points. It uses least squares adjustment to maintain geometric consistency between adjacent parcels and historical records.
Q134. What is the Linear Referencing toolbox?
Linear referencing tools create, manage, and analyze route-measure data. Routes store distances along a line feature (road, pipeline), and events (accidents, pavement conditions) are located by route ID and measure value rather than XY coordinates, enabling dynamic segmentation.
Q135. What is dynamic segmentation?
Dynamic segmentation is the process of locating events stored in a route event table (using route ID and measure values) onto route features to display and analyze linear events. It allows multiple overlapping attribute sets to be maintained for the same linear features.
Q136. What is the Spatial Analyst extension?
The Spatial Analyst extension provides a comprehensive set of raster analysis tools in ArcGIS Pro, including surface analysis (slope, hillshade, viewshed), hydrological analysis, proximity analysis, interpolation, map algebra (Raster Calculator), and spatial statistics. It must be licensed separately.
Q137. What is the Network Analyst extension?
The Network Analyst extension enables routing, service area, closest facility, location-allocation, and origin-destination cost matrix analysis on transportation networks. It requires a network dataset built from line features with impedance, turn, and connectivity information.
Q138. What is the 3D Analyst extension?
The 3D Analyst extension provides tools for creating, analyzing, and displaying three-dimensional surface and volumetric data. It includes tools for working with TINs, terrain datasets, LAS point clouds, and 3D feature classes, as well as surface analysis and 3D visualization.
Q139. What is the Geostatistical Analyst extension?
The Geostatistical Analyst extension provides tools for exploring spatial data, modeling spatial correlation, and creating statistically validated interpolated surfaces. It includes Geostatistical Wizard, cross-validation, and Exploratory Spatial Data Analysis (ESDA) tools.
Q140. What is cartographic generalization?
Cartographic generalization simplifies spatial data for display at smaller scales by reducing complexity while maintaining the essential character and spatial relationships of features. Generalization operations include simplification, smoothing, aggregation, and displacement.
Q141. What is a terrain dataset?
A terrain dataset is a multiresolution TIN-based surface model stored in a feature dataset in a geodatabase. It uses pyramid levels to display different resolutions at different map scales and can reference mass points, breaklines, and clip polygons as source data.
Q142. What is Feature Binning in ArcGIS?
Feature binning in ArcGIS aggregates dense point feature classes into hexagon or square bin polygons based on spatial extent at query time, reducing rendering overhead for very large point datasets. It allows interaction with millions of points through a summarized polygon representation.
Q143. What is Time Slider in ArcGIS?
The Time Slider is a UI control in ArcGIS Pro and web apps that enables temporal animation of time-enabled layers. By advancing the time slider, features are filtered to display only those active at or within the current time window, showing temporal change in the data.
Q144. What is a time-enabled layer?
A time-enabled layer has date/time attribute fields configured for temporal display, allowing the layer to participate in time slider animations. The layer's time properties define which field(s) represent the start and optionally the end time for each feature.
Q145. What is attribute-driven symbology?
Attribute-driven symbology uses values from the attribute table to control individual symbol properties such as size, color, rotation, and transparency on a per-feature basis. This allows the map to communicate multiple data dimensions simultaneously through a single symbol layer.
Q146. What is the Join Field tool?
Join Field permanently joins the contents of a table to another table based on a common attribute field, adding the joined fields to the input table. Unlike a layer join (which is temporary and view-only), Join Field makes a permanent structural change to the dataset.
Q147. What is the Summary Statistics tool?
Summary Statistics calculates statistical values (sum, mean, min, max, range, standard deviation, count, first, last) for numeric fields in a table, optionally grouped by a case field. The output is a standalone table with one row per unique case value.
Q148. What is Maplex Label Engine?
Maplex Label Engine is ArcGIS Pro's advanced automated labeling engine that optimizes label placement using rules for position priority, fitting strategies, and conflict resolution to minimize overlaps. It provides more label placement options than the Standard Label Engine.
Q149. What is a tile layer?
A tile layer (cached map service) is a web service that delivers pre-rendered map images (tiles) at fixed zoom levels and tile coordinates. Tiles are cached on the server, so they are served quickly without on-the-fly rendering, making them suitable for basemaps and reference layers.
Q150. What is the ArcGIS Collector legacy app and its replacement?
Collector for ArcGIS was Esri's field data collection app that has been replaced by ArcGIS Field Maps, which provides a unified experience for navigation, collection, inspection, and tracking. Field Maps integrates the functionality of Collector, Tracker, and Explorer apps.
Advanced Questions (151-200)
Q151. What is ArcGIS Pro SDK and what can it be used for?
ArcGIS Pro SDK for .NET is a development framework for building ArcGIS Pro add-ins using C# and .NET. It exposes ArcGIS Pro's internal API through an asynchronous, thread-safe architecture, allowing developers to add custom tools, panes, buttons, dockpanes, and geoprocessing tool integrations.
Q152. What is the difference between a hosted and a referenced feature layer?
A hosted feature layer stores its data in ArcGIS Online's or Enterprise's data store, managed by Esri infrastructure. A referenced layer points to an existing ArcGIS Server or Enterprise service, where the data remains on the originating server. Hosted layers offer simpler management; referenced layers allow centralized on-premises control.
Q153. How does ArcGIS handle coordinate on-the-fly projection?
ArcGIS Pro reprojects layers on-the-fly to the map's coordinate system when their spatial references differ, without modifying the source data. This uses datum transformation methods (geographic transformation) when the source and destination datums are different, which must be explicitly defined for accuracy.
Q154. What is a geographic transformation in ArcGIS?
A geographic transformation defines the mathematical parameters for converting coordinates between two geographic coordinate systems (datums). Because different datums define different ellipsoids and origins, transformation is necessary for accurate overlay of data from different datums, such as NAD27 to WGS84.
Q155. What is the ArcGIS REST API?
The ArcGIS REST API is a RESTful web interface for interacting with ArcGIS Server and ArcGIS Online services. It provides endpoints for querying features, executing geoprocessing tasks, managing content, performing geocoding, and administering server resources, using JSON for request/response format.
Q156. What is OAuth 2.0 in the context of ArcGIS?
ArcGIS platforms use OAuth 2.0 for secure authentication and authorization of users and applications. Applications register with ArcGIS Online or Enterprise to obtain a Client ID and implement authorization code or implicit grant flows to obtain access tokens for accessing secured resources.
Q157. What is ArcGIS Hub?
ArcGIS Hub is an open data and community engagement platform built on ArcGIS Online that allows organizations to publish datasets, create initiative sites, and engage citizens with GIS data. It supports open data portals, community feedback, and program management for government and public sector organizations.
Q158. What is Spatial Machine Learning in ArcGIS?
ArcGIS includes spatial machine learning tools in the Spatial Statistics toolbox and Image Analyst toolbox that apply ML algorithms (Random Forest, Forest-based Classification and Regression, GeoAI deep learning) to spatial data. These tools account for spatial relationships and are integrated with Python-based ML frameworks.
Q159. What is the Forest-based Classification and Regression tool?
Forest-based Classification and Regression uses a Random Forest ensemble learning algorithm to predict discrete categories or continuous values at locations. It automatically identifies important explanatory variables and their relationships to the prediction target, outputting feature importance charts and trained models.
Q160. What is GeoAI in ArcGIS?
GeoAI refers to the integration of artificial intelligence, deep learning, and machine learning techniques with GIS. In ArcGIS, GeoAI capabilities include object detection in imagery, image classification, point cloud classification, change detection, and super-resolution using deep learning models via the Image Analyst toolbox.
Q161. What is a deep learning model package (.dlpk)?
A deep learning model package (.dlpk) is a format used in ArcGIS Pro's Image Analyst toolbox to deploy trained deep learning models for tasks such as object detection and pixel classification on raster data. It bundles the model weights, architecture definition, and metadata into a single file.
Q162. What is ArcGIS Image for ArcGIS Online?
ArcGIS Image for ArcGIS Online is a cloud raster analysis service that enables hosting, processing, and analyzing large imagery collections in ArcGIS Online without requiring ArcGIS Enterprise infrastructure. It supports mosaic datasets, raster analytics, and image services hosted on Esri's cloud.
Q163. What is the ArcGIS Drone2Map workflow?
ArcGIS Drone2Map is a desktop application that processes drone imagery into 2D orthomosaics, 3D point clouds, DSMs, and textured meshes using photogrammetry. Outputs are ready for use in ArcGIS Pro or publication to ArcGIS Online as hosted imagery layers.
Q164. What is a terrain-following profile in ArcGIS?
An elevation profile (terrain-following profile) is a cross-section visualization of elevation along a line drawn on the map. ArcGIS Pro's Elevation Profile view interpolates values from a surface (DEM or TIN) along the line to create a graph showing elevation change along the transect.
Q165. What is least-squares adjustment in ArcGIS parcel fabric?
Least-squares adjustment is a mathematical method used in the parcel fabric to optimally fit survey measurement data (distances, bearings, angles) to control points by distributing residual errors according to measurement weights. It produces adjusted point coordinates with statistical quality metrics.
Q166. What is attribute-driven label placement?
Attribute-driven label placement uses values stored in attribute fields to control label properties such as position offset, rotation, priority, and text for individual features. This allows label behavior to be customized on a per-feature basis without manual override.
Q167. What is a stored query in ArcGIS?
A stored query is a named, reusable definition query or SQL expression saved in a layer or a map. In ArcGIS Enterprise feature services, stored queries defined server-side restrict which records clients can query, providing security by preventing clients from formulating arbitrary queries.
Q168. What is ArcGIS Mission?
ArcGIS Mission is an Esri platform for coordinating field operations in real time. It provides a shared operational picture through a commander web interface and mobile responder app, supporting task assignment, message communication, real-time location tracking, and resource management.
Q169. What is the ArcGIS Monitor tool?
ArcGIS Monitor is a monitoring solution for ArcGIS Enterprise deployments that tracks system health, service performance, user activity, and infrastructure metrics. It provides dashboards, alerts, and historical logs to help administrators proactively manage GIS infrastructure.
Q170. What is the concept of generalization in automated cartography?
Automated cartographic generalization applies algorithms to simplify feature geometry, aggregate nearby features, and resolve symbol conflicts for display at smaller scales. ArcGIS tools like Simplify Polygon, Smooth Line, Aggregate Polygons, and Collapse Dual Lines represent key generalization operations.
Q171. What is ArcGIS AllSource?
ArcGIS AllSource (formerly known as GeoScene in some markets) is an intelligence-focused desktop GIS product from Esri designed for geospatial intelligence (GEOINT) analysis. It provides specialized tools for multi-source data fusion, link analysis, and intelligence production workflows.
Q172. What is the Topographic Production toolbox?
The Topographic Production toolbox provides tools for creating and maintaining standardized military and civilian topographic products (maps and geodatabases) according to specifications such as TRD, VMap, and Joint Operations Graphics. It automates cartographic production workflows for defense mapping organizations.
Q173. What is the ArcGIS Defense Mapping solution?
ArcGIS Defense Mapping is an Esri solution (extension) for creating and maintaining standardized military cartographic products and geospatial intelligence databases. It includes product library management, masking workflows, and topographic product generation tools for defense organizations.
Q174. What is the Roads and Highways solution in ArcGIS?
ArcGIS Roads and Highways is an Esri solution for managing transportation network data using linear referencing. It provides tools for maintaining route data, managing events (signs, pavement conditions, crashes) on routes, calibrating routes from GPS data, and reporting pavement conditions to HPMS standards.
Q175. What is the Pipeline Referencing solution?
ArcGIS Pipeline Referencing is an Esri solution for pipeline operators that manages pipeline networks using linear referencing and integrates pipeline integrity data with geographic information. It supports ILI (inline inspection) data, anomaly management, and pipeline integrity regulatory reporting.
Q176. What is feature caching in ArcGIS Pro?
Feature caching stores a local copy of feature data in memory during a session to improve display and query performance. It allows ArcGIS Pro to quickly pan, zoom, and query features without re-fetching from the data source, particularly beneficial for remote or enterprise geodatabase connections.
Q177. What are trace operations in the Utility Network?
Trace operations in the Utility Network analyze connectivity and flow through a network by traversing features from starting points using defined trace configurations (upstream, downstream, connected, subnetwork controllers, loops). They are used for outage isolation, crew routing, and service territory analysis in utility applications.
Q178. What is the ArcGIS Electric Utility Network Foundation?
ArcGIS Electric Utility Network Foundation is an Esri solution that provides a pre-configured Utility Network for electric distribution and transmission systems. It includes a network diagram rule configuration, predefined trace configurations, and dashboards for managing electric infrastructure data.
Q179. What is the concept of a dirty area in versioned editing?
Dirty areas (invalid areas in the Utility Network) are regions flagged as potentially having stale network topology due to edits. The system validates the network topology in these areas when a trace is run through them, ensuring that topology-dependent operations always use accurate connectivity information.
Q180. What is the ArcGIS Workflow Manager extension?
ArcGIS Workflow Manager is a work management system integrated with ArcGIS that manages, automates, and tracks spatial data production workflows. It assigns tasks to users, tracks work history, integrates with ArcGIS Pro for map-based work, and automates steps using geoprocessing tools and REST API calls.
Q181. What is ArcGIS Pro's project file (.aprx)?
An .aprx file is the native project format for ArcGIS Pro that stores references to maps, layouts, toolboxes, connections, styles, and tasks. Unlike .mxd files in ArcMap, .aprx files are XML-based and support multiple maps and layouts within a single project file.
Q182. What is the concept of data access paths in ArcPy?
Data access paths in ArcPy reference datasets using full path strings or workspace + name combinations. Setting arcpy.env.workspace to a geodatabase or folder allows using just dataset names in tool calls, simplifying scripts that process multiple datasets in the same workspace.
Q183. What is the arcpy.da module?
arcpy.da (Data Access module) provides fast, cursor-based access to feature class and table data using Python. It includes SearchCursor (read rows), InsertCursor (add rows), and UpdateCursor (modify/delete rows), offering significantly faster performance than the legacy arcpy cursors.
Q184. What is environment settings in ArcPy?
Environment settings in ArcPy (arcpy.env) control how geoprocessing tools run, including output coordinate system, cell size, extent, workspace, snap raster, compression type, and parallel processing factor. They can be set globally or overridden within a specific tool call.
Q185. What is a geoprocessing service?
A geoprocessing service exposes an ArcGIS Pro toolbox or model as a web service that clients can execute remotely. It can run synchronously (client waits for result) or asynchronously (client polls for status). Parameters and results are exchanged as JSON over the ArcGIS REST API.
Q186. What is the ArcGIS Pro Parallel Processing Factor?
The Parallel Processing Factor environment setting controls the proportion of processor cores used by tools that support parallel processing (raster analysis, geostatistical operations). Setting it to 0 uses all available cores; setting it to a percentage limits core usage for resource management.
Q187. What is the Raster Calculator?
The Raster Calculator is a Map Algebra tool in ArcGIS Spatial Analyst that allows combining multiple rasters using mathematical, logical, and trigonometric operators and spatial analysis functions in a single expression. It exposes the full power of Map Algebra interactively.
Q188. What is Map Algebra?
Map Algebra is a language for performing raster analysis by defining operations using rasters as variables in mathematical expressions. Single-cell operations (local), neighborhood operations (focal), zone operations (zonal), and global operations are the four categories of Map Algebra operations.
Q189. What is the Focal Statistics tool?
Focal Statistics calculates a statistic (mean, sum, maximum, minimum, range, standard deviation, median, variety, majority, minority) for each cell in a raster based on the values within a defined neighborhood (rectangle, circle, annulus, wedge, or irregular shape). It is used for smoothing, filtering, and neighborhood summarization.
Q190. What is the Con (Conditional) raster function?
The Con tool applies a conditional if/else statement to raster cells: where an input condition raster is true, cells receive values from a "true raster"; where false, from a "false raster" or a constant value. It enables conditional logic in raster analysis workflows.
Q191. What is the ArcGIS Pro Map Series?
Map Series (formerly Data Driven Pages in ArcMap) in ArcGIS Pro automates the creation of a set of map pages from a single layout using an index layer to define spatial extents. Each page centers on an index feature, enabling batch production of map books (atlas) for reporting.
Q192. What is the Spatial Join CLOSEST match option?
The CLOSEST match option in Spatial Join finds, for each feature in the target layer, the nearest feature in the join layer and appends its attributes. An optional search radius limits the maximum join distance, and CLOSEST_GEODESIC uses geodesic distance on curved surfaces.
Q193. What is the Enrich Layer tool?
Enrich Layer appends demographic, socioeconomic, and lifestyle variables from Esri's Living Atlas data to features based on their location. It computes apportionment statistics for overlapping census boundaries, enabling market analysis, site selection, and customer profiling workflows.
Q194. What is the Location Allocation solver in Network Analyst?
Location Allocation simultaneously solves facility placement and demand allocation problems. Given a set of candidate facilities and weighted demand points, it selects the best subset of facilities to open and allocates demands to minimize total impedance (travel time or cost) subject to constraints.
Q195. What is an OD Cost Matrix in Network Analyst?
An Origin-Destination (OD) Cost Matrix solver calculates the network-based travel cost (time or distance) between multiple origin locations and multiple destination locations. It produces a table of impedance values between each origin-destination pair, used for supply chain optimization and accessibility analysis.
Q196. What is iterative closest point (ICP) in ArcGIS context?
In ArcGIS, ICP-like registration is used when aligning point clouds or raster datasets from different sources. The LAS Dataset To Raster and point cloud registration tools use iterative optimization to minimize misalignment between overlapping datasets by adjusting transformation parameters.
Q197. What are attribute rule batch validation and on-edit trigger differences?
On-edit attribute rules fire immediately when a feature is created, updated, or deleted, maintaining data integrity in real time. Batch validation rules evaluate existing features against constraint rules on-demand, identifying records that violate rules without blocking the original edit operation.
Q198. What is Portal for ArcGIS in Enterprise?
Portal for ArcGIS is the web interface component of ArcGIS Enterprise that provides the same functionality as ArcGIS Online within an organization's private infrastructure. It manages users, groups, content, and licensing, and hosts web maps, apps, and hosted feature layers backed by ArcGIS Data Store.
Q199. What is federated server in ArcGIS Enterprise?
A federated server is an ArcGIS Server site that has been joined to an ArcGIS Enterprise portal, delegating authentication and content management to the portal. Federated servers allow portal members to publish services directly to ArcGIS Server through the portal, providing a unified security model.
Q200. What is the future direction of ArcGIS with cloud-native GIS?
Esri's cloud-native GIS strategy involves migrating GIS workflows to fully managed cloud services, including ArcGIS Online, ArcGIS Location Platform, and cloud deployment of ArcGIS Enterprise on AWS, Azure, and GCP. Key trends include serverless geoprocessing, vector tile services, cloud-native raster (COG), and AI-powered spatial analysis through ArcGIS's GeoAI capabilities.


