2017-05-09 17:11:31 +00:00
|
|
|
# Overlay Template Component 9.0 - Bitmap
|
|
|
|
|
|
|
|
# TODO: Is there a Bit-map indicator???
|
2016-08-23 14:29:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Bit-map indicator
|
|
|
|
codetable[1] bitMapIndicator ('6.0.table',masterDir,localDir) = 255 : dump;
|
|
|
|
|
|
|
|
meta geography.bitmapPresent g2bitmap_present(bitMapIndicator): dump;
|
2017-07-31 14:38:33 +00:00
|
|
|
transient missingValuesPresent = bitmapPresent : hidden;
|
2016-08-23 14:29:31 +00:00
|
|
|
|
|
|
|
# Bitmap...
|
|
|
|
if(bitMapIndicator == 0)
|
|
|
|
{
|
|
|
|
if(dataRepresentationTemplateNumber == 1)
|
|
|
|
{
|
|
|
|
if(matrixBitmapsPresent == 1)
|
|
|
|
{
|
|
|
|
meta primaryBitmap g2bitmap( tableReference,
|
|
|
|
missingValue,
|
2017-05-09 17:11:31 +00:00
|
|
|
offsetBSection9,
|
|
|
|
section9Length,
|
2016-08-23 14:29:31 +00:00
|
|
|
numberOfDataMatrices) : read_only;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta geography.bitmap g2bitmap( tableReference,
|
|
|
|
missingValue,
|
2017-05-09 17:11:31 +00:00
|
|
|
offsetBSection9,
|
|
|
|
section9Length,
|
2016-08-23 14:29:31 +00:00
|
|
|
numberOfDataPoints) : read_only;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta geography.bitmap g2bitmap( tableReference,
|
|
|
|
missingValue,
|
2017-05-09 17:11:31 +00:00
|
|
|
offsetBSection9,
|
|
|
|
section9Length,
|
2016-08-23 14:29:31 +00:00
|
|
|
numberOfDataPoints) : read_only;
|
|
|
|
}
|
|
|
|
}
|