data management Flashcards
spatial data?
Spatial data are all the data that can be
localized in a spatial reference system.
geographical data?
are all the data that can be semantically identified and localised in a spatial reference system about the earth
What is management?
is the process where the resources of an organisation are coordinated and directed in the direction of the accomplishment of commonly decided goals
What is GIS?
A geographic information system (GIS) is a framework for gathering, managing, and analyzing data which are spatially referenced to the Earth
components of GIS
- Hardware or computer equipment
- Software
- Data
- People
- Methods (business rules)
what problems can GIS help to answer?
- Location: The exact position on Earth.
- Patterns: How features are distributed.
- Trends: Changes over time.
- Conditions: Requirements or limits.
- Implications: Potential effects of actions.
What are the three components of spatial data?
Temporal (When): the time of an event or data collection.
Thematic (What): the characteristics of the data.
Spatial (Where): the geographic location of the data.
What are the two types of spatial coordinate systems?
Geographic Coordinate Systems (GCS): Used to locate objects on the Earth’s surface in 2D or 3D space.
Projected Coordinate Systems (PCS): Used to locate objects on a flat map in 2D; PCS = GCS + map projection.
What are the four types of attribute data?
Nominal: Classifies features into groups without order (e.g., cities, countries).
Ordinal: Orders data into ranked categories without exact values.
Interval: Provides values with equal units, allowing distance interpretation.
Ratio: Like interval, but with a true zero,
What are the five types of spatial entities in conceptual data modelling?
- Point: Represents a single location (e.g., city, landmark).
- Line: Represents linear features (e.g., roads, rivers).
- Area (Polygon): Represents enclosed areas (e.g., lakes, parks).
- Network: Represents interconnected features (e.g., transportation, utilities).
- Surface: Represents continuous features (e.g., elevation, temperature).
What is geodataframe in GeoPandas in Python?
is a data structure that combines the functionality of a Pandas DataFrame with spatial data, allowing you to store tabular data (rows and columns) and geometries (points, lines, or polygons) in one structure.
.
What are raster and vector data? What are the common data formats of raster and vector data?
- Raster data: spatial data using a grid of cells ass building blocks to represent features
-> GEOTIFF, ERDAS - Vector data is spatial data using cartesian (x,y) coordinates to define the shape of spatial features, the point is the basic building block
-> GEOJSON, SHAPEFILE
What is a layered approach?
involves combining data about different features, with each layer representing a specific type of feature. these layers may use diff data formats, spatial models or coordinate systems, may require transformation to combine them correctly
What is a minimum bounding box (MBB)?Why is it useful for spatial indexes?
is the smallest rectangle, aligned with the coordinate axes, that fully encloses a spatial feature or dataset. It is often used in spatial indexing to simplify calculations.
What are the common spatial topological relations in PostGIS?
equals, intersects, disjoint, touch, cross, overlap, within, contains