isMissingProjectionEngineFiles property

bool isMissingProjectionEngineFiles

True if any files needed by the Projection Engine for this transformation step are missing from the local file system. GeographicTransformationStep.projectionEngineFilenames indicates the required files.

Implementation

bool get isMissingProjectionEngineFiles {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore
        .RT_GeographicTransformationStep_getIsMissingProjectionEngineFiles(
      _handle,
      errorHandler,
    );
  });
}