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

    Interface Session

    An observation session (formerly known as a transect).

    interface Session {
        id: number;
        uuid: string;
        type: "point" | "transect";
        observation_lists: ObservationList[];
        observation_count: number;
        location_detail: LocationDetail;
        start_datetime: string;
        end_datetime: string;
        geom: Point | LineString;
        notes: string;
        permalink: string;
    }
    Index

    Properties

    id: number

    Read-only. The session id.

    uuid: string

    A UUID to uniquely identify this session.

    type: "point" | "transect"

    The session type.

    observation_lists: ObservationList[]

    A list of species groups that were counted.

    observation_count: number

    Read-only. The number of observations linked to the session.

    location_detail: LocationDetail

    Read-only. The main location of the session.

    start_datetime: string

    When the session started, isoformat yyyy-mm-ddThh:mm:ss.

    end_datetime: string

    When the session ended, isoformat yyyy-mm-ddThh:mm:ss.

    Coordinates for the session. Always returned as a GeoJSON object; a Point for type "point" or a LineString for type "transect".

    notes: string

    Notes from a session. Empty string when no notes have been entered.

    permalink: string

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