You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the current default Ortho4XP configuration, Iceland has zero
elevation.
This removes the tiles from the NA tile list.
Command run:
```bash
for y in {63..66}; do
for x in {-25..-14}; do
tileRegex="$(printf "\\%+03d\\%+04d" "$y" "$x")"
sed -i "/^$tileRegex/d" *_tile_list
done
done
```
Fixes: kubilus1#11
Relates: kubilus1#12
The topic came up in https://forums.x-plane.org/index.php?/forums/topic/259020-autoortho-streaming-ortho-imagery-for-x-plane-11/&do=findComment&comment=2575833
Iceland are the tiles in the rectangle +63-25 - +66-14. (part of na_tile_list)
The mesh is missing so the AutoOrtho tiles are all flat.
Options I see
1. Exclude Iceland from Autoortho for now.
2. Adapt Ortho4XP
Make https://github.com/oscarpilote/Ortho4XP/blob/master/src/O4_DEM_Utils.py#L331-L355 use Viewfinderpanormas 3" data (not tested, probably 3" is not that nice in the mountaineous terrain).
3. Use better elevation data
Split off into other issue: #12
The text was updated successfully, but these errors were encountered: