The core of any GIS is a database that contains representations of geographic phenomena, modeling their geometry (location and shape) and their properties or attributes. A GIS database may be stored in a variety of forms, such as a collection of separate data files or a single spatially-enabled relational database.

Collecting and managing these data usually constitutes the bulk of the time and financial resources of a project, far more than other aspects such as analysis and mapping.[20]

UNDERSTANDING OF SPATIAL DATA MODELS AND THEIR ASSOCIATED PLANAR GEOMETRIES

KEY CONCEPTS AND TERMINOLOGY

  • Spatial model - Basic properties and process for a set of spatial features
    • According to Bolstad:
      • Cartographic Models - temporally static, combined spatial datasets, operations, and functions for problem-solving.
      • Spatio-temporal models - dynamics in space and time, time-driven processes
      • Network models - modeling of resources (flow, accumulation) as limited to networks.
    • According to Goodchild:
      • Data models - entities and fields as conceptual models
      • Static modeling - taking inputs to transform them into outputs using sets of tools and functions.
      • Dynamic modeling - iterative, sets of initial conditions, apply transformations to obtain a series of predictions at time intervals.
    • According to DeMers:
      • Based on purpose descriptive - passive, description of the study area prescriptive - active, imposing best solution
      • Based on methodology stochastic - based on statistical probabilities deterministic - based on known functional linkages and interactions
      • Based on logic inductive - general models based on individual data deductive - from general to specific using known factors and relationships
  • Vector - coordinate based data model that represents points, lines, and polygons.
    • Points – discrete locations on the ground
      • Represented by a coordinate pair.
    • Lines – linear features, such as rivers, roads, and transmission cables
      • Composed of vertices.
      • Begin and end at vertices.
      • Represented by an ordered list of vertices.
    • Polygons – form bounded areas, such as islands, land masses, and water features.
      • Composed of nodes and vertices.
      • The start node is the same as the end node.
    • Attributes associated with each feature.
  • Raster - composed of rectangular arrays of regularly spaced square grid cells and each cell has a value (attribute)
    • Examples include soil pH, elevation, and salinity of a water body.
    • Single or multiple bands
    • Each cell typically has 1 attribute value, except for multi-dimensional raster data.
    • Multidimensional raster data represents data captured at multiple times, depths, or heights. It is commonly used in atmospheric, oceanographic, and earth sciences.
      Sources and Formats:
      • Satellite observations: Data collected at specific time intervals.
      • Numerical models: Data generated by aggregating, interpolating, or simulating from other data sources. Common storage formats include:
      • netCDF: Often used for oceanographic data.
      • GRIB: Commonly used for weather data.
      • HDF: NASA frequently uses this format for scientific data storage.
      • Esri Cloud Raster Format (CRF): Also supports multidimensional raster data storage.
        • Raster coordinates are stored by ordering the matrix.
  • Pixel - smallest resolvable piece of scanned image - pixel is always a cell but a cell is not always a pixel.
  • Geodatabase - object oriented spatial model (feature classes, feature datasets, non-spatial tables, topology, relationship classes, geometric networks)
    • Basic components include feature classes, feature datasets, non-spatial tables.
    • Complex components include topology, relationship classes, geometric networks.
    • Relationship classes – model real-world relationships that exist between objects such as parcels and buildings.
  • GRID - A grid is a structured arrangement of data points or values in equally spaced rows and columns, also known as raster data. It’s commonly used to organize and analyze data, especially in fields like geography, meteorology, and computer graphics. It is often used to represent features on the Earth’s surface, such as elevation, land cover, temperature, precipitation, and more. Geospatial data is typically organized into grids where each cell corresponds to a specific location.
  • TIN - Triangulated Irregular Network - portions vector data into contiguous, non overlapping triangles
    • Create Delaunay triangles.
    • Advantages of TIN - small areas with high precision elevation data. More efficient storage than DEM or contour lines
    • Disadvantage of TIN - requires very accurate data source and costs are expensive, TIN production and use are very computer intensive)
  • Topological - features need to be connected using specific rules.
  • Hierarchical - database that stores related information in a tree-like structure.
    • Records can be traced to parent records to a root record.
  • Network - collection of topologically connected network elements (edges, junctions, turns)
    • Each element is associated with a collection of network attributes.
  • Object Oriented - data management structure stores data as objects (classes) instead of rows and tables as a relational database
    • Examples include SQL Server, Oracle, PostgreSQL

