Create a dataframe¶
From a list of dictionnaries¶
GeoDataFrame.fromRecords();
Parameters:
- geometryCol
required String: the geometry column name
- speedCol
String: the speed column name
- timestampCol
String: the timestamp column name
- verbose
bool: verbosity
final data = <Map<String, dynamic>>[];
final df = GeoDataFrame.fromRecords(data,
geometryCol: "geometry",
speedCol: "speed",
timestampCol: "timestamp",
verbose: true);