toIMDF static method

Future<Map<String, dynamic>> toIMDF(
  1. Map<String, dynamic> featureCollection
)

Transforms internal features to IMDF format.

Implementation

static Future<Map<String, dynamic>> toIMDF(
  Map<String, dynamic> featureCollection,
) async {
  return await compute(_processToIMDF, featureCollection);
}