SAMPLE QUESTION

Which of the following statements accurately describes the basic spatial data models and their associated planar geometries?

A) The Cartographic Model represents temporally static, combined spatial datasets, operations, and functions for problem-solving.

B) The Spatio-temporal models capture dynamics in both space and time, focusing on time-driven processes.

C) The Network models are used for modeling resources such as flow and accumulation but are limited to networks.

D) All of the above.

Answer: D) All of the above.

Explanation: The basic spatial data models include the Cartographic Model, Spatio-temporal models, and Network models, each serving different purposes and representing features using planar geometries12.

UNDERSTANDING OF SPATIAL DATA RELATIONSHIPS

Spatial data relationships refer to the way objects are arranged in relation to one another in geographic space. These relationships play a crucial role in understanding spatial patterns and interactions.

Living Textbook | [DM-01-001] Spatial Database Management Systems | By ITC, University of Twente (ucgis.org)

Living Textbook | [DM-01-003] Relational DBMS and their Spatial Extensions | By ITC, University of Twente (ucgis.org)

Attribute Relationships - GeoTech Center

KEY CONCEPTS AND TERMINOLOGY

  • Adjacency:
    • Adjacent features share a common boundary or touch each other.
    • For example, neighboring parcels of land or adjacent census tracts.
  • Contiguity:
    • Contiguous features are connected or share a border.
    • In a map, contiguity represents areas that are physically touching.
    • It’s essential for analyzing connectivity, such as transportation networks or ecological habitats.
  • Overlap:
    • Overlapping features occupy the same space.
    • Examples include land cover classes (e.g., forest overlapping with water bodies) or administrative boundaries.
  • Proximity
    • Proximity refers to how close features are to each other.
    • It’s crucial for analyzing accessibility, clustering, and spatial interactions.
    • For instance, measuring the distance between hospitals or identifying nearby amenities.
  • Spatial Joins:
    • Spatial joins connect or join data based on their spatial relationship.
    • For instance, associating census data with administrative boundaries or linking weather stations to specific regions.
  • Colocation Analysis:
    • Colocation analysis examines local patterns of spatial association between two categories of point features.
    • It quantifies how often certain features occur together in proximity.
  • General types of relationships:
    • One-to-one: each object of the origin table can be related to 0 or 1 object of the destination table.
    • One-to-Many: each object in the origin table can be related to multiple objects in the destination table.
    • Many-to-Many: multiple objects of the origin table can be related to multiple objects of the destination table.
    • Equals: a = b - topologically equal
    • Disjoint: a ∩ b = ∅ - no point in common
    • Intersects: a ∩ b ≠ ∅ - some common interior points
    • Touches: (a ∩ b ≠ ∅) ∧ (aο ∩ bο = ∅) - a touches b, at least one boundary point in common but no interior points
    • Contains: a ∩ b = b - feature b is within a
    • Covers: aο ∩ b = b - every point of b is a point of a
    • Covered By: Covers(b,a) - every point of a is a point of b
    • Within: a ∩ b = a - a is within b
    • Crosses: a crosses b at some point
    • Overlaps - a and b have common interior points.
  • Basic Topology Rules
    • Polygon rules:
      • Must be larger than cluster tolerance.
      • Must not overlap.
      • Must not have gaps.
      • Must not overlap with
      • Must be covered by feature class of
      • Must cover each other.
      • Must be covered by
      • Boundary must be covered by
      • Area boundary must be covered by boundary of
      • Contains point.
      • Contains one point.
    • Line rules:
      • Must be larger than cluster tolerance.
      • Must not overlap.
      • Must not intersect.
      • Must not intersect with
      • Must not have dangles.
      • Must not have pseudo nodes.
      • Must not intersect or touch interior.
      • Must not intersect or touch interior with
      • Must not overlap with
      • Must be covered by feature class of
      • Must be covered by boundary of
      • Must be inside.
      • Endpoint must be covered by
      • Must not self-overlap
      • Must not self-intersect.
      • Must be single part
    • Point rules
      • Must coincide with
      • Must be disjoint.
      • Must be covered by boundary of
      • Must be properly inside.
      • Must be covered by endpoint of
      • Point must be covered by line.

SAMPLE QUESTION

