camtrap_dp

Crates.iocamtrap_dp
lib.rscamtrap_dp
version0.1.0
sourcesrc
created_at2023-11-22 11:12:22.657408
updated_at2023-11-22 11:12:22.657408
descriptionCamTrap DP Interface
homepagehttps://github.com/bencevans/camtrap-dp-rs
repositoryhttps://github.com/bencevans/camtrap-dp-rs
max_upload_size
id1045091
size196,866
Ben Evans (bencevans)

documentation

https://github.com/bencevans/camtrap-dp-rs#readme

README

camtrap_dp

Documentation Crate License

Description

camtrap_dp is a Rust crate designed for handling Camera Trap Data Packages as specified by the Camera Trap Data Package standard. It provides a standardized format for describing camera trap deployments and the media files recorded, based on Data Package and Tabular Data Package specifications.

This library streamlines both reading and writing camera trap data, including deployments, media files, and observations derived from these files.

Features

  • Structures for representing camera trap deployments, media files, and observations.
  • CSV serialization and deserialization capabilities.
  • Comprehensive handling of various camera trap data attributes.

Installation

Add camtrap_dp as a dependency in your Cargo.toml:

[dependencies]
camtrap_dp = "0.1.0"  # Replace with the latest version

Usage

Reading Data

Reading deployment and media data example:

use camtrap_dp::{Deployment, Medium, Observation};

// Reading deployment data from a CSV file
let deployments = Deployment::from_file("path/to/deployments.csv").unwrap();

// Reading media data from a URL
let media_data = Medium::from_url("http://example.com/media.csv").unwrap();

// Reading observations from a file
let observations = Observation::from_file("path/to/observations.csv").unwrap();

Writing Data

Writing deployment data to a CSV file example:

// Assuming deployments is a Vec<Deployment> populated with data
deployments.to_file("path/to/output/deployments.csv").unwrap();

Contributing

Contributions are welcome! Feel free to report issues, suggest features, or submit pull requests on our GitHub repository.

License

camtrap_dp is licensed under the MIT License - see the LICENSE file for more information.

Acknowledgments

Thanks to all contributors and the teams behind the Camera Trap Data Package standards.

Commit count: 5

cargo fmt