Ground Control Points (GCPs) for Map Correction
gcps.Rd
A dataset containing Ground Control Points (GCPs) used for correcting the vector map parcels of the package. These points represent homologous locations identified on both the source (uncorrected) map and a modern land survey.
Format
An sf
object with 300 features and 6 variables:
- source_x
Numeric. The X-coordinate of the GCP on the source map.
- source_y
Numeric. The Y-coordinate of the GCP on the source map.
- target_x
Numeric. The X-coordinate of the GCP on the target map.
- target_y
Numeric. The Y-coordinate of the GCP on the target map.
- dx
Numeric. The difference in X-coordinates (target_x - source_x).
- dy
Numeric. The difference in Y-coordinates (target_y - source_y).
- geometry
sfc_POINT
. Thesf
point geometry representing the GCPs in the target CRS (EPSG:2100).
Examples
if (interactive()) {
# plot the difference in X-coordinates dx
plot((gcps["dx"]))
}