Which of the following statements accurately describes the concept of spatial relationships in Geographic Information Systems (GIS)?

A) Spatial relationships refer to the way objects are arranged in relation to one another in geographic space, including concepts like adjacency, contiguity, overlap, and proximity.

B) Spatial relationships are primarily concerned with temporal dynamics and changes over time within a geographic area.

C) Spatial relationships involve the study of topographic features such as mountains, valleys, and rivers.

D) Spatial relationships focus exclusively on the physical characteristics of landforms and climate patterns.

Answer: A) Spatial relationships refer to the way objects are arranged in relation to one another in geographic space, including concepts like adjacency, contiguity, overlap, and proximity1. These relationships are essential for understanding how features interact and influence each other within a spatial context.

UNDERSTANDING OF DATA QUALITY

Data quality is a critical aspect of Geographic Information Systems (GIS). Data quality is not a one-time task; it’s a continuous process. GIS professionals must consistently validate, clean, and maintain data to achieve meaningful results and informed decision making.

KEY CONCEPTS AND TERMINOLOGY

  • Accurate Decision Making:
    • GIS relies on data to create maps, analyze patterns, and make informed decisions.
    • High-quality data ensures accurate conclusions and reliable results.
    • Inaccurate or incomplete data can lead to poor decisions and flawed analyses.
  • Completeness and Consistency:
    • Data quality involves completeness (having all necessary information) and consistency (uniformity across datasets).
    • Consistent data allows seamless integration and comparison across different layers and sources.
  • Timeliness:
    • Up-to-date data is crucial for real-time applications.
    • Outdated information may misrepresent current conditions (e.g., traffic flow, weather, land use).
  • Relevance:
    • Relevant data aligns with the specific purpose of a GIS project.
    • Irrelevant or redundant data can clutter the system and hinder analysis.
  • Avoiding Errors:
    • Poor data quality introduces errors into spatial analyses.
    • These errors propagate through calculations, affecting subsequent results.
  • Data Validation:
    • Validating data ensures accuracy and completeness.
    • Check for spelling errors, missing values, and inconsistencies.
  • Data Cleaning:
    • Cleaning data involves removing errors and standardizing formats.
    • Eliminate duplicate records and correct inaccuracies.
  • Data Maintenance:
    • Ongoing maintenance ensures data remains accurate over time.
    • Update data to reflect real-world changes and back up data to prevent loss.
  • Geometric accuracy – The closeness of a measurement to its true value
  • Root Mean Squared Error(RMS) – a calculation to describe the difference between the measurement and the true value.
    • This can apply to georectification.
    • RMS = the square root of the average of squared errors
  • Thematic Accuracy - accuracy of the non-spatial data
    • Such as, is the street name accurate on a street feature class.
  • Resolution – smallest separation between two coordinate values
    • For rasters this refers to the cell size
  • Precision – level of measurement and exactness of attribute data
  • Fitness for use – Does the data fulfill the needs of the project?
  • Confusion matrix – assesses accuracy of image classification based on additional ground truths.
  • Quality Assurance - process oriented and focuses on defect prevention.
    • Establishment of good quality management system and assessment of its adequacy - periodic audits - managerial tool
  • Quality Control - product oriented and focuses on defect identification.
    • Finding and eliminating sources of quality problems through tools and equipment - corrective tool
  • Imprecision - all data is taken from a 3D globe and transferred to a 2D surface through spatial transformations (projections and datums) which causes distortions with the data.
  • Uncertainty - The GIS data was created/collected at a certain point of time, may already be out of date.

SAMPLE QUESTION

Which of the following statements accurately describes the key components of spatial data quality?

A) Positional accuracy

B) Temporal accuracy

C) Lineage and completeness

D) All of the above

Answer: D) All of the above. The key components of spatial data quality include positional accuracy, temporal accuracy, and lineage and completeness112.

UNDERSTANDING OF DATA RESOLUTION

Data resolution plays a crucial role in Geographic Information Systems (GIS) and impacts accuracy, analysis, aesthetics, and practical considerations in GIS. Selecting an appropriate resolution ensures effective spatial representation and informed decision-making.

