Skip to main content

Add your description here

Project description

Agoutix

A Python package and command-line tool for exporting annotation datasets from Agouti projects.

Agoutix is not affiliated with or endorsed by the creators of Agouti. This tool is developed independently to facilitate data export and analysis for users of the Agouti platform.

Agoutix makes use of the Agouti API used by the Agouti web application. Agouti now has a public API, however Agoutix uses some API calls that aren't documented, and may change without notice. Use Agoutix at your own risk.

Table of Contents

Features

  • List projects
  • Download media assets
  • Export calibration datasets
  • Export observation position datasets
  • Easy-to-use command-line interface

Installation

You can install the package using pip:

pip install agoutix

Or if you have uv installed, you can run the tool directly by prefixing the command with uvx. e.g.,

uvx agoutix --help

or add the package to your uv project dependencies:

uv add agoutix

Usage (Python API)

Here's a simple example of how to use Agoutix in your Python code:

from agoutix.agouti import Agouti

# Initialize the Agouti client
client = Agouti(
  email="YOUR_EMAIL",
  password="YOUR_PASSWORD"
)

# List projects
projects = client.list_projects()
for project in projects:
    print(f"Project ID: {project.id}, Name: {project.attributes.name}")

# List observations in a specific project
observations = client.list_project_observations(project_id="YOUR_PROJECT_ID")
for observation in observations:
    print(f"- Observation ID: observation.attributes.observation_id")
    print(f"  Observation Type: {observation.attributes.observation_type}")
    print(f"  Sequence ID: {observation.attributes.sequence_id}")
    print(f"  Scientific Name: {observation.attributes.scientific_name}")
    print(f"  Deployment ID: {observation.attributes.deployment_id}")

There are additional methods available. Refer to the agouti.py source code for more details.

Usage (Command-Line Interface)

The Agoutix command-line tool provides several commands to interact with the Agouti platform. Below are examples of how to use the tool to export different datasets.

List Projects

To use the Agouti Annotation Exporter, first run the following command to list all projects associated with your account:

agoutix --email YOUR_EMAIL --password YOUR_PASSWORD list-projects

Replace YOUR_EMAIL and YOUR_PASSWORD with your actual Agouti account credentials.

This will display a list of all projects available in your Agouti account.

Export Calibration Dataset

A Calibration dataset contains all calibration pole annotations for a project.

agoutix --email YOUR_EMAIL --password YOUR_PASSWORD export-calibration-dataset --project-id YOUR_PROJECT_ID

A JSON formatted file named calibration_dataset_project_<PROJECT_ID>.json will be created in the current directory, containing all calibration pole annotations for the specified project.

{
  "images": [
    {
      "asset_id": "a8b4c7e2-1f3a-4b6d-8c9e-0d5f2a7b9c1e",
      "filename": "image_001.jpg",
      "project_id": "41cb7cb1-a511-4632-8d7f-1c717c81af97",
      "deployment_id": "2b32fd97-d017-444d-92b5-2a6f8c822bd6",
      "annotations": [
        {
          "calibration_id": "e046191a-a475-453d-bb94-bf67f86122b4",
          "label": "top",
          "x": 0.34,
          "y": 0.78,
          "height": 0.6
        },
        {
          "calibration_id": "b8ff0533-4ce3-4615-ba76-22a275dfd82d",
          "label": "bottom",
          "x": 0.34,
          "y": 0.95,
          "height": 0.6
        }
      ]
    }
  ]
}

The dataset is structured as follows:

  • images: Array of images containing calibration annotations
    • asset_id: Unique identifier for the image asset
    • filename: Original filename of the image
    • project_id: Project ID this image belongs to
    • deployment_id: Deployment ID this image belongs to
    • annotations: Array of calibration pole annotations
      • calibration_id: Unique identifier for the calibration annotation
      • label: Position label ("top" or "bottom")
      • x: X coordinate (normalized to 0-1 range)
      • y: Y coordinate (normalized to 0-1 range)
      • height: Height of the calibration pole

Export Observation Positions

