Wildbook Save

Wild Me's first product, Wildbook supports researchers by allowing collaboration across the globe and automation of photo ID matching

Project README

Wildbook

Wildbook is an open source software framework to support mark-recapture, molecular ecology, and social ecology studies. The biological and statistical communities already support a number of excellent tools, such as Program MARK,GenAlEx, and SOCPROG for use in analyzing wildlife data. Wildbook is a complementary software application that:

  • provides a scalable and collaborative platform for intelligent wildlife data storage and management, including advanced, consolidated searching

  • provides an easy-to-use software suite of functionality that can be extended to meet the needs of wildlife projects, especially where individual identification is used

  • provides an API to support the easy export of data to cross-disciplinary analysis applications (e.g., GenePop ) and other software (e.g., Google Earth)

  • provides a platform that supports the exposure of data in biodiversity databases (e.g., GBIF and OBIS)

  • provides a platform for animal biometrics that supports easy data access and facilitates matching application deployment for multiple species

Getting Started with Wildbook

Wildbook is a long-standing tool that support a wide variety of researchers and species. The Wild Me team is working on revamping the tool as a true open source project, so if you have ideas and are excited to help, reach out to us on the Wild Me Development Discord!

Pull Request Workflow

All contributions should be made from a fork off of the Wildbook repo. While there are a number of repositories for specific Wildbook communities, large scale development is driven from the main repository.

Fork Wildbook

To start, you will need to be signed in to your GitHub account, have admin access to your OS's terminal, and have Git installed.

  1. From your browser, in the top right corner of the Wildbook repo, click the Fork button. Confirm to be redirected to your own fork (check the url for your USERNAME in the namespace).
  2. In your terminal, enter the command git clone https://github.com/USERNAME/Wildbook
  3. Once the Wildbook directory becomes available in your working directory, move to it with the command cd Wildbook
  4. Add a reference to the original repo, denoting it as the upstream repo.
git remote add upstream https://github.com/WildMeOrg/Wildbook
git fetch upstream

Create Local Branch

You will want to work in a branch when doing any feature development you want to provide to the original project.

  1. Verify you are on the main branch. The branch you have checked out will be used as the base for your new branch, so you typically want to start from main. git checkout main
  2. Create your feature branch. It can be helpful to include the issue number (ISSUENUMBER) you are working to address. git branch ISSUENUMBER-FEATUREBRANCHNAME
  3. Change to your feature branch so your changes are grouped together. git checkout ISSUENUMBER-FEATUREBRANCHNAME
  4. Update your branch (this is not needed if you just created new branch, but is a good habit to get into). git pull upstream main

Set Up Development Environment with Docker

For easiest development, you will need to set up your development environment to work with Docker. See devops/development/README.md for detailed instructions.

Deploy drontend

To setup frontend, we need to deploy the React build to Wildbook, please follow the detailed instructions provided in the frontend/README.md file within the project directory.

Making Local Changes

