observation-js Documentation - v1.16.0
    Preparing search index...

    Interface Transect

    A transect (legacy V1). A timed survey along a point or line where species groups are counted.

    interface Transect {
        id: number;
        uuid: string;
        type: "point" | "transect";
        observation_lists: TransectObservationList[];
        start_date: string;
        start_time: string;
        end_date: string;
        end_time: string;
        geom: TransectGeom;
        location_detail: LocationDetail;
        notes: string;
        permalink: string;
        observation_count: number;
    }
    Index

    Properties

    id: number

    Read-only. The transect id.

    uuid: string

    A UUID to uniquely identify this transect.

    type: "point" | "transect"

    The transect type, either 'point' or 'transect'.

    observation_lists: TransectObservationList[]

    A list of species groups that were counted.

    start_date: string

    The date the transect started (isoformat yyyy-mm-dd).

    start_time: string

    The time the transect started ("HH:MM").

    end_date: string

    The date the transect ended. Must be equal or greater than start_date.

    end_time: string

    The time the transect ended ("HH:MM").

    Coordinates for the transect, as a GeoJSON Point or LineString.

    location_detail: LocationDetail

    Read-only. The main location of the transect.

    notes: string

    Notes from a transect.

    permalink: string

    Read-only. URL to this transect on the website.

    observation_count: number

    Read-only. The number of observations in the transect.