mapillary-js/src/api/ents/CoreImageEnt.ts
2021-03-22 11:56:49 +01:00

25 lines
545 B
TypeScript

import { KeyedEnt } from "./KeyedEnt";
import { LatLonEnt } from "./LatLonEnt";
/**
* Interface that describes the raw core node properties.
*
* @interface CoreImageEnt
*/
export interface CoreImageEnt extends KeyedEnt {
/**
* SfM computed latitude longitude in WGS84 datum, measured in degrees.
*/
cl?: LatLonEnt;
/**
* Original EXIF latitude longitude in WGS84 datum, measured in degrees.
*/
l: LatLonEnt;
/**
* Key of sequence that the node is part of.
*/
sequence_key?: string;
}