Make the code changes necessary for the issue you're working on. The following git commands may prove useful.

  • git log: lastest commits of current branch
  • git status: current staged and unstaged modifications
  • git diff --staged: the differences between the staging area and the last commit
  • `git add : add files that have changes to staging in preparation for commit
  • git commit: commits the stagged files, opens a text editor for you to write a commit log

Submit PR

Up to this point, all changes have been done to your local copy of Wildbook. You need to push the new commits to a remote branch to start the PR process.

  1. Now's the time clean up your PR if you choose to squash commits, but this is not required. If you're looking for more information on these practices, see this pull request tutorial.
  2. Push to the remote version of your branch git push <remote> <local branch> git push origin ISSUENUMBER-FEATUREBRANCHNAME
  3. When prompted, provide your username and GitHub Personal Access Token. If you do not have a GitHub Personal Access Token, or do not have one with the correct permissions for your newly forked repository, you will need to create a Personal Access Token.
  4. Check the fork's page on GitHub to verify that you see a new branch with your added commits. You should see a line saying "This branch is X commits ahead" and a Pull request link.
  5. Click the Pull request link to open a form that says "Able to merge". (If it says there are merge conflicts, go the for help).
  6. Use an explicit title for the PR and provide details in the comment area. Details can include text, or images, and should provide details as to what was done and why design decisions were made.
  7. Click Create a pull request.

Respond to feedback

At this point, it's on us to get you feedback on your submission! Someone from the Wild Me team will review the project and provide any feedback that may be necessary. If changes are recommended, you'll need to checkout the branch you were working from, update the branch, and make these changes locally.

  1. git checkout ISSUENUMBER-FEATUREBRANCHNAME
  2. git pull upstream main
  3. Make required changes
  4. git add <filename> for all files impacted by changes
  5. Determine which method would be most appropriate for updating your PR
  • git commit --ammend if the changes are small stylistic changes
  • git commit if the changes involved significant rework and require additional details

Machine Learning in Wildbook

Wildbook leverages Wildbook IA (WBIA) as the machine learning engine, which pulls data from Wildbook servers to detect features in images and identify individual animals. WBIA brings massive-scale computer vision to wildlife research.

Need direct help?

Wild Me (wildme.org) engineering staff provide support for Wildbook. You can contact us at: [email protected]

We provide support during regular office hours on Mondays and Tuesdays.

Support resources

Contribution Guidelines

Variable naming conventions

  • Camel case
  • Don’t use single-letter variable names (no matter how temporary you think the code is)
  • Code should be clear enough to speak for itself without comments, but use your judgement on if a comment is necessary
  • Code for clarity rather than for efficiency (one-liners are cool, but not at the expense of future obfuscation)

Overall outline of code framework<

Spell out how .jsp files relate to servlet files relate to java files, etc. Someone new to the codebase should be able to orient themselves based on your notes.

Java/jsp style

Initialize variables and type signatures at the abstract/interface level when possible.

Instead of:

ArrayList encounters = new ArrayList<Encounter>();
...
public int getMax(ArrayList<int> numbers) {

Try:

List encounters = new ArrayList<Encounter>();
...
public int getMax(Collection<int> numbers) {

It’s easier to read and more intuitive for a function to take a Map or List than a HashMap or ArrayList.

The List interface defines how we want that variable to behave, and whether it’s an ArrayList or LinkedList is incidental. Keeping the variable and method signatures abstract means we can change the implementation later (eg swapping ArrayList->LinkedList) without changing the rest of our code. https://stackoverflow.com/questions/2279030/type-list-vs-type-arraylist-in-java

Related: when writing utility methods, making the input type as abstract as possible makes the method versatile. See Util.asSortedList in Wildbook: since the input is an abstract Collection, it can accept a List, Set, PriorityQueue, or Vector as input, and return a sorted List.

Runtime (not style): Use Sets (not Lists or arrays) if you’re only keeping track of collection membership / item uniqueness.

Instead of:

    	List<MarkedIndividual> uniqueIndividuals = new ArrayList<MarkedIndividual>();
    	for(Encounter currentEncounter: encounters){
		MarkedIndividual currentInd = enc.getIndividual();
		if !(uniqueIndividuals.contains(currentInd) {
			uniqueIndividuals.add(currentInd);
			doStuff();

Try:

Set<MarkedIndividual> uniqueIndividuals = new HashSet<MarkedIndividual>();	
    	for(Encounter currentEncounter: encounters){
		MarkedIndividual currentInd = enc.getIndividual();
		if !(uniqueIndividuals.contains(currentInd) {
			uniqueIndividuals.add(currentInd);
			doStuff();

The reason is a little deep in the data types. Sets are defined as unordered collections of unique elements; and Lists/arrays are ordered collections with no bearing on element-uniqueness. If the order of a collection doesn’t matter and you’re just checking membership, you’ll have faster runtime using a Set.

Sets implement contains, add, and remove methods much faster than lists [contains is O(log(n)) vs O(n) runtime]. A list has to iterate through the entire list every time it runs contains (it checks each item once at a time) while a set (especially a HashSet) keeps track of an item index for quick lookup.

Use for-each loops aka “enhanced for loops” to make loops more concise and readable.

Instead of:

for (int i=0; i<encounters.length(); i++) {
	Encounter enc = encounters.get(i)
	doStuff();

try:

for (Encounter enc: encounters) {
	doStuff();

Note that in both cases you might want to check if encounters == null if relevant, but you rarely need to check if encounters.length()>0 because the for-loops take care of that.

Also note that if you want access to the i variable for logging or otherwise, the classic for-loop is best.

Util.stringExists is shorthand for a common string check:

Instead of:

	if (str!=Null && !str.equals("")) {
		doStuff();

Try:

	if (Util.stringExists(str)) {
		doStuff();

This method also checks for the strings “none” and “unknown” which have given us trouble in displays in the past.

History

Wildbook started as a collaborative software platform for globally-coordinated whale shark (Rhincodon typus ) research as deployed in the Wildbook for Whale Sharks (now part of http://www.sharkbook.ai). After many requests to use our software outside of whale shark research, it is now an open source, community-maintained standard for mark-recapture studies.

Wildbook is a registered trademark of Conservation X Labs, a 501(c)(3) non-profit organization, and is supported by the Wild Me team.

Open Source Agenda is not affiliated with "Wildbook" Project. README Source: WildMeOrg/Wildbook
Stars
94
Open Issues
91
Last Commit
4 days ago
Repository
License

Open Source Agenda Badge

Open Source Agenda Rating