You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the proto, the LOI_METADATA belongs to the geometry for the LOI task whereas LOI_DATA is for the non-LOI tasks.
// Defines possible values of the `level` field.enumDataCollectionLevel{// Default value when level is not specified.DATA_COLLECTION_LEVEL_UNSPECIFIED=0;// Data collected at this level is used to define a location of// interest (LOI). Specifically, geometry tasks of this type may be used// to allow data collectors to define the LOI's geometry. Future// implementations may use this to allow other LOI properties to be// added or modified.LOI_METADATA=1;// Data collected at this level is associated with, but does not define,// a location of interest (LOI). Specifically, geometry tasks of this// type define one or more annotations of the associated LOI. rather// than the geometry of the LOI itself.LOI_DATA=2;}
Simple fix is to swap them.
The text was updated successfully, but these errors were encountered:
There is a bug here, the level here is swapped:
ground-platform/web/src/app/converters/proto-model-converter.ts
Line 235 in 4773fbd
According to the proto, the
LOI_METADATA
belongs to the geometry for the LOI task whereasLOI_DATA
is for the non-LOI tasks.Simple fix is to swap them.
The text was updated successfully, but these errors were encountered: