Geo-Information

E3: Georeferencing and Modifying Features

Warm Up

You will find detailed guidance and general information about CRS (Coordinate Reference Systems) and map projections in another document associated with this exercise.
Here, we will take a step further to deepen your understanding.


Mathematical aspects of projections

Why can’t the Earth (or an orange peel) be flattened without distortion?

This question is fundamentally about curvature. From a mathematical perspective, Gauss’s Theorema Egregium(thanks Gaussian again!) tells us that the intrinsic curvature of a surface is preserved under transformations that do not stretch or tear.
Since the Earth is (approximately) a sphere, and a sphere has positive curvature while a flat plane has zero curvature, you cannot map one onto the other without distortion.

For a fun and visual explanation, see: The clever way curvature is described in math, or There is a wonderful way of eating pizza, but you don’t know why


Great-circle navigation and shortest paths

On a sphere, the shortest path between two points is along a great circle (the intersection of the sphere with a plane passing through its center). In many map projections, this shortest route appears curved — especially in maps like Mercator — even though it is the geodesic path on the globe.

Projections

```{figure} ../images/ex3/mercator_size.gif

name: Mercator-fig — World Mercator projection with country going to true size


- **Units and computation in a CRS**:  
  - In **projected coordinate systems**, distances and areas are measured in linear units (meters, feet).  
  - In **geographic coordinate systems**, coordinates are in degrees; calculating distances requires spherical or ellipsoidal formulas.  
  - Area computation on a sphere/ellipsoid involves integrating over curved surfaces and must account for the CRS.

---

> **Takeaway**: No single projection can preserve all spatial properties. Your choice of projection should be guided by the task:  
> - Preserve shape for navigation and angular measurements.  
> - Preserve area for thematic mapping and statistics.  
> - Use compromise projections for balanced world maps.



## Task
### Descriptions
In this exercise, you’ll deepen your understanding of **coordinate reference systems (CRS)** and **map projections**, learn how to **minimize distortion** by reprojecting data into a local system, and practice **spatial editing workflows** in ArcGIS Pro. Detailed instructions in {download}`Lesson 3 <../doc/Lesson 3.docx>`

& You can [Click here to look](/Geo-Information/content/lessons/lesson3.html)

#### Data
  - `Data Students.gdb`
  - `orthophoto.tif`
  - `construction_plan.png`
  - `Address_points.txt`
  - `Housenumbers.txt`


### Overview
```{note}
:class: dropdown
- [ ] Change the map projection to a local **UTM** projection and set units to meters.
- [ ] Calculate and assign the correct **UTM zone** to your dataset.
- [ ] **Georeference** a raster (orthophoto and construction plan) to align with existing vector data.
- [ ] Add and visualize tabular data by:
  - Creating point features from XY coordinate tables.
  - Geocoding addresses without coordinates.
- [ ] Modify existing features by:
  - Editing and reshaping vertices.
  - Adding new polygons from construction plans.
  - Splitting polygons into separate features.
  - Clipping polygons to remove overlaps.

1. Specifying Map Projections and Coordinates

2. Georeferencing a Raster

3. Adding Tables

4. Modifying Features

Advance Task


Materials