This repository is dedicated to testing the suggested modifications to Camtrap DP by the InsectAI community. We aim to evaluate these changes by mapping datasets to Camtrap DP.
The repository structure is based on Cookiecutter Data
Science. Files
and directories indicated with GENERATED should not be edited
manually.
├─ README.md : Description of this repository
├─ LICENSE : Repository license
├─ .gitignore : Files and directories to be ignored by git
├─ src
│ ├─ insectai_to_camtrapdp.Rmd : Empty source script to copy
│ └─ project_name : Folder per project
│ └─ insectai_to_camtrapdp.Rmd : Source script per project
└─ data
└─ project_name : Folder per project
├─ raw : Source data, input for mapping script
├─ interim : Intermediate Camtrap DP - GENERATED
└─ processed : Final Camtrap DP - GENERATED
This repository is open to contributions from the community. If you have an insectAI dataset that you would like to map to Camtrap DP, please follow the guidelines below.
- Ask access to @sannegovaert to collaborate on this repo.
- Create a branch for your project.
- Map your data
- Commit your changes and push to your branch. You don’t need to wait to commit until your finished.
- Create a pull request to merge your changes into the main branch.
IF you want to use r for your mapping, you can follow all the next steps.
- Create a folder in
srcwith the name of your project. - Copy the
insectai_to_camtrapdp.Rmdfile to your project folder. - Create a folder in
datawith the name of your project. - Copy your raw data to the
rawfolder. - Edit the
insectai_to_camtrapdp.Rmdfile to include your project-specific code. - Run the
insectai_to_camtrapdp.Rmdfile to generate the Camtrap DP files.
Otherwise, you can add your test data in your preferred way. Please follow the repo structure as much as possible.