Get a list of geographic bounding box objects. GeographicBoundingBoxes have a 1:many mapping with Observations.

### Available end points:

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

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `bboxName
- `eastBoundLongitude`
- `northBoundLatitude`
- `westBoundLongitude`
- `southBoundLatitude`

### How to use filters:

- `/bboxes/?bboxName=global`
- `/bboxes/?eastBoundLongitude__lt=10`
- `/bboxes/?northBoundLatitude=90`
- `/bboxes/?westBoundLongitude__lte=-40.1`
- `/bboxes.json?southBoundLatitude__gte=30`

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

{
    "ob_id": 1158,
    "bboxName": "",
    "eastBoundLongitude": 8.77042007446289,
    "northBoundLatitude": 48.86000061035156,
    "westBoundLongitude": 7.645280838012695,
    "southBoundLatitude": 48.03651428222656
}