Spatial Tools#
Georeferencer#
The Georeferencer tool lets you assign or correct the spatial reference system (CRS) of a raster dataset and apply geometric transformations to align it with real-world coordinates.
Reference System Information#
A reference system (more commonly known as a spatial reference system (SRS) or coordinate reference system (CRS)) defines how the pixel coordinates of your raster image are translated into real-world coordinates.
Reference systems can be represented in several forms. Common representations include:
1. WKT Strings#
Example:
GEOGCRS["WGS 84",
DATUM["World Geodetic System 1984",
ELLIPSOID["WGS 84",6378137,298.257223563,
LENGTHUNIT["metre",1]]],
PRIMEM["Greenwich",0,
ANGLEUNIT["degree",0.0174532925199433]],
CS[ellipsoidal,2],
AXIS["latitude",north],
AXIS["longitude",east],
ID["EPSG",4326]]
2. PROJJSON Schemas#
{
"type": "GeographicCRS",
"name": "WGS 84",
"datum": {
"type": "GeodeticReferenceFrame",
"name": "World Geodetic System 1984",
"ellipsoid": {
"name": "WGS 84",
"semi_major_axis": 6378137,
"inverse_flattening": 298.257223563
}
},
"coordinate_system": {
"subtype": "ellipsoidal",
"axes": [
{
"name": "Latitude",
"direction": "north",
"unit": "degree"
},
{
"name": "Longitude",
"direction": "east",
"unit": "degree"
}
]
}
}
Similarity Transform#
The similarity transform tool allows you to do two things: rotate/scale an image and translate an image’s coordinate system.
Translating Coordinate System#
This section refers to the tool with the title ‘Translate Coordinate Sys’ in the Similarity Transform Dialog window.
The way we translate the coordinate system is by changing the upper-left coordinates of the geotransform. If you do not know what a geotransform is, this link is a useful reference. From this link, you will see that we change GT(0) and GT(3). This translates the geotransform for your coordinate system.
GT(0) corresponds to Lon/East and GT(3) corresponds to Lat/North. When the ‘Translate Lat/North’ and ‘Translate Lon/East’ fields are 0, the ‘New Upper Left Pixel Lat/North’ field will equal GT(3) and the ‘New Upper Left Pixel Lon/East’ field will equal GT(0). By entering values into the ‘Translate Lat/North’ and ‘Translate Lon/East’ editable fields, you will change the new upper left coordinate of your geo transform.
You can click on any pixel in the raster dataset and see the new spatial coordinate it will have. This information is under the raster image. Note that this feature only works with datasets that have geographic information.