rvc_percent_cover
This project tranforms Reef Visual Census data for the Florida Keys for use in assessment of bottom cover maps.
.csv files produced from this code can be uploaded into Google Earth Engine (GEE) as a table asset. Tables can then be used as a FeatureCollection, filtered, and displayed:
var table = ee.FeatureCollection("projects/imars-ee/assets/RVC/FLA_KEYS")
.filterDate("2020-01-01", "2024-01-01")
.filter(ee.Filter.eq("HABITAT_CD", "CONT_LR"))
;
Map.addLayer(fc)
Map.centerObject(fc)Links for direct access to tables already uploaded into GEE:
Source code for this site and analysis can be found here.