Normalmente, la unidad se da para cada SIR dentro de su documentación, por lo que puede encontrarla directamente en la información del SIR, por ejemplo :
UNIT["metre",1,AUTHORITY["EPSG","9001"]
UNIT["degree",0.01745329251994328, AUTHORITY["EPSG","9122"]]
si no encuentra la información en su sistema (, puede comprobarlo en spatialreference.org
Tenga en cuenta que a veces se mencionan tanto la unidad del dato (normalmente grados) como la proyección, en este caso debe seleccionar la unidad de la proyección.
> PROJCS["GGRS87 / Greek Grid", <-- this is the name of your coordinate system
> GEOGCS["GGRS87", <-- here starts the desription of the datum
> DATUM["Greek_Geodetic_Reference_System_1987",
> SPHEROID["GRS 1980",6378137,298.257222101,
> AUTHORITY["EPSG","7019"]],
> TOWGS84[-199.87,74.79,246.62,0,0,0,0],
> AUTHORITY["EPSG","6121"]],
> PRIMEM["Greenwich",0,
> AUTHORITY["EPSG","8901"]],
> UNIT["degree",0.01745329251994328,
> AUTHORITY["EPSG","9122"]],
> AUTHORITY["EPSG","4121"]],
> <-- Here starts the description of the projection, below you find the unit that will be used for calculation
> UNIT["metre",1, AUTHORITY["EPSG","9001"]],
> PROJECTION["Transverse_Mercator"],
> PARAMETER["latitude_of_origin",0],
> PARAMETER["central_meridian",24],
> PARAMETER["scale_factor",0.9996],
> PARAMETER["false_easting",500000],
> PARAMETER["false_northing",0],
> AUTHORITY["EPSG","2100"],
> AXIS["Easting",EAST],
> AXIS["Northing",NORTH]]
en el proj4texto, encontrará la unidad del CRS sólo
+unidades=m
cuando no se menciona ninguna unidad, el valor por defecto es el grado.