In the destination section of your data you will want to add a
basevalue= parameter:
Code:
[Source]
Type = GeoTIFF
Layer = Elevation
SourceDir = "SourceData"
SourceFile = "DeathValleyTif.Tif"
[Destination]
DestDir = "Output"
DestBaseFileName = "DeathValley_Elevations"
DestFileType = BGL
LOD = Auto
[COLOR="Red"]basevalue=_______[/COLOR]
The underscored part is where you place a minimum value.
Long story short say you have a mountain peak at 10,000m and the top of the mountain higher than 7,000m is getting cut off then you'll need to add a base value. For the tiled area you would need to find the lowest elevation point (say for example it's 3,004 meters for the lowest elevation point and 10,000m for the highest elevation point) in your elevation source file (i.e. BIL, Geotiff etc).
In that case you'll want a base value slightly lower than the lowest elevation point in your source file:
Code:
[COLOR="Red"]basevalue=3000[/COLOR]
Basically the way resample works is it starts from a negative value depending on the fraction bits you use. e.g.
-32280m to +32280m <- not a real sample indicative only
-16140m to +16140m <- not a real sample indicative only
etc etc etc down to -100 to +100 etc <- not a real sample indicative only
So in the above resample example of the 10,000m mountain getting cut off here's what your basevalue= line does.
output bgl data range before base value = -7000 to +7000 (i.e. the starting point for all data in the generated BGL starts at -7000, which is silly as the lowest point on earth is close to MSL)
output bgl data range after base value = +3000 to +17000 (i.e. the starting point for all data in the generated BGL starts at 3000 giving you a much higher ceiling for you to work with with your mountaintop)
Without a basevalue= inserted, anything that goes over your top data range value ends up getting cut off and creating a massive hole in your data. When you set the base value for your data range, then the tops of your mountains won't get cut off...
I will dig around for my excel spreadsheet for my fraction bit calculator.