KEY CONCEPTS AND TERMINOLOGY

  • Spatial Accuracy:
    • Resolution refers to the level of detail captured by a dataset. Higher resolution means finer details.
    • Accurate representation of features (e.g., roads, buildings, land cover) relies on appropriate resolution.
    • Low-resolution data may overlook critical features or distort shapes.
  • Visual Interpretation:
    • High-resolution imagery allows better visual interpretation.
    • Detecting small objects (e.g., trees, utility poles) becomes feasible with finer resolution.
  • Analysis Precision:
    • Spatial analysis (e.g., buffer zones, proximity analysis) benefits from higher resolution.
    • Precise measurements and calculations depend on detailed data.
  • Map Aesthetics:
    • Maps with high-resolution data appear more visually appealing.
    • Smooth lines, clear labels, and accurate symbols enhance map quality.
  • Scale Considerations:
    • Data resolution must match the map scale.
    • Large-scale maps (e.g., city maps) require high-resolution data.
    • Small-scale maps (e.g., world maps) can use coarser resolution.
  • Data Volume and Processing Time:
    • High-resolution data increases file size and processing time.
    • Balancing resolution with efficiency is essential.
  • Remote Sensing Applications:
    • Satellite and aerial imagery provide valuable data.
    • High-resolution sensors enable detailed land cover classification, change detection, and environmental monitoring.
  • Trade-offs:
    • Choosing resolution involves trade-offs:
      • Storage: High-resolution data demands more storage space.
      • Processing: Analyzing large datasets takes longer.
      • Cost: Acquiring high-resolution data can be expensive.

SAMPLE QUESTION

Which of the following statements accurately describes the concept of data resolution for gridded data in GIS?

A) Data resolution is the smallest difference between adjacent positions that can be recorded. It is tied to the scale of a paper map.

B) Data resolution refers to the ability of a sensor to distinguish between wavelength intervals in the electromagnetic spectrum.

C) High-resolution data is typically more accurate and precise, allowing for better representation of the Earth’s surface.

D) Data resolution is primarily concerned with the clarity and detail of an image, often measured in terms of dots per inch (DPI) or pixels per meter.

Answer: D) Data resolution is primarily concerned with the clarity and detail of an image, often measured in terms of dots per inch (DPI) or pixels per meter. It describes how well an image or dataset can represent features on the ground12. Higher resolution allows for better visualization and analysis of smaller ground objects, but it also results in larger datasets and increased storage requirements.

UNDERSTANDING OF DATA VALIDATION AND UNCERTAINTY

When working with geospatial data, it’s essential to consider both data validity and uncertainty. Both error and uncertainty play essential roles in modeling measurement processes. While error models focus on minimizing discrepancies, uncertainty models embrace the inherent limitations and provide a more comprehensive view of measurement results.

AM-19 - Exploratory data analysis (EDA) | GIS&T Body of Knowledge (ucgis.org)

AM-22 - Global Measures of Spatial Association | GIS&T Body of Knowledge (ucgis.org)

DC-19 - Ground Verification and Accuracy Assessment | GIS&T Body of Knowledge (ucgis.org)

KEY CONCEPTS AND TERMINOLOGY

  • Error-Based Modeling:
    • Definition: Error represents the difference between the obtained value and the true value. It has both magnitude and sign. The true value depends on the context of use.
    • Focus: Error-based models emphasize understanding and quantifying the discrepancies between measurements and the idealized true values.
    • Application: These models are commonly used in traditional approaches to measurement, where the goal is to minimize systematic and random errors.
    • Example: When calibrating an instrument, we aim to reduce systematic errors (such as bias) and random errors (such as noise).
  • Uncertainty-Based Modeling:
    • Definition: Uncertainty refers to the imprecision in a value. It acknowledges that even the best measurements cannot provide definitive and complete information.
    • Focus: Uncertainty-based models recognize that measurements inherently carry uncertainty due to limitations in instruments, environmental conditions, and human factors.
    • Application: These models are prevalent in modern metrology and scientific practice. They consider uncertainties explicitly and propagate them through calculations.
    • Example: When reporting a measurement result, we include an uncertainty range (e.g., “Length = 10.5 ± 0.2 cm”).
  • Conjoint Need:
    • Hypotheses:
      • The concept of the true value is related to the model of a measurement process.
      • The concept of uncertainty is related to the connection between such a model and the real world.
      • Accuracy is a property of measuring systems (not measurement results), while uncertainty is a property of measurement results (not measuring systems).
    • Conclusion: These hypotheses lead to the realization that error-based and uncertainty-based modeling are not incompatible; in fact, they are conjointly needed.
    • Why? Error models address systematic and random discrepancies, while uncertainty models explicitly account for the limitations and variability inherent in measurements.
  • Data Validity:
    • Validity refers to whether the data accurately represent the real-world phenomena they intend to describe.
    • Key considerations:
      • Precision and Accuracy: How specific and error-free is the data? High precision and accuracy enhance validity.
      • Relevance: Are the data suitable for a specific application? Data must be fit for the intended purpose.
      • Fitness for Use Overall, data quality should align with the task at hand.
  • Uncertainty
    • Uncertainty arises
    • Types of uncertainty:
      • Measurement Uncertainty: Errors from data collection methods (e.g., GPS accuracy).
      • Model Uncertainty: Inherent limitations of spatial models (e.g., interpolation).
      • Contextual Uncertainty: Influence of surrounding factors (e.g., land cover context).
    • Addressing uncertainty:
      • Sensitivity Analysis: Assess how input variables affect results.
      • Metadata: Document data sources, processing steps, and assumptions.
      • Communication: Clearly convey uncertainty to users and decision-makers.

