## Look up elevation for multiple coordinates `$ plaza elevation batch` **post** `/api/v1/elevation/batch` Look up elevation for multiple coordinates ### Parameters - `--geometry: object { coordinates, type }` Path to profile (GeoJSON LineString geometry, minimum 2 points) ### Returns - `elevation_batch_result: object { features, type }` GeoJSON FeatureCollection of elevation Point Features with 3D coordinates - `features: array of ElevationLookupResult` Elevation Point Features for each queried point - `geometry: object { coordinates, type }` - `coordinates: array of number or array of array of number or array of array of array of number or array of array of array of array of number` GeoJSON coordinates array (nesting depth varies by geometry type) - `union_member_0: array of number` - `union_member_1: array of array of number` - `union_member_2: array of array of array of number` - `union_member_3: array of array of array of array of number` - `type: "Point" or "LineString" or "Polygon" or 3 more` - `"Point"` - `"LineString"` - `"Polygon"` - `"MultiPoint"` - `"MultiLineString"` - `"MultiPolygon"` - `properties: object { elevation_m }` - `elevation_m: optional number` Elevation in meters above mean sea level - `type: "Feature"` - `"Feature"` - `type: "FeatureCollection"` - `"FeatureCollection"` ### Example ```cli plaza elevation batch \ --api-key 'My API Key' \ --geometry '{coordinates: [0], type: Point}' ```