convert abstract method

GeographicArea? convert(
  1. GeographicAreaType toType
)

Attempts to convert this geographic area to a different type.

Tries to create a new geographic area of the specified type that approximates the same spatial region. Conversion success depends on the source and target types - some conversions may result in loss of precision or may not be possible at all.

Parameters

Returns

  • A new GeographicArea of the requested type on successful conversion, or null if conversion is not possible or fails.

Implementation

GeographicArea? convert(GeographicAreaType toType);