| example_lake | R Documentation |
A simple circular lake polygon for demonstration and testing purposes. This synthetic lake has known geometry (1 km radius) which makes it useful for validating fetch calculations.
example_lake
An sf object with 1 row and 3 variables:
Identifier (synthetic)
Lake name
Surface area in square kilometers (~3.14 km²)
POLYGON geometry in UTM Zone 18N (EPSG:32618)
The lake is centered at UTM coordinates (500000, 4800000) with a radius of 1000 meters. For a site at the center, fetch should equal 1000 m in all directions.
Synthetic data for demonstration and validation
# Load the dataset
data(example_lake)
# View structure
print(example_lake)
# Plot the lake
library(ggplot2)
ggplot(example_lake) + geom_sf()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.