Get a list of Observation objects.

### Available end points:

- `/observations/` - Will list all Results in the database
- `/observations.json` - Will return all Results in json format. This can
also be achieved by using the accept header. `application/json`
- `/observations/<object_id>/` - Returns Results object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `title`
- `uuid`
- `keywords`
- `status`
- `result_field`
- `discoveryKeywords`
- `updateFrequency`
- `nonGeographicFlag`
- `publicationState`
- `permissions`

### How to use filters:

These filters can be used like django query filters using __ for related model relationships.

- `/observations/?uuid=d594d53df2612bbd89c2e0e770b5c1a0`
- `/observations/?status=completed`
- `/observations/?results_field__dataPath__startswith=/neodc/esacci`
- `/observations/?discoveryKeywords__name=ESACCI`
- `/observations/?nonGeographicFlag=True`

Filters can be stacked to build an 'AND' relationship. E.g.

- `/observations/?publicationState__in=published,citable&nonGeographicFlag=True`
- `/observations/?publicationState__in=published,citable&discoveryKeyword__name=NDGO0003`

GET /api/v2/observations/10953/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 10953,
    "uuid": "66486d43646c4f9db8bbde0efe1694ab",
    "title": "Raw Digital Ionosonde Data Tapes",
    "abstract": "The dataset consists of digital ionosonde data tapes from various ionosonde stations.\r\n\r\nDigital ionosonde data tapes from KEL ionosondes:\r\n\r\nSlough (SL051) 1992 - 1995\r\nThe KEL IPS42 is a simple sounder in comparison with modern equipment. It was specifically designed to carry out regular routine sounding of the ionosphere. The transmitter generates a 5 kw pulse using four valves in a parallel push/pull distributed amplifier. This is broadcast using a single rhombic antenna, which also doubles as the receiver. Since there is only one receive aerial, the information in the return signal is limited to frequency and time of flight (known as virtual height). The return analogue information is converted to a digital signal and processed by a Commodore 64 6502 chip. The results are then recorded onto magnetic tape.\r\nSouth Uist (US057) 1986 - 1990\r\nLerwick (LE061) 1990 - 1992\r\nStanley (PSJ5J) 1988 - 1995\r\nDigital ionosonde data tapes from DPS-1 (Digital Portable Sounder) ionosondes:\r\n\r\nLerwick (LE061) 1992 - 1998\r\nStanley (PSJ5J) 1995 - ongoing\r\nChilton (RL052) 1993 - ongoing\r\n\r\nIn contrast to the KEL, the Digital Portable Sounder (DPS) at Chilton is a much more versatile instrument. Although it is being used at RAL for regular monitoring (following the schedule of the Slough site) it was originally designed as a research instrument, and is therefore much more flexible. Improvements in the receiver sensitivity mean that quality data can be obtained from a pulse of just 300 W, generated by a solid state MOSFET. The transmitter antenna consists of a 'crossed delta'; two orthogonal triangles with a vertical apex at a height of 27m and with a base 50m across. The receiver is a phased array of four crossed loop antennas five feet in diameter. Three of the aerials are positioned on the vertices of an equilateral triangle with 60m sides, the fourth is in the centre of the triangle.\r\nAs the receivers form an array, it is possible to infer much more information from the return echo. As well as frequency and virtual height, the DPS can determine the polarisation, Doppler shift, and direction of arrival of each echo in a sounding. This is invaluable when trying to separate oblique signals from those of interest in regular soundings, i.e. those from directly above the sounder. The DPS analyses the return data using a 486 PC and writes the results to magnetic tape.",
    "keywords": "Ionosonde",
    "publicationState": "working",
    "dataPublishedTime": null,
    "doiPublishedTime": null,
    "updateFrequency": "",
    "status": "ongoing",
    "result_field": {
        "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/19792/?format=api",
        "dataPath": "http://www.ukssdc.ac.uk/contact.html",
        "oldDataPath": [],
        "storageLocation": "external",
        "storageStatus": "offline",
        "volume": 0,
        "numberOfFiles": 0,
        "fileFormat": "tape"
    },
    "timePeriod": "https://api.catalogue.ceda.ac.uk/api/v2/times/3043/?format=api",
    "geographicExtent": "https://api.catalogue.ceda.ac.uk/api/v2/bboxes/495/?format=api",
    "nonGeographicFlag": false,
    "phenomena": [],
    "dataLineage": "needed",
    "removedDataTime": null,
    "removedDataReason": "",
    "language": "English",
    "identifier_set": [],
    "projects": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19806/?format=api"
    ],
    "observationcollection_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/10944/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39460/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39463/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39459/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39461/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39464/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39465/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39466/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/39462/?format=api"
    ],
    "procedureAcquisition": null,
    "procedureCompositeProcess": null,
    "procedureComputation": null,
    "permissions": [
        {
            "ob_id": "https://api.catalogue.ceda.ac.uk/api/v2/observations/2528/?format=api",
            "useLimitation": null,
            "accessConstraints": null,
            "accessCategory": "public",
            "accessRoles": null,
            "label": "public: None group",
            "licenceURL": "http://creativecommons.org/licenses/by/4.0/",
            "licenceClassifications": "any"
        }
    ],
    "discoveryKeywords": []
}