StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
582 B
17 lines
582 B
import { Feature, FeatureCollection, Geometry } from "@turf/helpers";
|
|
/**
|
|
* Takes one or more features and returns their area in square meters.
|
|
*
|
|
* @name area
|
|
* @param {GeoJSON} geojson input GeoJSON feature(s)
|
|
* @returns {number} area in square meters
|
|
* @example
|
|
* var polygon = turf.polygon([[[125, -15], [113, -22], [154, -27], [144, -15], [125, -15]]]);
|
|
*
|
|
* var area = turf.area(polygon);
|
|
*
|
|
* //addToMap
|
|
* var addToMap = [polygon]
|
|
* polygon.properties.area = area
|
|
*/
|
|
export default function area(geojson: Feature<any> | FeatureCollection<any> | Geometry): number;
|
|
|