cellAreaM2 method

int cellAreaM2(
  1. int h,
  2. Pointer<Double> out
)

@brief exact area for a specific cell (hexagon or pentagon) in meters^2

Implementation

int cellAreaM2(
  int h,
  ffi.Pointer<ffi.Double> out,
) {
  return _cellAreaM2(
    h,
    out,
  );
}