An Observation Positions dataset contains all observation position annotations (e.g., front-leg positions) for all species observations in a project. This command also downloads all associated image assets to a local assets/ directory.

agoutix --email YOUR_EMAIL --password YOUR_PASSWORD export-observation-positions --project-id YOUR_PROJECT_ID

A JSON formatted file named observation_positions_dataset.json will be created in the current directory, and all image assets will be downloaded to the assets/ subdirectory.

{
  "images": [
    {
      "file_name": "20250115182634-IMG_0467.JPG",
      "asset_id": "38956f9a-9edb-4d72-97bc-05ac32f2a80d",
      "sequence_id": "58d7636f-7c03-4796-9e11-c6e624c3b569",
      "original_filename": "IMG_0467.JPG",
      "created_at": "2023-07-30T23:57:05.000Z",
      "deployment": "ce839553-8d38-454d-98b6-9f34b159eef1",
      "project_id": "080d2776-9411-4799-be28-19aa4a1eb652",
      "width": 2688,
      "height": 1512
    }
  ],
  "observations": [
    {
      "observation_id": "7e932f89-58ee-41de-9fda-d83adbda29ec",
      "scientific_name": "Meles meles",
      "observation_type": "Species",
      "sampling_point": "04_NHMP_054_Brackenhurst23 (15367)"
    }
  ],
  "positions": [
    {
      "position_id": "1ae3607a-ada4-4637-8037-5f3bd37b3c99",
      "observation_id": "7e932f89-58ee-41de-9fda-d83adbda29ec",
      "asset_id": "38956f9a-9edb-4d72-97bc-05ac32f2a80d",
      "x": 1008.0,
      "y": 1825.15
    }
  ]
}

The dataset is structured as follows:

  • images: Array of image metadata
    • file_name: Filename of the image
    • asset_id: Unique identifier for the image asset
    • sequence_id: Sequence identifier
    • original_filename: Original filename as uploaded
    • created_at: Timestamp when the image was created
    • deployment: Deployment ID
    • project_id: Project ID
    • width: Image width in pixels
    • height: Image height in pixels
  • observations: Array of observation metadata
    • observation_id: Unique identifier for the observation
    • scientific_name: Species scientific name
    • observation_type: Type of observation (always "Species" for this dataset)
    • sampling_point: Sampling point name
  • positions: Array of keypoint annotations
    • position_id: Unique identifier for the position annotation
    • observation_id: Associated observation ID
    • asset_id: Associated image asset ID
    • x: X coordinate in pixels (adjusted to actual image dimensions)
    • y: Y coordinate in pixels (adjusted to actual image dimensions)

Acknowledgements

Thank you to the Agouti Team for creating an excellent platform for camera trap data management and generous support during development and delivery of the NHMP pilot project and broader community.

This tool was developed by Ben Evans at the Institute of Zoology, ZSL as part of the NHMP project.

We would like to thank Natural England which provided the majority of the funds to support the NHMP pilot through the Species Recovery Programme funding stream. People’s Trust for Endangered Species and British Hedgehog Preservation Society also contributed significant funds to enable the pilot project to extend to Wales and Scotland

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agoutix-1.0.1.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agoutix-1.0.1-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file agoutix-1.0.1.tar.gz.

File metadata

  • Download URL: agoutix-1.0.1.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for agoutix-1.0.1.tar.gz
Algorithm Hash digest
SHA256 eac3d7d7a7c1bcb6217ac9111f89153f710c260004aa96875e28630c1a102b55
MD5 ce7fae33ce4d550600f7afe870ed5e6e
BLAKE2b-256 aab0d645fc5723f3aa2c774089067fd5ab6f920abc0d8c8490337fa79e4e64f9

See more details on using hashes here.

File details

Details for the file agoutix-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: agoutix-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for agoutix-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c62237d9d5dfb9c3be166d2249624e19c689067497b07ebc238de494a38560b2
MD5 802b7c401e779e580dc6a2a4428c9f04
BLAKE2b-256 957326bef5022b8681b8efdbc5557a020ab47995b6caf5e1c965caad2146236d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page