Skip to content

Commit a41b5fc

Browse files
committed
Add curvature-adjusted Fresnel overlays
1 parent 96380a5 commit a41b5fc

4 files changed

Lines changed: 700 additions & 118 deletions

File tree

electron/raster/gdal-loader.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,17 +238,17 @@ function warningsForProject(
238238

239239
if (horizontalUnit.metersPerUnit === null) {
240240
warnings.push(
241-
"Fresnel zones are hidden because the DSM horizontal unit cannot be converted to metres.",
241+
"Fresnel zones and curvature-adjusted overlays are hidden because the DSM horizontal unit cannot be converted to metres.",
242242
);
243243
}
244244

245245
if (isUnknownElevationUnit(elevationUnit)) {
246246
warnings.push(
247-
"The DSM elevation unit is unknown. Fresnel zones assume elevation values are metres.",
247+
"The DSM elevation unit is unknown. Fresnel zones and curvature-adjusted overlays assume elevation values are metres.",
248248
);
249249
} else if (metersPerElevationUnit(elevationUnit) === null) {
250250
warnings.push(
251-
"Fresnel zones are hidden because the DSM elevation unit cannot be converted to metres.",
251+
"Fresnel zones and curvature-adjusted overlays are hidden because the DSM elevation unit cannot be converted to metres.",
252252
);
253253
}
254254

0 commit comments

Comments
 (0)