Responsible geospatial practice involves acknowledging and managing uncertainty,

SAMPLE QUESTION

Which of the following statements accurately describes the concept of data validation and uncertainty in GIS?

A) Data validation ensures that spatial data are accurate and complete, while uncertainty refers to the unpredictable nature of real world phenomena.

B) Data validation involves checking the consistency and correctness of spatial data, while uncertainty relates to the precision and reliability of measurements.

C) Data validation focuses on metadata management, while uncertainty deals with spatial relationships and topology.

D) Data validation is concerned with data storage and maintenance, while uncertainty pertains to spatial analysis techniques.

Answer: B) Data validation involves checking the consistency and correctness of spatial data, ensuring that it adheres to specified rules and standards. Uncertainty, on the other hand, relates to the inherent variability and lack of perfect knowledge in spatial data due to factors like measurement errors, approximation, and model assumptions12. Both concepts play crucial roles in maintaining data quality and making informed decisions in GIS.

UNDERSTANDING OF METADATA

Geospatial metadata (also geographic metadata) is a type of metadata applicable to geographic data and information. Such objects may be stored in a geographic information system (GIS) or may simply be documents, datasets, images or other objects, services, or related items that exist in some other native environment but whose features may be appropriate to describe in a (geographic) metadata catalog (may also be known as a data directory or data inventory).

In summary, geospatial metadata ensures proper utilization, discovery, and understanding of spatial data resources, supporting effective decision-making and analysis1234.

DM-57 - Metadata | GIS&T Body of Knowledge (ucgis.org)

DM-60 - Spatial Data Infrastructures | GIS&T Body of Knowledge (ucgis.org)

Living Textbook | [DM-07-060] Spatial Data Infrastructures | By ITC, University of Twente (ucgis.org)

Living Textbook | [DM-07-079] U.S. National Spatial Data Infrastructure | By ITC, University of Twente (ucgis.org)

KEY CONCEPTS AND TERMINOLOGY

  • Documentation and Discovery:
    • Like a library catalog record, metadata records document the “who, what, when, where, how, and why” of a data resource.
    • Geospatial metadata describes various location-based data resources, including:
      • Maps
      • Geographic Information Systems (GIS) files
      • Imagery
      • Other spatial datasets
  • Key Components of Geospatial Metadata:
    • Title: Descriptive name of the dataset.
    • Abstract: Summary of the dataset’s content.
    • Keywords: Relevant terms for search and discovery.
    • Spatial Extent: Geographic coverage (bounding coordinates).
    • Temporal Extent: Time period covered by the data.
    • Data Format: File format (e.g., Shapefile, GeoTIFF).
    • Data Source: Origin of the data.
    • Accuracy and Precision: Information about data quality.
    • Projection Information: Coordinate system details.
    • Access Constraints: Restrictions on data use.
  • Lifecycle Support:
    • Metadata serves geospatial information resources throughout their lifecycle:
      • Creation: Documenting data during its development.
      • Management: Tracking changes and updates.
      • Access and Use: Helping users understand and utilize the data.
  • Standards and Tools:
    • ISO 191 metadata series and the FGDC CSDGM (Content Standard for Digital Geospatial Metadata) provide guidelines for creating consistent metadata.
    • Tools exist to create, validate, and publish metadata.

