hemisphere property
Retrieves the hemisphere of the point.
Returns
- The hemisphere of the point as a Hemisphere enumeration.
Implementation
Hemisphere get hemisphere {
final OperationResult resultString = objectMethod(
_pointerId,
'Projection_UTM',
'getHemisphere',
);
return HemisphereExtension.fromId(resultString['result']);
}