isGeoRaster static method

bool isGeoRaster(
  1. String? path
)

Checks if the supplied path refers to a GeoRaster format, basing on the file extension.

Implementation

static bool isGeoRaster(String? path) {
  return path != null && (isTiff(path) || isAsc(path));
}