Get a list of ProcedureComputation objects. ProcedureComputations have a 1:1 mapping with Observations.

### Available end points:

- `/ProcedureComputations/` - Will list all ProcedureComputations in the database
- `/ProcedureComputations.json` - Will return all ProcedureComputations in json format
- `/ProcedureComputations/<object_id>/` - Returns ProcedureComputations object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `uuid`
- `title`
- `keywords`
- `abstract`

### How to use filters:

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

- `/computations/?uuid=d594d53df2612bbd89c2e0e770b5c1a0`
- `/computations/?title__startswith!=DETAILS NEEDED - COMPUTATION CREATED FOR SATELLITE COMPOSITE`
- `/computations/?abstract__contains=HadCM3 model`

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

{
    "ob_id": 40325,
    "uuid": "c800f7a0b13f495aaf4f0f7f767f156f",
    "title": "Climatic Research Unit (CRU) procedure to produce the CRU JRA v2.4 data.",
    "abstract": "The CRU JRA (Japanese reanalysis) data is a replacement to the CRU NCEP dataset, CRU JRA data follows the style of Nicolas Viovy's original dataset rather than that which is available from UCAR.\r\n\r\nThe CRU JRA dataset is based on the JRA-55 reanalysis dataset and aligned where appropriate with the CRU TS dataset version 4.07 (1901-2022).\r\n\r\nAll JRA variables are regridded from their native TL319 Gaussian grid to the CRU regular 0.5° x 0.5° grid, using the g2fsh spherical harmonics routine from NCL (NCAR Command Language), based on the 'Spherepack' code. The exception is precipitation, which is regridded using ESMF 'nearest neighbour': all other algorithms tried exhibited unwanted artifacts.\r\n\r\nThe JRA-55 reanalysis dataset starts in 1958. The years 1901-1957 are constructed using randomly-selected years between 1958 and 1967. Where alignment with CRU TS occurs, the relevant CRU TS data is used.\r\n\r\nOf the ten variables listed above, the last four do not have analogs in the CRU TS dataset. These are simply regridded, masked for land only, and output as CRUJRA. The other six are aligned with CRU TS as follows:\r\n\r\nTMP is aligned with CRU TS TMP. A monthly mean for the JRA data is\r\ncalculated and compared with the equivalent CRU TS mean. The difference\r\nbetween the means is added to every JRA value.\r\n\r\n---\r\n\r\nTMAX and TMIN are aligned with CRUJRA TMP and CRU TS DTR. Firstly, at\r\neach time step, the TMAX-TMP-TMIN triplets are checked and adjusted so\r\nthat TMAX is always >= TMP, and TMIN is always <= TMP. This triplet\r\nalignment is prioritised above DTR alignment. Secondly, monthly JRA DTR\r\nis calculated by first establishing the daily maxima and minima (max and\r\nmin of the subdaily values in TMAX and TMIN respectively), then monthly\r\nmaxima and minima, (means of the daily DTR values), giving JRA monthly\r\nDTR. This is compared with CRU TS DTR and the fractional difference\r\n(factor) calculated as (CRU TS DTR) / (JRA monthly DTR). This factor is\r\nthen used to adjust the DTR of each pair of subdaily TMAX and TMIN\r\nvalues, though not if the triplet alignment would be broken.\r\n\r\n---\r\n\r\nPRE is aligned with CRU TS PRE and WET (rain day counts). Firstly, the\r\nmonthly total precipitation is calculated for JRA and compared to CRU TS\r\nPRE; an adjustment factor is acquired (crupre/jrapre) and all values\r\nadjusted. Precipitation amounts are now aligned at a monthly level, and\r\nthis alignment is prioritised above WET alignment. Secondly, the number\r\nof rain days is calculated for JRA: a day is declared wet if the total\r\nprecipitation is equal to, or exceeds, 0.1mm (the same threshold as CRU\r\nTS WET). If JRA has more wet days than CRU TS, then the driest of those\r\nare reduced to a random amount below 0.1 (an adjustment factor is\r\ncalculated and applied to each time step, to preserve the subdaily\r\ndistribution). If JRA has fewer wet days than CRU TS, then sufficient\r\ndry days are set to a random amount equal to or closely above 0.1mm,\r\nagain using an adjustment factor to preserve the subdaily distribution. \r\nWhere wet day alignment threatens precipitation alignment, the process\r\nis abandoned and the cell/month reverts to the previously-aligned\r\nprecip version. Exception handling is very complicated and cannot be\r\nsummarised here.\r\n\r\n---\r\n\r\nSPFH is aligned with CRU TS VAP. VAP is converted to SPFH, and JRA mean\r\nmonthly SPFH is calculated. The fractional difference (factor) is\r\ncalculated as (CRU TS SPFH) / (JRA monthly SPFH), this factor is then\r\napplied to the JRA subdaily humidity values.\r\n\r\n---\r\n\r\nDSWRF is aligned with CRU TS CLD. CLD is converted to shortwave\r\nradiation, and JRA mean monthly DSWRF is calculated. The fractional\r\ndifference (factor) is calculated as (CRU TS SWR) / (JRA monthly DSWRF),\r\nthis factor is then applied to the JRA subdaily radiation values.\r\n\r\n---\r\n\r\nWhere appropriate, CRUJRA values are kept within physically-appropriate\r\nconstraints (such as negative precipitation), which could result from\r\nregridding as well as adjustments.",
    "keywords": "Climatic Research Unit, CRU, TS, CY",
    "inputDescription": null,
    "outputDescription": null,
    "softwareReference": null,
    "identifier_set": []
}