SAMPLE QUESTION

What is the purpose of GIS metadata?

A) To provide a detailed description of the data, including its title, abstract, and keywords.

B) To create visual representations of spatial data on maps.

C) To analyze spatial relationships between features.

D) To measure the accuracy of elevation data.

Answer: A) To provide a detailed description of the data, including its title, abstract, and keywords. GIS metadata serves as an instruction manual for understanding how the data was created and is essential for proper data management and usage1.

KNOWLEDGE OF TEMPORAL DATA

Temporal data in Geographic Information Systems (GIS) plays a crucial role in understanding how geographic phenomena change over time.

Temporal data enriches GIS by adding the dimension of time, enabling dynamic analysis and informed spatial understanding123

AM-80 - Capturing Spatiotemporal Dynamics in Computational Modeling | GIS&T Body of Knowledge (ucgis.org)

KEY CONCEPTS AND TERMINOLOGY

  • Definition and Examples:
    • Temporal data represents a state at a specific moment or over a duration.
    • Examples include:
      • Land-use patterns of Hong Kong in 1990.
      • Total rainfall in Honolulu on July 1, 2009.
      • Movement patterns of ocean mammals.
      • Population increases per city.
      • Disease fatalities over time.
  • Data Representation:
    • Temporal data can be sampled at regular or irregular intervals.
      • Regular interval: Stream flow data collected every 15 minutes.
      • Irregular interval: Lightning or earthquake data recorded whenever an event occurs.
    • Durations of time can also be represented (e.g., start and end times for fire perimeters).
  • Time-Aware Layers in GIS:
    • Temporal layers are configured with attribute fields defining time extents.
    • The time slider allows exploration and filtering of temporal data.
    • Maps with temporal data provide additional controls to explore changes over time.
  • Applications:
    • Visualize trends, patterns, and variations over time.
    • Monitor environmental changes (e.g., weather, land cover).
    • Analyze historical data for decision-making.

SAMPLE QUESTION

Which of the following statements accurately describes the applications of temporal data in GIS?

A) Visualize the locations of ocean mammals to understand patterns in their movement.

B) Understand population increases per city.

C) Indicate how fatalities from a disease are increasing based on changing colors in the layer symbology.

D) View ocean temperature changes or weather patterns over time.

Answer: All the above. Temporal data in GIS allows us to explore dynamic phenomena over time, including tracking ocean mammals, monitoring population changes, visualizing disease trends, and observing climate variations1.

KNOWLEDGE OF SPATIAL DATA STANDARDS, INCLUDING ISO, FGDC, AND OGC

KEY CONCEPTS AND TERMINOLOGY

  • Federal Geographic Data Committee (FGDC) - who, what, when, where, why, and how
    • Include title, abstract and date, geographic extent and projection info, attribute label definitions, and domain values.
  • Content Standard for Digital Geospatial Metadata (CSDGM)
    • ISO 19115 - developed for documenting vector and point data and geospatial services (web-mapping, data catalogs, and data modeling applications)
    • ISO 19115-2 - adds elements to describe imagery and gridded data as well as data collected using instruments (monitoring stations and measurement devices)
  • OGC – Open GIS Consortium
    • Describes basic data model for holding geographic data.
    • These are data file types, such as KML.

SAMPLE QUESTION

Which of the following statements accurately describes the role of geospatial standards and their associated organization?

A) Geospatial standards ensure that all spatial data is stored in a single format, simplifying data management.

B) The Federal Geographic Data Committee (FGDC) is responsible for developing and implementing geospatial standards within the U.S. government.

C) The Open Geospatial Consortium (OGC) focuses on creating standards for hardware manufacturers in the geospatial industry.

D) ISO 19115-3:2016 is a standard specifically related to spatial data accuracy.

Answer: B) The Federal Geographic Data Committee (FGDC) is the lead entity in the U.S. government for developing, implementing, and reviewing policies, practices, and standards related to geospatial data. Geospatial standards facilitate the development, sharing, and use of geospatial data and services, benefiting both federal and non-federal agencies1. The FGDC collaborates with other organizations, including ISO and OGC, to ensure interoperability and consistency in geospatial data standards. ISO 19115-3:2016 is indeed a standard related to metadata implementation for fundamental concepts2. However, it is not the primary focus of FGDC’s responsibilities.