MERMAID is an open-source application that collects and manages real-time coral reef health data, developed in partnership between the WCS, WWF, and Sparkgeo.
With MERMAID, scientists input their observations straight into the platform using the Web app. MERMAID does the job of tagging and sorting data, avoiding duplicates, standardizing scientific names and summarizing critical indicators.
We save you time so you can save coral reefs!
MERMAID joins you in the field with its off-line capabilities, but it stands apart from Excel or personal database apps like Access because it requires virtually zero post-entry data clean up!
Users can select reef fish and coral names from a standard list of taxa with only a few keystrokes; MERMAID will autocomplete the rest. Selecting names means saving time typing in species names or cleaning up typos of misspelled species names.
MERMAID also allows you to calculate reef fish biomass while you type, or see your total coral cover as soon as you have finished entering a transect. When you have finished collecting data, it can be exported to standard field reports (Excel) and used to create graphs or other reports. You can also analyze your data by accessing it directly from MERMAID using the mermaidr package.
The MERMAID workflow:
Sign up and set up a project
Sign up for an account
Set up a project and add users
Prepare for off-line use
Collect data
Select a transect type
Enter site information
Enter management regime
Include benthic attributes and fish species
Complete and save the transect
Review and submit
Validate data
Address errors and warnings
Submit data
Export and analyze data
Export to .XLSX for further analysis
Analyze directly using mermaidr
Questions? You can reach out to us when online via the Contact link at the bottom of the app. An off-line (pdf) version of this documentation is available through the "Download" button at the left menu bar.
Enim fermentum dolor molestie egestas ultricies. Curabitur consectetuer risus justo fames posuere bibendum praesent elementum diam facilisis montes.
- Nascetur luctus adipiscing sollicitudin.
- Primis mi ornare scelerisque ultrices vestibulum.
- Adipiscing augue taciti fames hac eleifend ut.
Platea blandit eleifend ut imperdiet netus quam quisque nostra et. Congue faucibus nascetur facilisi malesuada nibh gravida semper massa a torquent.
- Natoque odio letius ligula massa ex eu aliquet per.
- Mi nostra fames torquent ad etiam sociosqu.
- Integer tellus hendrerit.
import $ from "jquery";
$(() => {
var prevScrollpos = window.pageYOffset;
window.onscroll = function () {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
$(".kmp-header").addClass("is-show");
} else {
$(".kmp-header").removeClass("is-show");
}
if ($(this).scrollTop() == 0) {
$(".kmp-header").addClass("is-show");
}
prevScrollpos = currentScrollPos;
};
});
# Python program to check if the input number is odd or even.
# A number is even if division by 2 gives a remainder of 0.
# If the remainder is 1, it is an odd number.
num = int(input("Enter a number: "))
if (num % 2) == 0:
print("{0} is Even".format(num))
else:
print("{0} is Odd".format(num))
benthic_data <- projects_public_benthic %>%
mermaid_get_project_data("benthicpit", "sampleevents", token = NULL)
head(benthic_data)
#> # A tibble: 6 × 61
#> project tags country site latitude longitude reef_type reef_zone
#>
#> 1 2022 DamaWISH endl… WCS … Fiji DamC1 -16.8 179. patch back reef
#> 2 2022 DamaWISH endl… WCS … Fiji DamC3 -16.8 179. patch back reef
#> 3 2022 DamaWISH endl… WCS … Fiji DamC4 -16.9 179. patch back reef
#> 4 2022 DamaWISH endl… WCS … Fiji DamC5 -16.9 179. patch fore reef
#> 5 2022 DamaWISH endl… WCS … Fiji DamC8 -16.8 179. patch fore reef
#> 6 2022 DamaWISH endl… WCS … Fiji DamE1 -16.9 179. patch back reef
#> # ℹ 53 more variables: reef_exposure , tide , current ,
#> # visibility , management , management_secondary ,
#> # management_est_year , management_size , management_parties ,
#> # management_compliance , management_rules , sample_date ,
#> # depth_avg , depth_sd ,
#> # percent_cover_benthic_category_avg_sand ,
#> # percent_cover_benthic_category_avg_rubble , …