## Look up elevation at one or more points `$ plaza elevation lookup` **get** `/api/v1/elevation` Look up elevation at one or more points ### Parameters - `--lat: optional number` Latitude (single point) - `--lng: optional number` Longitude (single point) - `--locations: optional string` Pipe-separated lng,lat pairs (batch) ### Returns - `elevation_lookup_result: object { geometry, properties, type }` GeoJSON Point Feature with 3D coordinate [lng, lat, elevation] (RFC 7946 ยง3.1.1) - `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"` ### Example ```cli plaza elevation lookup \ --api-key 'My API Key' ```